On 10/29/2016 02:49 PM, Frank Cox wrote:> On Sat, 29 Oct 2016 14:39:03 -0700 > Alice Wonder wrote: > >> How do I get it to stop doing that? > > http://superuser.com/questions/278442/how-to-make-vim-not-fold-everything-automatically >Thank you, it appears the folding is the term I should have used in my search. Putting set foldlevelstart=1 in the ~/.vimrc didn't seem to do anything, bit zR in the editor did. Now that I know what it is called I can probably search and figure out how to just turn it off, I don't like it.
On 10/29/2016 03:06 PM, Alice Wonder wrote:> On 10/29/2016 02:49 PM, Frank Cox wrote: >> On Sat, 29 Oct 2016 14:39:03 -0700 >> Alice Wonder wrote: >> >>> How do I get it to stop doing that? >> >> http://superuser.com/questions/278442/how-to-make-vim-not-fold-everything-automatically >> >> > > Thank you, it appears the folding is the term I should have used in my > search. > > Putting > > set foldlevelstart=1 > > in the ~/.vimrc didn't seem to do anythingset nofoldenable That in .vimrc works in the version of vim in CentOS 7 but allegedly it still will fold in some contexts
On 10/29/2016 04:32 PM, Alice Wonder wrote:> On 10/29/2016 03:06 PM, Alice Wonder wrote: >> On 10/29/2016 02:49 PM, Frank Cox wrote: >>> On Sat, 29 Oct 2016 14:39:03 -0700 >>> Alice Wonder wrote: >>> >>>> How do I get it to stop doing that? >>> >>> http://superuser.com/questions/278442/how-to-make-vim-not-fold-everything-automatically >>> >>> >>> >> >> Thank you, it appears the folding is the term I should have used in my >> search. >> >> Putting >> >> set foldlevelstart=1 >> >> in the ~/.vimrc didn't seem to do anything > > > set nofoldenable > > That in .vimrc works in the version of vim in CentOS 7 but allegedly it > still will fold in some contextsGah - that seems to work but now when doing a git commit I get a warning that the option is recognized. I do NOT get that warning when editing a file. What the hell ever happened to KISS ?