numbers.vim
numbers.vim copied to clipboard
Number Toggle on ^o
When in insert mode you can switch to normal mode for one command with C-o. Currently numbers.vim toggles to relative line numbers when hitting C-o from insert mode (since you're technically then in normal mode), and then after the one command is run, goes back to absolute line numbers.
Personally I think it would be better if line numbers stayed absolute through that whole process. If nothing else it would be nice to have the option.
I second that.
In case anybody else bumped into this the same way I did, which was by using some keymaps along the lines of inoremap <Esc>w <C-o>w
A workaround to the constant line toggling is to use commands such as <C-Right>, <S-Right>, etc in binds. But it still would be a good fix I think.