[Surfingkeys] Unmap some remapped keys to clean up the space
I don't accidentally want to become dependent on the original keybindings. I'm leaving the ‘G’ and ‘gg’ keys up for now, beceause I haven't been able to tell yet whether the ‘M-<’ and ‘M->’ keybindings work.
This commit is contained in:
parent
f94dfbad15
commit
6f0a9a8613
1 changed files with 13 additions and 0 deletions
|
@ -14,11 +14,24 @@ api.map('c0', 'yy');
|
|||
api.map('<Alt-p>', 'E');
|
||||
api.map('<Alt-n>', 'R');
|
||||
|
||||
api.unmap('h');
|
||||
api.unmap('j');
|
||||
api.unmap('k');
|
||||
api.unmap('l');
|
||||
api.unmap('S');
|
||||
api.unmap('D');
|
||||
api.unmap('yy');
|
||||
api.unmap('E');
|
||||
api.unmap('R');
|
||||
|
||||
api.map('<Ctrl-v>', 'P');
|
||||
api.map('<Alt-v>', 'U');
|
||||
api.map('<Alt->>', 'G');
|
||||
api.map('<Alt-<>', 'gg');
|
||||
|
||||
api.unmap('P');
|
||||
api.unmap('U');
|
||||
|
||||
api.Hints.setCharacters('arstdhneio');
|
||||
api.hintAlign = "left";
|
||||
|
||||
|
|
Loading…
Reference in a new issue