From 19f1baddfee131c4bf3f01a442f7a7e4b6068ef9 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 10 Oct 2019 13:17:07 +0200 Subject: [PATCH] [ADD][TRIDACTYL] Search related mappings --- tridactyl/.config/tridactyl/tridactylrc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tridactyl/.config/tridactyl/tridactylrc b/tridactyl/.config/tridactyl/tridactylrc index 41e9788..79ac8c3 100644 --- a/tridactyl/.config/tridactyl/tridactylrc +++ b/tridactyl/.config/tridactyl/tridactylrc @@ -46,6 +46,15 @@ command hint_focus hint -; " Open right click menu on links bind ;C composite hint_focus; !s xdotool key Menu +" Search forward + bind / fillcmdline find + " Search backward + bind ? fillcmdline find -? + " Go to the next match + bind n findnext 1 + " Go to the previous match + bind N findnext -1 + " Allow Tridactyl and other extensions on Mozilla reserved pages command fixamo_quiet jsb tri.excmds.setpref("privacy.resistFingerprinting.block_mozAddonManager", "true").then(tri.excmds.setpref("extensions.webextensions.restrictedDomains", '""')) command fixamo js tri.excmds.setpref("privacy.resistFingerprinting.block_mozAddonManager", "true").then(tri.excmds.setpref("extensions.webextensions.restrictedDomains", '""').then(tri.excmds.fillcmdline_tmp(3000, "Permissions added to user.js. Please restart Firefox to make them take affect.")))