You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot figure out what I am doing wrong. Using the thesaurus command only populates a list of the entire file. It is not suggesting only synonyms of the highlighted word.
The text was updated successfully, but these errors were encountered:
Sorry I just spend longer than I care to admit on the same problem and am posting here so dreadfully late to be useful to you so that hopefully somebody else does not. You probably need to massage the referenced moby thesaurus into a format VIM can handle. It needs to be space separated which means all the terms with spaces will drop out of the file (4900+) via ":g/^\w+ [^,]+,/d". And all suggestions with spaces (292000+!!) via ":%s/,\w+ [^,]+,/,/g". And finally convert commas to spaces via ":%s/,/ /g". Don't worry though at least on windows vim is so ridiculously slow searching the thesaurus you won't be able to use a file this large.
I cannot figure out what I am doing wrong. Using the thesaurus command only populates a list of the entire file. It is not suggesting only synonyms of the highlighted word.
The text was updated successfully, but these errors were encountered: