Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
331 views
in Technique[技术] by (71.8m points)

Replacing 'i' with 'I' using Emacs ispell

I use ispell to do spell-checking, but it does not replace the word 'i' with 'I'.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

With the following code flyspell at least shows such misspellings. The list is to be extended.

(defvar flyspell-wrong-one-letters '("i"))

(defadvice flyspell-word (before one-letter activate)
  "Check one-letter words"
  (when (and
     (if following (looking-at "\<[[:alpha:]]\>")
       (looking-back "\<[[:alpha:]]\>"))
     (member (match-string 0) flyspell-wrong-one-letters))
    (setq known-misspelling t)))

I just looked into flyspell not into ispell yet. I know that this is not really a solution for you... Sorry.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...