[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:
Tom Willemse 2022-12-13 06:39:34 -08:00
parent f94dfbad15
commit 6f0a9a8613

View file

@ -14,11 +14,24 @@ api.map('c0', 'yy');
api.map('<Alt-p>', 'E'); api.map('<Alt-p>', 'E');
api.map('<Alt-n>', 'R'); 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('<Ctrl-v>', 'P');
api.map('<Alt-v>', 'U'); api.map('<Alt-v>', 'U');
api.map('<Alt->>', 'G'); api.map('<Alt->>', 'G');
api.map('<Alt-<>', 'gg'); api.map('<Alt-<>', 'gg');
api.unmap('P');
api.unmap('U');
api.Hints.setCharacters('arstdhneio'); api.Hints.setCharacters('arstdhneio');
api.hintAlign = "left"; api.hintAlign = "left";