diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2022-02-15 12:48:46 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2022-02-15 12:48:46 +0200 |
commit | b929e6e7d1c674573e278afe78a1cf980891a0c1 (patch) | |
tree | 2ac746f55311ca328df9c677e92b1f8a9528190c /src | |
parent | 876266d19f42f705178e4b0ad67b047399497eeb (diff) |
Added keybindings for Unread/All mode switch
IssueID #456
Diffstat (limited to 'src')
-rw-r--r-- | src/ui/keys.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ui/keys.c b/src/ui/keys.c index 33f39633..c53f885c 100644 --- a/src/ui/keys.c +++ b/src/ui/keys.c | |||
@@ -242,6 +242,8 @@ static const struct { int id; iMenuItem bind; int flags; } defaultBindings_[] = | |||
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 | { 130,{ "${keys.input.precedingline}", SDLK_v, KMOD_PRIMARY | KMOD_SHIFT, "input.precedingline" }, 0 }, |
245 | { 150,{ "${keys.feeds.showall}", SDLK_u, KMOD_SHIFT, "feeds.mode arg:0" }, 0 }, | ||
246 | { 151,{ "${keys.feeds.showunread}", SDLK_u, 0, "feeds.mode arg:1" }, 0 }, | ||
245 | /* The following cannot currently be changed (built-in duplicates). */ | 247 | /* The following cannot currently be changed (built-in duplicates). */ |
246 | #if defined (iPlatformApple) | 248 | #if defined (iPlatformApple) |
247 | { 1002, { NULL, SDLK_LEFTBRACKET, KMOD_PRIMARY, "navigate.back" }, 0 }, | 249 | { 1002, { NULL, SDLK_LEFTBRACKET, KMOD_PRIMARY, "navigate.back" }, 0 }, |