When I useVIMthe syntax highlighting works, except after I return to a buffer using:bdthe highlighting disappears. I can enable it again using:syn on.This problem occurs only for files without an extension. I remember I had to change some settings to get files without an extension to be highlighted in the first place, but I can't remember the details. (I use files without an extension because thegfcommand just works when I do this.) Can anyone help?
Thanks.
bdcommand (and alsobpandbn) to always enable syntax highlighting. This has the drawback of always highlighting the buffer, which you might not want. Here are the lines I added to my .vimrc file:command BUFDEL :bd | syn onandcabbrev bd BUFDEL– Fish Jul 26 '11 at 11:02