In my .vimrc file I have
set noshowmode
However, upon starting vim, :set noshowmode? returns showmode.
Something must be adjusting this setting upon startup (perhaps a plugin?). What's the best way to go about diagnosing something like this?
For the record, I've tried starting vim with the following command:
vim -V9verbose.log but for some reason it still outputs the results to the command line rather than to the named file. I have to quit vim to save myself from being caught in a seemingly never ending verbose hell. Am I not using that command properly?
Thank you in advance for any help, please let me know if you need any more info!
:verbose set showmode?will tell you where it was last set from. – B Layer Aug 09 '18 at 20:36