home/nushell: Add key binding for Ctrl+i
This commit is contained in:
parent
ef9c690c69
commit
9b4d8ee4b6
1 changed files with 16 additions and 0 deletions
|
@ -341,6 +341,22 @@ in {
|
||||||
$env.config = {
|
$env.config = {
|
||||||
show_banner: false
|
show_banner: false
|
||||||
use_kitty_protocol: true
|
use_kitty_protocol: true
|
||||||
|
|
||||||
|
keybindings: [
|
||||||
|
{
|
||||||
|
name: completion_menu
|
||||||
|
modifier: control
|
||||||
|
keycode: char_i
|
||||||
|
mode: [ emacs vi_normal vi_insert ]
|
||||||
|
event: {
|
||||||
|
until: [
|
||||||
|
{ send: menu name: completion_menu }
|
||||||
|
{ send: menunext }
|
||||||
|
{ edit: complete }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
};
|
};
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue