forked from aartaka/nx-search-engines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.lisp
33 lines (32 loc) · 961 Bytes
/
package.lisp
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
;;;; package.lisp
(defpackage #:nx-search-engines
(:nicknames #:search-engines #:engines)
(:use #:cl)
(:import-from #:nyxt
#:define-class
#:define-mode
#:define-command
#:current-mode
#:search-engine
#:new-url-query
#:default-search-engine
#:make-search-completion-function)
(:export #:make-duckduckgo-completion
#:duckduckgo
#:duckduckgo-images
#:make-google-completion
#:google
#:google-images
#:bing-date
#:bing
#:bing-images
#:bing-videos
#:bing-maps
#:bing-news
#:bing-shopping
#:wordnet
#:make-wikipedia-completion
#:wikipedia
#:make-yahoo-completion
#:yahoo)
(:documentation "A collection of search engines for Nyxt browser."))