gtk: add ctrl-u, remove ctrl-d and alt-d (never used them)

This commit is contained in:
Vincent Bernat 2021-12-27 23:58:58 +01:00
parent 23e16f4bbd
commit 3376c9b762

View file

@ -15,9 +15,9 @@
bind "<ctrl>y" { "paste-clipboard" () };
bind "<ctrl>d" { "delete-from-cursor" (chars, 1) };
bind "<alt>d" { "delete-from-cursor" (word-ends, 1) };
bind "<ctrl>k" { "delete-from-cursor" (paragraph-ends, 1) };
bind "<ctrl>u" { "move-cursor" (paragraph-ends, -1, 0)
"delete-from-cursor" (paragraph-ends, 1) };
bind "<alt>backslash" { "delete-from-cursor" (whitespace, 1) };
bind "<alt>BackSpace" { "delete-from-cursor" (word-ends, -1) };