diff options
author | Niklas Baumstark | 2012-01-21 15:59:18 +0100 |
---|---|---|
committer | Niklas Baumstark | 2012-04-10 23:54:36 +0200 |
commit | f0409c59deb17443156d5f880081cd0d0bb9661d (patch) | |
tree | b489785b1682dadd8917fb301ed60592d07de2a9 /fuzzyMode.js | |
parent | 642694bcc5850b31648bf56d8e2bd65184f377d3 (diff) | |
download | vimium-f0409c59deb17443156d5f880081cd0d0bb9661d.tar.bz2 |
add Google lucky search as command "luck "
Diffstat (limited to 'fuzzyMode.js')
-rw-r--r-- | fuzzyMode.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fuzzyMode.js b/fuzzyMode.js index df428cd0..41fc061b 100644 --- a/fuzzyMode.js +++ b/fuzzyMode.js @@ -6,6 +6,7 @@ var fuzzyMode = (function() { var completer = new completion.MergingCompleter([ new completion.SmartCompleter({ 'wiki ': [ 'Wikipedia (en)', 'http://en.wikipedia.org/wiki/%s' ], + 'luck ': [ 'Google Lucky (en)', 'http://www.google.com/search?q=%s&btnI=I%27m+Feeling+Lucky' ], 'cc ' : [ 'dict.cc', 'http://www.dict.cc/?s=%s' ], ';' : [ 'goto', '%s' ], '?' : [ 'search', function(query) { return utils.createSearchUrl(query) } ], |