30 lines
922 B
Org Mode
30 lines
922 B
Org Mode
#+TITLE: Conkeror Webjumps
|
|
|
|
* Opensearch webjumps
|
|
|
|
Add a Mozilla Developer Network webjump. This uses their OpenSearch
|
|
description.
|
|
|
|
#+BEGIN_SRC js
|
|
define_opensearch_webjump("mdn", "mozilla-developer-network.xml");
|
|
#+END_SRC
|
|
|
|
Add a Duck Duck Go webjump. This uses the OpenSearch
|
|
description. Conkeror has a =duckduckgo= webjump, but I prefer the
|
|
shorter ddg. I define a new open search webjump because if I alias
|
|
the webjump it'll still show up as =duckduckgo=.
|
|
|
|
#+BEGIN_SRC js
|
|
define_opensearch_webjump("ddg", "duckduckgo.xml");
|
|
#+END_SRC
|
|
|
|
* Regular webjumps
|
|
|
|
Add a [[https://wpackagist.org/][WordPress Packagist]] webjump.
|
|
|
|
#+BEGIN_SRC js
|
|
define_webjump("wpackagist",
|
|
"https://wpackagist.org/search?q=%s&type=any",
|
|
$alternative="https://wpackagist.org/",
|
|
$doc="Search WordPress packagist for plugins and themes.");
|
|
#+END_SRC
|