Im using the firefox addon vimperator. The config file of vimperator (vimperatorrc), follows similar configuration like vim. I want to reassign an existing shortcut key to a new key, and use another key for the shortcut key that I reassigned. eg.
map x b
map b gT
After this, x also is mapped to b. I understand that it parse the complete file and decides the mappings.
However, is there a way to accomplish this.
Try noremap x b
instead. (Think that's how it works.)