home/nushell: Add key binding for Ctrl+i

This commit is contained in:
Mikael Voss 2024-09-27 21:38:46 +02:00
parent ef9c690c69
commit 9b4d8ee4b6
No known key found for this signature in database

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 }
]
}
}
]
};
'';
};