Add shift-delete/shift-backspace to keymaps

This commit is contained in:
MinusGix 2022-06-22 22:08:39 -05:00
parent cdfcb9848e
commit 0421a39442
1 changed files with 10 additions and 0 deletions

View File

@ -21,11 +21,21 @@ key = "Delete"
command = "delete_forward"
mode = "i"
[[keymaps]]
key = "shift+Delete"
command = "delete_forward"
mode = "i"
[[keymaps]]
key = "backspace"
command = "delete_backward"
mode = "i"
[[keymaps]]
key = "shift+backspace"
command = "delete_backward"
mode = "i"
[[keymaps]]
key = "Home"
command = "line_start_non_blank"