local_vimrc
local_vimrc copied to clipboard
Per project/tree configuration plugins
Hello, I created _vimrc_local.vim in the project folder. then, when I open a file for edit using vim, I see the question: Do you want to recognize a local vimrc...
I opened a file in vim in a project that uses this and was confused as I was given a Yes/No/Always/Never prompt - but with no context? What is the...
```vim let lh#local_vimrc#lists().whitelist =... ``` results in E121: Undefined variable: lh#local_vimrc#lists ```vim let g:local_vimrc_options.whitelist =... ``` Results in E121: Undefined variable: g:local_vimrc_options ```vim call lh#local_vimrc#munge('whitelist', ...) ``` Results in E117:...
In most scenarios we don't need to reset global variables every time we enter a buffer in case it was changed for another project (See alternate search path of a.vim)...
Hi! Recent changes in lh ([b93a99a0](https://github.com/LucHermitte/lh-vim-lib/commit/b93a99a008e6d16a4c3dfed163162bb499741170)) made local_vimrc throw an error here: https://github.com/LucHermitte/local_vimrc/blob/577f1f7ac5d9c5b25a07e9f3a97b28e331bef239/plugin/local_vimrc.vim#L223 ``` "General Note.md" 33L, 783B Error detected while processing BufRead Autocommands for "*"..function 37_SourceLocalVimrc: line 43: E745:...
This fixes https://github.com/LucHermitte/local_vimrc/issues/23.