mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-24 10:23:43 +08:00
ecdc9ce1dd
When fish crashes due to a panic, the terminal window is closed. Some terminals keep the window around when the crash is due to a fatal signal, but today we don't exit via fatal signal on panic. There is the option to set «panic = "abort"» in Cargo.toml, which would give us coredumps but also worse stacktraces on stderr. More importantly it means that we don't unwind, so destructors are skipped I don't think we want that because we should use destructors to restore the terminal state. On crash in interactive fish, read one more line before exiting, so the stack trace is always visible. In future, we should move this "read one line before exiting" logic to where we call "panic!", so I can attach a debugger and see the stacktrace.
108 lines
2.3 KiB
Rust
108 lines
2.3 KiB
Rust
#![cfg_attr(feature = "benchmark", feature(test))]
|
|
#![allow(non_camel_case_types)]
|
|
#![allow(non_upper_case_globals)]
|
|
#![allow(unknown_lints)]
|
|
#![allow(unstable_name_collisions)]
|
|
#![allow(clippy::assigning_clones)]
|
|
#![allow(clippy::bool_assert_comparison)]
|
|
#![allow(clippy::box_default)]
|
|
#![allow(clippy::collapsible_if)]
|
|
#![allow(clippy::comparison_chain)]
|
|
#![allow(clippy::derivable_impls)]
|
|
#![allow(clippy::field_reassign_with_default)]
|
|
#![allow(clippy::get_first)]
|
|
#![allow(clippy::if_same_then_else)]
|
|
#![allow(clippy::incompatible_msrv)]
|
|
#![allow(clippy::len_without_is_empty)]
|
|
#![allow(clippy::manual_is_ascii_check)]
|
|
#![allow(clippy::mut_from_ref)]
|
|
#![allow(clippy::needless_return)]
|
|
#![allow(clippy::new_without_default)]
|
|
#![allow(clippy::option_map_unit_fn)]
|
|
#![allow(clippy::ptr_arg)]
|
|
#![allow(clippy::redundant_slicing)]
|
|
#![allow(clippy::too_many_arguments)]
|
|
#![allow(clippy::uninlined_format_args)]
|
|
|
|
pub const BUILD_VERSION: &str = env!("FISH_BUILD_VERSION");
|
|
|
|
#[macro_use]
|
|
pub mod common;
|
|
|
|
pub mod abbrs;
|
|
pub mod ast;
|
|
pub mod autoload;
|
|
pub mod builtins;
|
|
pub mod color;
|
|
pub mod complete;
|
|
pub mod curses;
|
|
pub mod editable_line;
|
|
pub mod env;
|
|
pub mod env_dispatch;
|
|
pub mod env_universal_common;
|
|
pub mod event;
|
|
pub mod exec;
|
|
pub mod expand;
|
|
pub mod fallback;
|
|
pub mod fd_monitor;
|
|
pub mod fd_readable_set;
|
|
pub mod fds;
|
|
pub mod flog;
|
|
pub mod fork_exec;
|
|
pub mod function;
|
|
pub mod future;
|
|
pub mod future_feature_flags;
|
|
pub mod global_safety;
|
|
pub mod highlight;
|
|
pub mod history;
|
|
pub mod input;
|
|
pub mod input_common;
|
|
pub mod io;
|
|
pub mod job_group;
|
|
pub mod kill;
|
|
#[allow(non_snake_case)]
|
|
pub mod libc;
|
|
pub mod locale;
|
|
pub mod nix;
|
|
pub mod null_terminated_array;
|
|
pub mod operation_context;
|
|
pub mod output;
|
|
pub mod pager;
|
|
pub mod panic;
|
|
pub mod parse_constants;
|
|
pub mod parse_execution;
|
|
pub mod parse_tree;
|
|
pub mod parse_util;
|
|
pub mod parser;
|
|
pub mod parser_keywords;
|
|
pub mod path;
|
|
pub mod pointer;
|
|
pub mod print_help;
|
|
pub mod proc;
|
|
pub mod re;
|
|
pub mod reader;
|
|
pub mod reader_history_search;
|
|
pub mod redirection;
|
|
pub mod screen;
|
|
pub mod signal;
|
|
pub mod termsize;
|
|
pub mod threads;
|
|
pub mod timer;
|
|
pub mod tinyexpr;
|
|
pub mod tokenizer;
|
|
pub mod topic_monitor;
|
|
pub mod trace;
|
|
pub mod universal_notifier;
|
|
pub mod util;
|
|
pub mod wait_handle;
|
|
pub mod wchar;
|
|
pub mod wchar_ext;
|
|
pub mod wcstringutil;
|
|
pub mod wgetopt;
|
|
pub mod widecharwidth;
|
|
pub mod wildcard;
|
|
pub mod wutil;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|