shorten and fix a few names

This commit is contained in:
Reed Esau
2014-01-19 12:46:02 -07:00
parent 429bf99039
commit 09d3cf1290
2 changed files with 19 additions and 21 deletions

View File

@@ -18,29 +18,30 @@ 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 ColloquialWordy call wordy#init({ 'd': ['colloquial',] })
command -nargs=0 WeaselWordy call wordy#init({ 'd': ['weasel',] })
command -nargs=0 IdiomaticWordy call wordy#init({ 'd': ['idiomatic',] })
command -nargs=0 JargoneseWordy call wordy#init({ 'd': ['jargonese',] })
command -nargs=0 JargWordy call wordy#init({ 'd': ['jargonese',] })
command -nargs=0 LazyWordy call wordy#init({ 'd': ['weak-and-lazy',] })
command -nargs=0 LikeWordy call wordy#init({ 'd': ['similies',] })
command -nargs=0 OpinionatedWordy call wordy#init({ 'd': ['opinionated',] })
command -nargs=0 OpineWordy call wordy#init({ 'd': ['opinion',] })
command -nargs=0 ProblemWordy call wordy#init({ 'd': ['problematic',] })
command -nargs=0 PuffWordy call wordy#init({ 'd': ['puffery',] })
command -nargs=0 SaidWordy call wordy#init({ 'd': ['said-synonyms',] })
command -nargs=0 TimeWordy call wordy#init({ 'd': ['non-spec-time',] })
command -nargs=0 WeaselWordy call wordy#init({ 'd': ['weasel',] })
command -nargs=0 WordyWordy call wordy#init({ 'd': ['redundant',] })
command -nargs=0 TriteWordy call wordy#init({ 'd': [ 'colloquial', 'idiomatic', 'similies',] })
command -nargs=0 Wordy call wordy#init({ 'd': [ 'being',
\ 'colloquial',
\ 'idiomatic',
\ 'jargonese',
\ 'manipulative',
\ 'opinionated',
\ 'weasel',
\ 'opinion',
\ 'puffery',
\ 'redundant',
\ 'similies',
\ 'weak-and-lazy',
\ ])
\ ]})
let &cpo = s:save_cpo
unlet s:save_cpo