mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 01:05:01 +02:00
Add "space" key to bind in vi normal mode (#6590)
* Add "space" key to bind in vi normal mode Implements #6586 No special logic to prevent you from binding it in other modes! Needs a separate change to reedline to make it available in the default listing of `keybindings list`. * Update reedline to report the available `space` Pulls in nushell/reedline#486
This commit is contained in:
committed by
GitHub
parent
71844755e5
commit
9aed95408d
@ -666,6 +666,7 @@ fn add_parsed_keybinding(
|
||||
|
||||
KeyCode::Char(char)
|
||||
}
|
||||
"space" => KeyCode::Char(' '),
|
||||
"down" => KeyCode::Down,
|
||||
"up" => KeyCode::Up,
|
||||
"left" => KeyCode::Left,
|
||||
|
Reference in New Issue
Block a user