We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b3a278 commit e339354Copy full SHA for e339354
src/assets/index.html
@@ -427,6 +427,7 @@ <h1><b>{{ itemSelectedDetails.title || 'untitled' }}</b></h1>
427
<tr><td colspan=2> </td></tr>
428
<tr><td><kbd>j</kbd> <kbd>k</kbd></td> <td>next / prev article</td></tr>
429
<tr><td><kbd>l</kbd> <kbd>h</kbd></td> <td>next / prev feed</td></tr>
430
+ <tr><td><kbd>q</kbd></td> <td>close article</td></tr>
431
432
433
<tr><td><kbd>R</kbd></td> <td>mark all read</td></tr>
src/assets/javascripts/key.js
@@ -60,6 +60,9 @@ var shortcutFunctions = {
60
scrollBackward: function() {
61
helperFunctions.scrollContent(-1)
62
},
63
+ closeItem: function () {
64
+ vm.itemSelected = null
65
+ },
66
showAll() {
67
vm.filterSelected = ''
68
@@ -85,6 +88,7 @@ var keybindings = {
85
88
"h": shortcutFunctions.previousFeed,
86
89
"f": shortcutFunctions.scrollForward,
87
90
"b": shortcutFunctions.scrollBackward,
91
+ "q": shortcutFunctions.closeItem,
92
"1": shortcutFunctions.showUnread,
93
"2": shortcutFunctions.showStarred,
94
"3": shortcutFunctions.showAll,
@@ -103,6 +107,7 @@ var codebindings = {
103
107
"KeyH": shortcutFunctions.previousFeed,
104
108
"KeyF": shortcutFunctions.scrollForward,
105
109
"KeyB": shortcutFunctions.scrollBackward,
110
+ "KeyQ": shortcutFunctions.closeItem,
106
111
"Digit1": shortcutFunctions.showUnread,
112
"Digit2": shortcutFunctions.showStarred,
113
"Digit3": shortcutFunctions.showAll,
0 commit comments