Created
June 9, 2017 15:30
-
-
Save dahlbyk/d6fc58609020c423464ce9409d64fdce to your computer and use it in GitHub Desktop.
Atom Command + Keymap to Disable vim-mode-plus
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
atom.commands.add 'atom-text-editor', | |
'user:toggle-vim-mode': (event) -> | |
if atom.packages.isPackageDisabled("vim-mode-plus") | |
atom.packages.enablePackage("vim-mode-plus") | |
else | |
atom.packages.disablePackage("vim-mode-plus") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'atom-workspace': | |
'ctrl-alt-V': 'user:toggle-vim-mode' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not sure, haven't used Atom in quite a while now.