File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -636,6 +636,18 @@ and jump to the corresponding one."
636
636
(when ov
637
637
(goto-char (overlay-start ov))))))))
638
638
639
+ (defun evil-ispell-mark-word-as-good (word )
640
+ " Add WORD under the cursor as a good word to the Ispell dictionary."
641
+ (interactive (list (thing-at-point 'word )))
642
+ (ispell-send-string (concat " *" word " \n " ))
643
+ ; ; dictionary modified!
644
+ (setq ispell-pdict-modified-p '(t ))
645
+ (ispell-pdict-save ispell-silently-savep)
646
+ (when-let ((flyspell-mode )
647
+ (start (car (bounds-of-thing-at-point 'word ))))
648
+ (flyspell-unhighlight-at start))
649
+ (message " Word '%s ' added to dictionary " (upcase word)))
650
+
639
651
(evil-define-motion evil-next-flyspell-error (count )
640
652
" Go to the COUNT'th spelling mistake after point."
641
653
(interactive " p" )
Original file line number Diff line number Diff line change 82
82
(define-key evil-normal-state-map " za" 'evil-toggle-fold )
83
83
(define-key evil-normal-state-map " zr" 'evil-open-folds )
84
84
(define-key evil-normal-state-map " zm" 'evil-close-folds )
85
+ (define-key evil-normal-state-map " zg" 'evil-ispell-mark-word-as-good )
85
86
(define-key evil-normal-state-map " z=" 'ispell-word )
86
87
(define-key evil-normal-state-map " \C -n" 'evil-paste-pop-next )
87
88
(define-key evil-normal-state-map " \C -p" 'evil-paste-pop )
You can’t perform that action at this time.
0 commit comments