diff --git a/README.markdown b/README.markdown index 7abcc4e..1544eb3 100644 --- a/README.markdown +++ b/README.markdown @@ -76,7 +76,7 @@ restore your previous spell environment, enter the command: ### Weak and lazy usage ``` -:LazyWordy +:WeakWordy ``` Weak and lazy words are common in first drafts. @@ -130,7 +130,7 @@ targeted by _ProblemWordy_. ``` :PuffWordy -:JargWordy +:JargonWordy ``` Instead of puffery, demonstrate through details. diff --git a/data/en/jargonese.dic b/data/en/jargon.dic similarity index 100% rename from data/en/jargonese.dic rename to data/en/jargon.dic diff --git a/data/en/weak-and-lazy.dic b/data/en/weak.dic similarity index 98% rename from data/en/weak-and-lazy.dic rename to data/en/weak.dic index b3caebe..ab385f0 100644 --- a/data/en/weak-and-lazy.dic +++ b/data/en/weak.dic @@ -1,6 +1,7 @@ # Potentially lazy, weak, awkward, overused, filler, imprecise, # boring, abused, imprecise, redundant, et cetera # http://darlingmionette.deviantart.com/art/Words-To-Avoid-152886782 +# http://en.wikipedia.org/wiki/Wikipedia:Vagueness /encoding=utf-8 I believe/! I feel/! diff --git a/data/en/weasel.dic b/data/en/weasel.dic index d009fd9..0c1d71b 100644 --- a/data/en/weasel.dic +++ b/data/en/weasel.dic @@ -1,6 +1,8 @@ # words and phrases that can be used to manipulate credibility # based on something other than explicit evidence. Weasel words. # appeal to authority or ad populum +# http://en.wikipedia.org/wiki/Wikipedia:WEASEL#Unsupported_attributions +# http://en.wikipedia.org/wiki/Wikipedia:Vagueness /encoding=utf-8 accused/! alleged/! diff --git a/plugin/wordy.vim b/plugin/wordy.vim index 9512c85..c634611 100644 --- a/plugin/wordy.vim +++ b/plugin/wordy.vim @@ -18,8 +18,9 @@ let g:wordy_dir = fnamemodify(resolve(expand(':p')), ':h:h') command -nargs=0 NoWordy call wordy#init({}) command -nargs=0 BeingWordy call wordy#init({ 'd': ['being',] }) -command -nargs=0 JargWordy call wordy#init({ 'd': ['jargonese',] }) -command -nargs=0 LazyWordy call wordy#init({ 'd': ['weak-and-lazy',] }) +command -nargs=0 JargonWordy call wordy#init({ 'd': ['jargon',] }) +command -nargs=0 WeakWordy call wordy#init({ 'd': ['weak',] }) +command -nargs=0 LazyWordy call wordy#init({ 'd': ['weak',] }) command -nargs=0 ProblemWordy call wordy#init({ 'd': ['problematic',] }) command -nargs=0 PuffWordy call wordy#init({ 'd': ['puffery',] }) command -nargs=0 VagueTimeWordy call wordy#init({ 'd': ['vague-time',] })