mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-20 06:13:47 +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
58 lines
1.7 KiB
Rust
58 lines
1.7 KiB
Rust
use crate::input::{input_mappings, Inputter, DEFAULT_BIND_MODE};
|
|
use crate::input_common::{CharEvent, ReadlineCmd};
|
|
use crate::key::Key;
|
|
use crate::parser::Parser;
|
|
use crate::tests::prelude::*;
|
|
use crate::wchar::prelude::*;
|
|
use std::sync::Arc;
|
|
|
|
#[test]
|
|
#[serial]
|
|
fn test_input() {
|
|
let _cleanup = test_init();
|
|
use crate::env::EnvStack;
|
|
let parser = Parser::new(Arc::pin(EnvStack::new()), false);
|
|
let mut input = Inputter::new(parser, libc::STDIN_FILENO);
|
|
// Ensure sequences are order independent. Here we add two bindings where the first is a prefix
|
|
// of the second, and then emit the second key list. The second binding should be invoked, not
|
|
// the first!
|
|
let prefix_binding: Vec<Key> = "qqqqqqqa".chars().map(Key::from_raw).collect();
|
|
let mut desired_binding = prefix_binding.clone();
|
|
desired_binding.push(Key::from_raw('a'));
|
|
|
|
let default_mode = || DEFAULT_BIND_MODE.to_owned();
|
|
|
|
{
|
|
let mut input_mapping = input_mappings();
|
|
input_mapping.add1(
|
|
prefix_binding,
|
|
None,
|
|
WString::from_str("up-line"),
|
|
default_mode(),
|
|
None,
|
|
true,
|
|
);
|
|
input_mapping.add1(
|
|
desired_binding.clone(),
|
|
None,
|
|
WString::from_str("down-line"),
|
|
default_mode(),
|
|
None,
|
|
true,
|
|
);
|
|
}
|
|
|
|
// Push the desired binding to the queue.
|
|
for c in desired_binding {
|
|
input.queue_char(CharEvent::from_key(c));
|
|
}
|
|
|
|
// Now test.
|
|
let evt = input.read_char();
|
|
if !evt.is_readline() {
|
|
panic!("Event is not a readline");
|
|
} else if evt.get_readline() != ReadlineCmd::DownLine {
|
|
panic!("Expected to read char down_line");
|
|
}
|
|
}
|