diff options
author | Cody Hiar <codyfh@gmail.com> | 2017-05-12 10:59:56 -0600 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2017-05-12 11:00:17 -0600 |
commit | 7b8b624589bf8b3420ded888b263fae3d7fb1e41 (patch) | |
tree | bac9a4dd05d7edace4a0b5b027821593ded48088 /plugin | |
parent | 662b00eeabe021dba2936af2c438d7313fe94bfc (diff) |
Adding back jj escape
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/vim-options.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index 969150f..180dba7 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -137,6 +137,8 @@ function! CleverTab() endif endfunction inoremap <Tab> <C-R>=CleverTab()<CR> +" type jj to get out of insert mode +inoremap jj <ESC> " Ctags for python project command! MakeTagsPython !ctags --languages=python --python-kinds=-i -R . " Command for figuring out highlight group |