-
Notifications
You must be signed in to change notification settings - Fork 100
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
.vimrc sourced after saving: perhaps include sourcing when user extensions are saved #252
Comments
Sorry, can you explain the problem in more detail? |
@EdmundsEcho I see what you mean, the augroup here - https://github.com/begriffs/haskell-vim-now/blob/master/.vimrc#L281-L288 It's definitely possible to source the other files as well. Probably just add the filename after |
Motivated by your feedback I found a way for it to work. If what I propose makes sense (i.e., it's not considered a hack), then the place to make the changes would be to update the documentation for how to create and use In my " Source the vimrc file after saving it
augroup sourcing
autocmd!
autocmd bufwritepost vimrc.local source $MYVIMRC
autocmd bufwritepost vimrc.local source ${HOME}/.config/haskell-vim-now/vimrc.local
augroup END For some reason, I can't seem to trigger the sourcing of |
The .vimrc file maintained by the hvn script triggers sourcing of the rc file when saved. Is it possible to have the event trigger include changes to vimrc.local and plugins.vim?
The text was updated successfully, but these errors were encountered: