aboutsummaryrefslogtreecommitdiff
path: root/firefox/user.js
diff options
context:
space:
mode:
authorYuchen Pei <id@ypei.org>2023-08-26 18:16:09 +1000
committerYuchen Pei <id@ypei.org>2023-08-26 18:16:09 +1000
commit9e004a40faba221f9179a96df6cceaeaba2d8c68 (patch)
treec198240e7c22b50695cdb13e4c70c074efc80521 /firefox/user.js
parentb35a2376ce6f17468a3502313f931bdc40b536b8 (diff)
Firefox x org-protocol
A greasemonkey userscript with keybindings for org-protocol. A webpage to activate org-protocol in firefox, which requires network.protocol-handler.expose.org-protocol to be false Some org-protocol bookmarklet in case the keys don't work
Diffstat (limited to 'firefox/user.js')
-rw-r--r--firefox/user.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/firefox/user.js b/firefox/user.js
index f6f1530..f8e5879 100644
--- a/firefox/user.js
+++ b/firefox/user.js
@@ -1055,8 +1055,9 @@ user_pref("xpinstall.whitelist.required", false);
// org-protocol
user_pref("network.protocol-handler.app.org-protocol", "emacsclient -n");
-user_pref("network.protocol-handler.expose.org-protocol", true);
+user_pref("network.protocol-handler.expose.org-protocol", false);
user_pref("network.protocol-handler.external.org-protocol", true);
+user_pref("devtools.editor.keymap", "emacs");
/* END: internal custom pref to test for syntax errors ***/