aboutsummaryrefslogtreecommitdiffstats
path: root/fuzzyMode.js
diff options
context:
space:
mode:
Diffstat (limited to 'fuzzyMode.js')
-rw-r--r--fuzzyMode.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/fuzzyMode.js b/fuzzyMode.js
index ec2e351b..0387e97b 100644
--- a/fuzzyMode.js
+++ b/fuzzyMode.js
@@ -4,7 +4,11 @@ var fuzzyMode = (function() {
function start(newTab) {
if (!fuzzyBox) {
var completer = new completion.MergingCompleter([
- new completion.SmartCompleter(),
+ new completion.SmartCompleter({
+ 'wiki ': [ 'Wikipedia (en)', 'http://en.wikipedia.org/wiki/%s' ],
+ 'cc ' : [ 'dict.cc', 'http://www.dict.cc/?s=%s' ],
+ ';' : [ 'goto', '%s' ]
+ }),
new completion.FuzzyHistoryCompleter(1000),
new completion.FuzzyBookmarkCompleter(),
]);