-
Notifications
You must be signed in to change notification settings - Fork 0
/
engine-list.el
49 lines (37 loc) · 1.05 KB
/
engine-list.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
(require 'engine-mode)
(defengine amazon
"https://www.amazon.com/s/field-keywords=%s"
:keybinding "a")
(defengine duckduckgo
"https://duckduckgo.com/?q=%s"
:keybinding "d")
(defengine google
"http://www.google.com/search?ie=utf-8&oe=utf-8&q=%s"
:keybinding "g")
(defengine google-maps
"http://maps.google.com/maps?q=%s"
:keybinding "m")
(defengine hacker-news
"https://hn.algolia.com/?q=%s"
:keybinding "h")
(defengine imdb
"http://www.imdb.com/find?s=all&q=%s"
:keybinding "i")
(defengine oeis
"http://oeis.org/search?q=%s"
:keybinding "o")
(defengine rap-genius
"http://genius.com/search?q=%s"
:keybinding "r")
(defengine robert-christgau
"http://robertchristgau.com/get_artist.php?name=%s"
:keybinding "c")
(defengine turkish-dictionary
"http://www.turkishdictionary.net/?word=%s"
:keybinding "t")
(defengine wikipedia
"https://en.wikipedia.org/w/index.php?title=Special:Search&search=%s"
:keybinding "w")
(defengine wiktionary
"https://en.wiktionary.org/w/index.php?title=Special:Search&search=%s"
:keybinding "k")