rename JargWordy to JargonWordy; added WeakWordy

This commit is contained in:
Reed Esau
2014-01-24 22:48:16 -07:00
parent 7011af40bd
commit 00d8f9d1e0
5 changed files with 8 additions and 4 deletions

View File

@@ -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.

View File

@@ -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/!

View File

@@ -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/!

View File

@@ -18,8 +18,9 @@ let g:wordy_dir = fnamemodify(resolve(expand('<sfile>: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',] })