mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 22:17:52 +08:00
8bf8b10f68
See the changelog additions for user-visible changes. Since we enable/disable terminal protocols whenever we pass terminal ownership, tests can no longer run in parallel on the same terminal. For the same reason, readline shortcuts in the gdb REPL will not work anymore. As a remedy, use gdbserver, or lobby for CSI u support in libreadline. Add sleep to some tests, otherwise they fall (both in CI and locally). There are two weird failures on FreeBSD remaining, disable them for now https://github.com/fish-shell/fish-shell/pull/10359/checks?check_run_id=23330096362 Design and implementation borrows heavily from Kakoune. In future, we should try to implement more of the kitty progressive enhancements. Closes #10359
109 lines
2.3 KiB
Rust
109 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 key;
|
|
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;
|