summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-06-08 09:06:47 +0100
committerAndrew Dolgov <[email protected]>2006-06-08 09:06:47 +0100
commit0a38301319ea393cf438d182baf1cbca533ba19c (patch)
tree52ef7a9fabe59ea91ca2f4564196b3753603940e /functions.js
parent38f77f326dc4bb8d47d3a3aedacc79828adc8d83 (diff)
add S hotkey - search dialog
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index 9757eca80..1331eb8d4 100644
--- a/functions.js
+++ b/functions.js
@@ -178,7 +178,11 @@ function hotkey_handler(e) {
if (keycode == 82) { // r
return m_ctx.scheduleFeedUpdate(true);
}
-
+
+ if (keycode == 83) { // r
+ return m_ctx.displayDlg("search", getActiveFeedId());
+ }
+
if (keycode == 85) { // u
if (getActiveFeedId()) {
return f_ctx.viewfeed(getActiveFeedId(), 0, "ForceUpdate");