On 2011-06-11, 17:12, David Bürgin wrote:

if version >= 730
  set conceallevel=0
  autocmd FileType * setlocal conceallevel=0
endif

Unfortunately, this annuls the :set and :au commands in my Vim 7.3 and I
couldn't say why. Am I using the 'if version' statement in the wrong
way, somehow?

Right. For future reference, the simple solution is to identify Vim 7.3 as version '703':

if version >= 703
  set conceallevel=0
  autocmd FileType * setlocal conceallevel=0
endif

Still learning, apparently.

Cheers,
David

--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to