aboutsummaryrefslogtreecommitdiffstats
path: root/conkeror/.conkerorrc/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'conkeror/.conkerorrc/init.org')
-rw-r--r--conkeror/.conkerorrc/init.org25
1 files changed, 25 insertions, 0 deletions
diff --git a/conkeror/.conkerorrc/init.org b/conkeror/.conkerorrc/init.org
index 991f9ba..ab07b92 100644
--- a/conkeror/.conkerorrc/init.org
+++ b/conkeror/.conkerorrc/init.org
@@ -33,3 +33,28 @@ access.
#+BEGIN_SRC js
hint_digits = "arstdhneio";
#+END_SRC
+
+Add the ~search-engines/~ directory to the opensearch load path.
+
+#+BEGIN_SRC js
+ function add_to_opensearch_load_path(new_path) {
+ if (new_path.startsWith('/')) {
+ opensearch_load_paths.push(new_path);
+ } else {
+ let path = get_home_directory();
+ path.append('.conkerorrc');
+ path.append(new_path);
+
+ opensearch_load_paths.push(path);
+ }
+ }
+
+ add_to_opensearch_load_path('search-engines');
+#+END_SRC
+
+Add a Mozilla Developer Network webjump. This uses their OpenSearch
+description.
+
+#+BEGIN_SRC js
+ define_opensearch_webjump("mdn", "mozilla-developer-network.xml");
+#+END_SRC