home/nushell: Add key binding for Ctrl+i

This commit is contained in:
Mikael 2024-09-27 21:38:46 +02:00
parent ef9c690c69
commit 9b4d8ee4b6
Signed by: mikael
SSH key fingerprint: SHA256:21QyD2Meiot7jOUVitIR5YkGB/XuXdCvLW1hE6dsri0

View file

@ -341,6 +341,22 @@ in {
$env.config = {
show_banner: false
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 }
]
}
}
]
};
'';
};