Basically, what I'm trying to do is have VIM search for dictionary/thesaurus results using dictionary.txt and thesaurus.txt in the current working directory.

So what I've tried in vimrc is something like:

set thesaurus=:pwd/thesaurus.txt

without much luck.

Has anyone gotten something like this to work?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

:set thesaurus=thesaurus.txt seems to work for me. It's already relative to the current working directory.

link|improve this answer
Wow, I was way over-thinking it lol. Duh... Thanks a bunch :) – BraedenP Feb 18 at 18:51
feedback

You should try with a dot:

set thesaurus=./thesaurus.txt

See :help path.

link|improve this answer
Actually I'm wrong. ./something means roughly "in the same directory as the current file" which may or may not be the same directory as the working directory. – romainl Feb 18 at 8:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.