On Wednesday, 09 May, 2012 at 17:34:48 BST, Benjamin R. Haskell wrote:
You're using :let syntax (which takes a VimL expression) for a :set
(which is a command (so, no VimL, no spaces between 'path', '=',
etc.)).
Either of the following should work:
set path=.,$SOMEVAR/**
or
let &path = '.,' . $SOMEVAR . '/**'
Aha! I knew it was something like that. Thank you for the solution and for the
explanation.
--
.
--
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