mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 16:57:59 +01:00
Sorry, minor feature that's more of a bug fix: Options/commands/mappings in :help now behave as links.
This commit is contained in:
7
vimperator/locale/en-US/help.js
Normal file
7
vimperator/locale/en-US/help.js
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
document.addEventListener("click", function (event) {
|
||||
let elem = event.target;
|
||||
if (/^(option|mapping|command)$/.test(elem.className))
|
||||
elem.setAttribute("href", "chrome://liberator/content/help.xul?" + encodeURIComponent(elem.textContent.replace(/\s.*/, "")));
|
||||
}, true);
|
||||
|
||||
Reference in New Issue
Block a user