add dispatcher function to edit current entry in prefs
This commit is contained in:
parent
57f734c895
commit
a80b05ea33
2 changed files with 13 additions and 0 deletions
|
@ -20,6 +20,7 @@
|
|||
|
||||
<table>
|
||||
<tr><td class='n'>c s</td><td><?php echo __("Subscribe to feed") ?></td></tr>
|
||||
<tr><td class='n'>c T</td><td><?php echo __("Top 25 feeds") ?></td></tr>
|
||||
<tr><td class='n'>c c</td><td><?php echo __("Edit feed categories") ?></td></tr>
|
||||
<tr><td class='n'>c f</td><td><?php echo __("Create filter") ?></td></tr>
|
||||
<tr><td class='n'>c l</td><td><?php echo __("Create label") ?></td></tr>
|
||||
|
|
12
prefs.js
12
prefs.js
|
@ -1773,6 +1773,14 @@ function pref_hotkey_handler(e) {
|
|||
return editFeedCats();
|
||||
}
|
||||
|
||||
if (keycode == 84 && shift_key) { // T
|
||||
return browseFeeds();
|
||||
}
|
||||
|
||||
if (keycode == 69) { // e
|
||||
return editCurrentEntryDispatcher();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Prefix g */
|
||||
|
@ -2102,6 +2110,10 @@ function rescore_all_feeds() {
|
|||
xmlhttp.onreadystatechange=notify_callback;
|
||||
xmlhttp.send(null);
|
||||
}
|
||||
}
|
||||
|
||||
function editCurrentEntryDispatcher() {
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue