-
Notifications
You must be signed in to change notification settings - Fork 139
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
Can't disable plugin #202
Comments
Confirmed; thanks for reporting!
|
Hi All, any update on this issue? |
Not from me --- sorry! PRs are always welcome, however :) . |
Are you seeking to disable for only a selected buffer? |
@xuhdev yes. |
let buflist = []
for i in range(tabpagenr('$'))
call extend(buflist, tabpagebuflist(i + 1))
endfor Maybe useful for disabling autocmd in all the buffer? |
Problem
Command
:EditorConfigDisable
, which although not present in the documentation, and setting (manually via Vim Command mode and via ".vimrc") buffer variable (:let b:EditorConfig_disable = 1
) don't disable plugin.Steps to reproduce
:w
And after that all extra spaces from the end of the line are removed, which indicates that the plugin is still working. I even tried to run Vim (
vim -u ./.minimal_vimrc ./test.txt
) and Neovim (nvim -u ./.minimal_vimrc ./test.txt
) with a minimum config (all files are below), but the plugin still wasn't disabled.My configuration
Minimal config "./.minimal_vimrc"
"./.editorconfig" file
The text was updated successfully, but these errors were encountered: