Add keybindings for Shift-Del, Shift-Ins, Ctrl-Ins (#1040)

This commit is contained in:
Laurențiu Nicola 2022-09-30 21:56:53 +03:00 committed by GitHub
parent 55c67d4d22
commit 6eeb789201
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 5 deletions

View File

@ -25,11 +25,6 @@ key = "Delete"
command = "delete_forward"
mode = "i"
[[keymaps]]
key = "shift+Delete"
command = "delete_forward"
mode = "i"
[[keymaps]]
key = "backspace"
command = "delete_backward"

View File

@ -56,16 +56,31 @@ key = "ctrl+x"
command = "clipboard_cut"
mode = "i"
[[keymaps]]
key = "shift+Delete"
command = "clipboard_cut"
mode = "i"
[[keymaps]]
key = "ctrl+c"
command = "clipboard_copy"
mode = "i"
[[keymaps]]
key = "ctrl+insert"
command = "clipboard_copy"
mode = "i"
[[keymaps]]
key = "ctrl+v"
command = "clipboard_paste"
mode = "i"
[[keymaps]]
key = "shift+insert"
command = "clipboard_paste"
mode = "i"
[[keymaps]]
key = "ctrl+f"
command = "search"