mirror of
https://github.com/nushell/nushell
synced 2025-01-13 05:38:57 +00:00
Deactivate fuzzy search on Windows for now
This commit is contained in:
parent
639a316677
commit
d7e7f48aaa
1 changed files with 1 additions and 0 deletions
|
@ -336,6 +336,7 @@ pub async fn cli() -> Result<(), Box<dyn Error>> {
|
|||
|
||||
// Register Ctrl-r for history fuzzy search
|
||||
// rustyline doesn't support custom commands, so we override Ctrl-D (EOF)
|
||||
#[cfg(not(windows))] // https://github.com/nushell/nushell/issues/689
|
||||
rl.bind_sequence(rustyline::KeyPress::Ctrl('R'), rustyline::Cmd::EndOfFile);
|
||||
// Redefine Ctrl-D to same command as Ctrl-C
|
||||
rl.bind_sequence(rustyline::KeyPress::Ctrl('D'), rustyline::Cmd::Interrupt);
|
||||
|
|
Loading…
Reference in a new issue