diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | autoload/novim_mode.vim | 3 |
2 files changed, 1 insertions, 4 deletions
@@ -40,7 +40,7 @@ One further common problem is that `tmux` can change key combination behaviour, #### General editor shortcuts * `CTRL+N`: Open a new file. - * `CTRL+O`: Open an existing file. + * ~~`CTRL+O`: Open an existing file.~~ Causes too many conflicts, use (`ALT+;`, type `edit`) or a file manager instead * `CTRL+S`: Saves the current file. * `CTRL+Q`: Quit Vim. * `CTRL+G`: Goto line. diff --git a/autoload/novim_mode.vim b/autoload/novim_mode.vim index df1a10e..a997f74 100644 --- a/autoload/novim_mode.vim +++ b/autoload/novim_mode.vim @@ -85,9 +85,6 @@ function! g:SetNoVimModeShortcuts() " CTRL+n for new file inoremap <C-N> <C-O>:edit<Space> - " CTRL+o to open file - " TODO: hook into netrw or NERDTree - inoremap <C-O> <C-O>:edit<Space> " CTRL+s saves inoremap <silent> <C-S> <C-O>:update<CR> |