We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have some autocmds on BufEnter and BufLeave and they are messing up the minimap a bit.
BufEnter
BufLeave
Seems to me that the plugin should use: http://vimdoc.sourceforge.net/htmldoc/autocmd.html#autocmd-disable to disable any events when manipulating the minimap window. Save eventignore, do what's necessary, restore it.
eventignore
The text was updated successfully, but these errors were encountered:
The auto group in question:
augroup linenumbers autocmd! autocmd BufEnter * :set relativenumber autocmd BufLeave * :set number norelativenumber autocmd WinEnter * :set relativenumber autocmd WinLeave * :set number norelativenumber autocmd InsertEnter * :set number norelativenumber autocmd InsertLeave * :set relativenumber autocmd FocusLost * :set number norelativenumber autocmd FocusGained * :set relativenumber augroup END
Sorry, something went wrong.
No branches or pull requests
I have some autocmds on
BufEnter
andBufLeave
and they are messing up the minimap a bit.Seems to me that the plugin should use: http://vimdoc.sourceforge.net/htmldoc/autocmd.html#autocmd-disable to disable any events when manipulating the minimap window. Save
eventignore
, do what's necessary, restore it.The text was updated successfully, but these errors were encountered: