summaryrefslogtreecommitdiff
path: root/src/ui/keys.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2022-02-11 11:42:04 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2022-02-11 11:42:04 +0200
commite9ec68501308fc2cd1bc65600998b1028b416ced (patch)
tree0eea9524317123a27f28d52dee366514168eec28 /src/ui/keys.c
parent2c3741aabe94295439539d61e9095d7bc8705fc7 (diff)
Added a binding for "Paste Preceding Line"
Diffstat (limited to 'src/ui/keys.c')
-rw-r--r--src/ui/keys.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/keys.c b/src/ui/keys.c
index d4d9320e..33f39633 100644
--- a/src/ui/keys.c
+++ b/src/ui/keys.c
@@ -241,6 +241,7 @@ static const struct { int id; iMenuItem bind; int flags; } defaultBindings_[] =
241 { 110,{ "${menu.save.downloads}", SDLK_s, KMOD_PRIMARY, "document.save" }, 0 }, 241 { 110,{ "${menu.save.downloads}", SDLK_s, KMOD_PRIMARY, "document.save" }, 0 },
242 { 120,{ "${keys.upload}", SDLK_u, KMOD_PRIMARY, "document.upload" }, 0 }, 242 { 120,{ "${keys.upload}", SDLK_u, KMOD_PRIMARY, "document.upload" }, 0 },
243 { 121,{ "${keys.upload.edit}", SDLK_e, KMOD_PRIMARY, "document.upload copy:1" }, 0 }, 243 { 121,{ "${keys.upload.edit}", SDLK_e, KMOD_PRIMARY, "document.upload copy:1" }, 0 },
244 { 130,{ "${keys.input.precedingline}", SDLK_v, KMOD_PRIMARY | KMOD_SHIFT, "input.precedingline" }, 0 },
244 /* The following cannot currently be changed (built-in duplicates). */ 245 /* The following cannot currently be changed (built-in duplicates). */
245#if defined (iPlatformApple) 246#if defined (iPlatformApple)
246 { 1002, { NULL, SDLK_LEFTBRACKET, KMOD_PRIMARY, "navigate.back" }, 0 }, 247 { 1002, { NULL, SDLK_LEFTBRACKET, KMOD_PRIMARY, "navigate.back" }, 0 },