All posts for tag "firefox"

Total 1 posts
📄 Firefox Disable Ctrl-w
C:2023-01-16 M:2023-01-16
As a vim key mapping user, I found firefox ctrl-w close tab is really a annoying key shortcut. Since in vim, the key shortcut ctrl-w is defaultly mapped as deleting a word. Solution Create usr/lib/firefox/defaults/pref/autoconfig.js 1 2 3 pref("general.config.filename", "firefox.cfg"); / our configuration file is called firefox.cfg at the roor directory of firefox lib pref("general.config.obscure_value", 0); pref("general.config.sandbox_enabled", false); // after testing, it is needed to disable sanbox Create /usr/lib/firefox/firefox.cfg