Ohodnoceno 4 z 5 hvězdiček

Actually, looking at implementation.js, turns out it is pretty simple change to allow existing syntax with multiple commands, and not needing custom functions:

diff --git a/addon/implementation.js b/addon/implementation.js
index 5a740f2..f44bf40 100644
--- a/addon/implementation.js
+++ b/addon/implementation.js
@@ -143,7 +143,9 @@ var TBKeys = {
let cmdBody = command.slice(cmdType.length + 1)
switch (cmdType) {
case "cmd":
- window.goDoCommand(cmdBody)
+ for (let cmd of cmdBody.split(" ")) {
+ window.goDoCommand(cmd)
+ }
break
case "func":
window[cmdBody]()


Then, one can just do:
"n": "cmd:cmd_collapseAllThreads cmd_nextMsg",

-mr

Tato recenze je pro předchozí verzi doplňku (2.1.0).  Tento uživatel má 2 předchozí recenze tohoto doplňku.

Ohodnoceno 4 z 5 hvězdiček

Works fine, for complex combination I modified implementation.js and add the personal function inside builtins

Tato recenze je pro předchozí verzi doplňku (2.1.0). 

Ohodnoceno 5 z 5 hvězdiček

Does exactly what I needed; remap some of the single shortcut keys so that when using quick filter to search my mail, I don't inadvertently archive, delete, or forever fubar my messages - Greatly appreciate the simplicity.

Tato recenze je pro předchozí verzi doplňku (2.1.0). 

Ohodnoceno 4 z 5 hvězdiček

It works, but it is a bit hard to use. I managed to bind a key to “Search events and tasks” so I'm happy.
You will find explanations on the official website [1] and have to search for the precise command name with the DOM explorer (Ctrl + Shift + I) [2].

[1] https://github.com/willsALMANJ/tbkeys
[2] http://kb.mozillazine.org/Keyconfig_extension#Finding_code_for_keys

Tato recenze je pro předchozí verzi doplňku (2.1.0). 

Ohodnoceno 4 z 5 hvězdiček

I just needed to replace the close tab on escape add on and it was easy. Finding the correct operators is a bit hard and so far I can't get it to work in the compose window at all.

Tato recenze je pro předchozí verzi doplňku (2.1.0). 

Ohodnoceno 5 z 5 hvězdiček

Nice and easy to unbind all the keys, only one I've found to still work.
Open the add on, scroll to the bottom, click 'unset singles', click save, done. Thanks.

Tato recenze je pro předchozí verzi doplňku (2.1.0).