-
Notifications
You must be signed in to change notification settings - Fork 32
/
writegood-mode.el
346 lines (303 loc) · 13.3 KB
/
writegood-mode.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
;;; writegood-mode.el --- Polish up poor writing on the fly
;;
;; Author: Benjamin Beckwith
;; Created: 2010-8-12
;; Version: 2.2.0
;; Last-Updated: 2015-03-25
;; URL: http://github.com/bnbeckwith/writegood-mode
;; Keywords: writing weasel-words grammar
;; Compatability:
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Commentary:
;;
;; This minor mode tries to find and highlight problems with your
;; writing (in english).
;;
;; Behavior inspired by the weaselwords scripts to aid in good
;; writing.
;; http://matt.might.net/articles/shell-scripts-for-passive-voice-weasel-words-duplicates/
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Change Log:
;;
;; 2.2.0 Add tooltips to explain detected text
;; 2.1.1 Fix bug with regex definition
;; 2.1.0 Add capability to add custom regexps
;; 2.0.4 Remove cl dependency
;; 2.0.3 Add in a small decription of the Flesch-Kincaid score
;; 2.0.2 Fix Formatting in Org-mode files, make faces underline
;; 2.0.1 Make user additions to word lists dynamic
;; 2.0.0 Flesch-Kincaid scoring added to functionality
;; 1.3.0 Several pull requests added, comments checked, passive voice regexp fixed
;; 1.2.0 Fixed weasel-words regexp to have word boundaries
;; 1.1.0 Fixed regexps to be multiline.
;; 1.0.0 Initial version
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 3, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth
;; Floor, Boston, MA 02110-1301, USA.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Test Text:
;;
;; This mode will improve various aspects of your writing in many ways.
;; With this mode, text within comments will be searched for the
;; the duplicate problem.
;; The text is searched and aspects (even within comments) are
;; highlighted.
;; Another benefit is the the finding of duplicates.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Code:
(require 'regexp-opt)
(require 'faces)
(defgroup writegood nil
"Minor mode for highlighting bad english writing."
:prefix "writegood-"
:group 'help
:link '(url-link "http://github.com/bnbeckwith/writegood-mode"))
(defconst writegood-version "2.2.0"
"WriteGood mode version")
;; General Custom settings
(defcustom writegood-sentence-punctuation
'(?. ?? ?!)
"List of punctuation denoting sentence end"
:group 'writegood
:type '(repeat character))
;; Weaselwords
(defface writegood-weasels-face
'((((supports :underline (:style wave)))
:underline (:style wave :color "DarkOrange"))
(((class color) (background light))
(:inherit font-lock-warning-face :background "moccasin"))
(((class color) (background dark))
(:inherit font-lock-warning-face :background "DarkOrange")))
"Writegood face for weasel words"
:group 'writegood)
(defcustom writegood-weasel-words
'("many" "various" "very" "fairly" "several" "extremely"
"exceedingly" "quite" "remarkably" "few" "surprisingly"
"mostly" "largely" "huge" "tiny" "are a number" "is a number"
"excellent" "interestingly" "significantly" "substantially"
"clearly" "vast" "relatively" "completely" "literally"
"not rocket science" "outside the box")
"The weasel words to use"
:group 'writegood
:type '(repeat string))
(defcustom writegood-weasel-words-tooltip "Weasel word: consider removing or replacing"
"Message to show for weasel words"
:group 'writegood
:type 'string)
(defcustom writegood-weasel-words-additional-regexp
nil
"Additional regexp to identify weasel words."
:group 'writegood
:type 'regexp)
(defun writegood-weasels-font-lock-keywords-regexp ()
"Generate regex that matches weasel-words"
(concat "\\b\\(?:" (regexp-opt writegood-weasel-words)
(when writegood-weasel-words-additional-regexp
(concat "\\|" writegood-weasel-words-additional-regexp))
"\\)\\b"))
(defun writegood-weasels-font-lock-keywords ()
`((,(writegood-weasels-font-lock-keywords-regexp)
0 '(face writegood-weasels-face help-echo ,writegood-weasel-words-tooltip) prepend)))
;; Passive Voice
(defface writegood-passive-voice-face
'((((supports :underline (:style wave)))
:underline (:style wave :color "cyan"))
(((class color))
(:inherit font-lock-warning-face :background "LemonChiffon")))
"Writegood face for passive-voice"
:group 'writegood)
(defcustom writegood-passive-voice-irregulars
'("awoken" "been" "born" "beat" "become" "begun" "bent" "beset"
"bet" "bid" "bidden" "bound" "bitten" "bled" "blown" "broken"
"bred" "brought" "broadcast" "built" "burnt" "burst" "bought"
"cast" "caught" "chosen" "clung" "come" "cost" "crept" "cut"
"dealt" "dug" "dived" "done" "drawn" "dreamt" "driven" "drunk"
"eaten" "fallen" "fed" "felt" "fought" "found" "fit" "fled"
"flung" "flown" "forbidden" "forgotten" "foregone" "forgiven"
"forsaken" "frozen" "gotten" "given" "gone" "ground" "grown"
"hung" "heard" "hidden" "hit" "held" "hurt" "kept" "knelt" "knit"
"known" "laid" "led" "leapt" "learnt" "left" "lent" "let" "lain"
"lighted" "lost" "made" "meant" "met" "misspelt" "mistaken" "mown"
"overcome" "overdone" "overtaken" "overthrown" "paid" "pled" "proven"
"put" "quit" "read" "rid" "ridden" "rung" "risen" "run" "sawn"
"said" "seen" "sought" "sold" "sent" "set" "sewn" "shaken" "shaven"
"shorn" "shed" "shone" "shod" "shot" "shown" "shrunk" "shut"
"sung" "sunk" "sat" "slept" "slain" "slid" "slung" "slit"
"smitten" "sown" "spoken" "sped" "spent" "spilt" "spun" "spit"
"split" "spread" "sprung" "stood" "stolen" "stuck" "stung"
"stunk" "stridden" "struck" "strung" "striven" "sworn" "swept"
"swollen" "swum" "swung" "taken" "taught" "torn" "told" "thought"
"thrived" "thrown" "thrust" "trodden" "understood" "upheld" "upset"
"woken" "worn" "woven" "wed" "wept" "wound" "won" "withheld"
"withstood" "wrung" "written")
"List of passive voice irregular verbs"
:group 'writegood
:type '(repeat string))
(defcustom writegood-passive-voice-irregulars-additional-regexp
nil
"Additional regexp for passive voice irregulars"
:group 'writegood
:type 'regexp)
(defcustom writegood-passive-voice-tooltip "Switch to active voice"
"Message to show for passive-voice text"
:group 'writegood
:type 'string)
(defun writegood-passive-voice-font-lock-keywords-regexp ()
"Generate font-lock keywords regexp for passive-voice"
(concat "\\b\\(am\\|are\\|were\\|being\\|is\\|been\\|was\\|be\\)\\b\\([[:space:]]\\|\\s<\\|\\s>\\)+\\([[:word:]]+ed\\|"
(regexp-opt writegood-passive-voice-irregulars)
(when writegood-passive-voice-irregulars-additional-regexp
(concat "\\)\\|\\(" writegood-passive-voice-irregulars-additional-regexp))
"\\)\\b"))
(defun writegood-passive-voice-font-lock-keywords ()
`((,(writegood-passive-voice-font-lock-keywords-regexp)
0 '(face writegood-passive-voice-face help-echo ,writegood-passive-voice-tooltip) prepend)))
;; Duplicates
(defface writegood-duplicates-face
'((((supports :underline (:style wave)))
:underline (:style wave :color "DeepPink"))
(((class color) (background light))
(:inherit font-lock-warning-face :background "MistyRose"))
(((class color) (background dark))
(:inherit font-lock-warning-face :background "DeepPink")))
"Writegood face for duplicate words"
:group 'writegood)
(defcustom writegood-duplicates-tooltip "Duplicates detected"
"Message to show for duplicated words"
:group 'writegood
:type 'string)
(defvar writegood-duplicates-font-lock-keywords-regexp
"\\b\\([[:word:]]+\\)\\([[:space:]]\\|\\s<\\|\\s>\\)+\\1\\b"
"Font-lock keywords for duplicates")
(defun writegood-duplicates-font-lock-keywords ()
`((,writegood-duplicates-font-lock-keywords-regexp
0 '(face writegood-duplicates-face help-echo ,writegood-duplicates-tooltip) prepend)))
;;;;;;;;;;;;;;;;;;;; Functions:
(defun writegood-version ()
"Tell the version you are using"
(interactive)
(message writegood-version))
(defun writegood-weasels-turn-on ()
"Turn on syntax highlighting for weasels"
(font-lock-add-keywords nil (writegood-weasels-font-lock-keywords) t))
(defun writegood-passive-voice-turn-on ()
"Turn on warnings for passive voice"
(font-lock-add-keywords nil (writegood-passive-voice-font-lock-keywords) t))
(defun writegood-duplicates-turn-on ()
"Turn on warnings for duplicate words"
(font-lock-add-keywords nil (writegood-duplicates-font-lock-keywords) t))
(defun writegood-weasels-turn-off ()
"Turn on syntax highlighting for weasels"
(font-lock-remove-keywords nil (writegood-weasels-font-lock-keywords)))
(defun writegood-passive-voice-turn-off ()
"Turn on warnings for passive voice"
(font-lock-remove-keywords nil (writegood-passive-voice-font-lock-keywords)))
(defun writegood-duplicates-turn-off ()
"Turn on warnings for duplicate words"
(font-lock-remove-keywords nil (writegood-duplicates-font-lock-keywords)))
(defun writegood-turn-on ()
"Turn on writegood-mode."
(make-local-variable 'font-lock-keywords-case-fold-search)
(setq font-lock-keywords-case-fold-search t)
(writegood-weasels-turn-on)
(writegood-passive-voice-turn-on)
(writegood-duplicates-turn-on))
(defun writegood-turn-off ()
"Turn off writegood-mode."
(writegood-weasels-turn-off)
(writegood-passive-voice-turn-off)
(writegood-duplicates-turn-off))
(defun writegood-count-words (rstart rend)
"Count the words specified by the region bounded by RSTART and REND."
(if (boundp 'count-words)
(count-words rstart rend)
(how-many "[[:word:]]+" rstart rend)))
(defun writegood-count-sentences (rstart rend)
"Count the sentences specified by the region bounded by RSTART and REND."
(how-many (regexp-opt-charset writegood-sentence-punctuation) rstart rend))
(defun writegood-count-syllables (rstart rend)
"Count the (approximate) number of syllables in the region bounded by RSTART and REND.
Consecutive vowels count as one syllable. The endings -es -ed
and -e are not counted as syllables.
"
(- (how-many "[aeiouy]+" rstart rend)
(how-many "\\(es\\|ed\\|e\\)\\b" rstart rend)))
(defun writegood-fk-parameters (&optional rstart rend)
"Flesch-Kincaid reading parameters"
(let* ((start (cond (rstart rstart)
((and transient-mark-mode mark-active) (region-beginning))
('t (point-min))))
(end (cond (rend rend)
((and transient-mark-mode mark-active) (region-end))
('t (point-max))))
(words (float (writegood-count-words start end)))
(syllables (float (writegood-count-syllables start end)))
(sentences (float (writegood-count-sentences start end))))
(list sentences words syllables)))
(defun writegood-reading-ease-score->comment (score)
"Rough interpreation of the Flesch-Kincaid Reading ease SCORE.
From Wikipedia URL `https://en.wikipedia.org/wiki/Flesch–Kincaid_readability_tests'."
(cond
((< score 0) "Ouch! (Proust literature)")
((and (<= 0 score) (< score 30.0)) "Very difficult (college graduate)")
((and (<= 30.0 score) (< score 50.0)) "Difficult (almost college)")
((and (<= 50.0 score) (< score 60.0)) "Fairly difficult (10-12th grade)")
((and (<= 60.0 score) (< score 70.0)) "Plain English (8-9th grade)")
((and (<= 70.0 score) (< score 80.0)) "Fairly easy (7th grade)")
((and (<= 80.0 score) (< score 90.0)) "Easy (6th grade)")
((<= 90.0 score) "Very easy (5th grade)")))
;;;###autoload
(defun writegood-reading-ease (&optional start end)
"Flesch-Kincaid reading ease test in the region bounded by START and END.
Scores roughly between 0 and 100."
(interactive)
(let* ((params (writegood-fk-parameters start end))
(sentences (nth 0 params))
(words (nth 1 params))
(syllables (nth 2 params))
(score (- 206.835 (* 1.015 (/ words sentences)) (* 84.6 (/ syllables words)))))
(message "Flesch-Kincaid reading ease score: %.2f %s" score
(writegood-reading-ease-score->comment score))))
;;;###autoload
(defun writegood-grade-level (&optional start end)
"Flesch-Kincaid grade level test. Converts reading ease score to a grade level (Score ~ years of school needed to read passage)."
(interactive)
(let* ((params (writegood-fk-parameters start end))
(sentences (nth 0 params))
(words (nth 1 params))
(syllables (nth 2 params))
(score (+ (* 0.39 (/ words sentences)) (* 11.8 (/ syllables words)) -15.59)))
(message "Flesch-Kincaid grade level score: %.2f" score)))
;;;###autoload
(define-minor-mode writegood-mode
"Colorize issues with the writing in the buffer."
:lighter " Wg"
(progn
(if writegood-mode
(writegood-turn-on)
(writegood-turn-off))
(font-lock-mode 1)))
(provide 'writegood-mode)
;;; writegood-mode.el ends here