@@ -81,7 +81,7 @@ least until _wordy_ feels the urge to build again.
81
81
Define your own ring of dictionaries, overriding the default one in your
82
82
` .vimrc ` :
83
83
84
- ```
84
+ ``` vim
85
85
let g:wordy#ring = [
86
86
\ 'weak',
87
87
\ ['being', 'passive-voice', ],
@@ -97,26 +97,28 @@ let g:wordy#ring = [
97
97
98
98
You can navigate the ring with the following commands:
99
99
100
- ```
100
+ ``` vim
101
101
:NextWordy
102
102
:PrevWordy
103
103
```
104
104
105
105
Optionally map a key in your ` .vimrc ` to rapidly cycle through the
106
106
ring's dictionaries:
107
107
108
- ```
108
+ ``` vim
109
109
nnoremap <silent> K :NextWordy<cr>
110
110
```
111
111
112
- ** NEW ** - You can browse through a flattened list of dictionaries
112
+ You can browse through a flattened list of dictionaries
113
113
specified in your ring with:
114
114
115
- ```
115
+ ``` vim
116
116
:Wordy <tab>
117
117
```
118
+
118
119
and optionally map a key such as ` \w ` in your ` .vimrc ` to it by
119
- ```
120
+
121
+ ``` vim
120
122
if !&wildcharm | set wildcharm=<C-z> | endif
121
123
execute 'nnoremap <leader>w :Wordy<space>'.nr2char(&wildcharm)
122
124
```
@@ -126,7 +128,7 @@ execute 'nnoremap <leader>w :Wordy<space>'.nr2char(&wildcharm)
126
128
You’ll use the commands that follow to enable _ wordy_ . To disable it and
127
129
restore your previous spell environment, enter the command:
128
130
129
- ```
131
+ ``` vim
130
132
:NoWordy
131
133
```
132
134
@@ -138,7 +140,7 @@ go to those words flagged by _wordy_.
138
140
139
141
### Weak and lazy usage
140
142
141
- ```
143
+ ``` vim
142
144
:Wordy weak
143
145
```
144
146
@@ -166,7 +168,7 @@ asking whether it detracts from the point you are trying to make.
166
168
167
169
### Redundant and problematic usage
168
170
169
- ```
171
+ ``` vim
170
172
:Wordy redundant
171
173
:Wordy problematic
172
174
```
@@ -191,7 +193,7 @@ targeted by _problematic_.
191
193
> _ self-actualization_ reflect his _ dynamic_ and _ transformative_
192
194
> personality.” (puffery and jargon)
193
195
194
- ```
196
+ ``` vim
195
197
:Wordy puffery
196
198
:Wordy business-jargon
197
199
:Wordy art-jargon
@@ -205,7 +207,7 @@ Instead of puffery, demonstrate through details.
205
207
206
208
### Manipulative language
207
209
208
- ```
210
+ ``` vim
209
211
:Wordy weasel
210
212
```
211
213
@@ -222,7 +224,7 @@ will seek to purge such loaded language from your writing.
222
224
223
225
### To be and the passive voice
224
226
225
- ```
227
+ ``` vim
226
228
:Wordy being
227
229
:Wordy passive-voice
228
230
```
@@ -232,7 +234,7 @@ of the verb to be, often found in overly-passive sentences.
232
234
233
235
### Colloquialisms, Idioms, and Similies
234
236
235
- ```
237
+ ``` vim
236
238
:Wordy colloquial
237
239
:Wordy idiomatic
238
240
:Wordy similies
@@ -243,7 +245,7 @@ idiomatic phrases scraped from Wiktionary and Wikipedia.
243
245
244
246
### Miscellaneous
245
247
246
- ```
248
+ ``` vim
247
249
:Wordy said-synonyms
248
250
:Wordy opinion
249
251
:Wordy contractions
0 commit comments