feat: add <Delete> to [input] keymap (#665)

This commit is contained in:
grig-iv 2024-02-12 10:00:12 +03:00 committed by GitHub
parent 4222c0ed45
commit 4b1783765f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -231,6 +231,7 @@ keymap = [
# Delete
{ on = [ "<Backspace>" ], exec = "backspace", desc = "Delete the character before the cursor" },
{ on = [ "<Delete>" ], exec = "backspace --under", desc = "Delete the character under the cursor" },
{ on = [ "<C-h>" ], exec = "backspace", desc = "Delete the character before the cursor" },
{ on = [ "<C-d>" ], exec = "backspace --under", desc = "Delete the character under the cursor" },