atom配置vim

来源:互联网 发布:2016淘宝造物节曲子 编辑:程序博客网 时间:2024/06/07 06:25

修改快捷键

  1. 打开 ./atom/packages/vim-mode-plus/keymaps/vim-mode-plus.cson
  2. 修改该文件的配置,如在编辑模式下将jj映射为esc键
# insert# -------------------------'atom-text-editor.vim-mode-plus.insert-mode':  'ctrl-w': 'editor:delete-to-beginning-of-word'  'ctrl-u': 'editor:delete-to-beginning-of-line'  'ctrl-y': 'vim-mode-plus:copy-from-line-above'  # disabled for compatibility with the common binding for going to the end of the line  # 'ctrl-e': 'vim-mode-plus:copy-from-line-below'  # 'ctrl-a': 'vim-mode-plus:insert-last-inserted'  'ctrl-r': 'vim-mode-plus:insert-register'  'ctrl-o': 'vim-mode-plus:activate-normal-mode-once'  'j j': 'vim-mode-plus:activate-normal-mode'