-
-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
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
Disable minibufexpl while in Goyo mode #9
Comments
Hi, as far as I know, MiniBufExpl is local to each tab and thus not visible in Goyo tab which has only one buffer. |
The problem is the configuration:
Without this configuration works fine. |
Have you tried setting up Try adding the following code to your .vimrc: function! s:goyo_before()
MBEClose
wincmd w
endfunction
let g:goyo_callbacks = [function('s:goyo_before')] Before |
I was doing, but was wrong. You are right, the appropriate way to do this is outside from plugin. To help beginers like me may be that this information can be avaiable in the documentation, updated for each plugin. What you think? |
No problem. I've just created a wiki page. I'll add the link to in on the README page. Thanks. |
Disable by default minibufexpl plugin (https://github.com/techlivezheng/vim-plugin-minibufexpl.git) while in Goyo mode.
The text was updated successfully, but these errors were encountered: