Description
First of all, huge thanks to the maintainers of MacVim for all the great work that you do! 😃
In #635, the team merged, discussed, and then reverted (via #637) a change to make the macvim base gvimrc allow users to override 'guitablabel'
in other places besides their .gvimrc
.
@chdiza said:
I don't see the point of this unless one is desperately trying to avoid needing to have a
~/.gvimrc
in the first place. If you already have a~/.gvimrc
, there is no reason not to put yourguitablabel
setting in it, and there is no reason to put that setting in~/.vimrc
.
I am in fact someone who is trying to avoid needing a ~/.vimrc
or ~/.gvimrc
. My personal configurations are stored in a vim package (e.g. ~/.vim/pack/mypackage
) that contains my settings as well as the plugins I use.
Because vim packages are loaded in step 4 of initialization, and GUI initialization happens in step 8, the MacVim base gvimrc
overrides the 'guitablabel'
setting from my package.
Would you reconsider making the MacVim gvimrc
more permissive to allow this type of configuration? It didn't seem like there were any drawbacks mentioned in #635.