aboutsummaryrefslogtreecommitdiffstats
path: root/fuzzyMode.js
diff options
context:
space:
mode:
Diffstat (limited to 'fuzzyMode.js')
-rw-r--r--fuzzyMode.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/fuzzyMode.js b/fuzzyMode.js
index 8c43cad0..a470bea9 100644
--- a/fuzzyMode.js
+++ b/fuzzyMode.js
@@ -7,7 +7,8 @@ var fuzzyMode = (function() {
new completion.SmartCompleter({
'wiki ': [ 'Wikipedia (en)', 'http://en.wikipedia.org/wiki/%s' ],
'cc ' : [ 'dict.cc', 'http://www.dict.cc/?s=%s' ],
- ';' : [ 'goto', '%s' ]
+ ';' : [ 'goto', '%s' ],
+ '?' : [ 'search', function(query) { return utils.createSearchUrl(query) } ],
}),
new completion.FuzzyHistoryCompleter(1000),
new completion.FuzzyBookmarkCompleter(),