diff options
author | Thomas Buckley-Houston | 2021-12-10 13:29:21 +0000 |
---|---|---|
committer | Thomas Buckley-Houston | 2021-12-10 13:29:21 +0000 |
commit | fa9a8d6e29a5aa89ba6a83c566f5a83c74434597 (patch) | |
tree | 0f508e4fb690fd3c999a9a9d067a35f931811e58 /autoload | |
parent | 28617f39da68fcf4d738040331f48285006022bb (diff) |
Remove `<C-O>` shortcut to open files
It causes too many conflicts with other plugins that expect the standard
`<C-O>` behaviour.
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/novim_mode.vim | 3 |
1 files changed, 0 insertions, 3 deletions
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> |