summaryrefslogtreecommitdiffstats
path: root/lisp/init-flyspell.el
diff options
context:
space:
mode:
authorMartin Polden <martin.polden@gmail.com>2017-05-27 14:30:19 +0200
committerMartin Polden <martin.polden@gmail.com>2017-05-27 14:30:19 +0200
commite4691fa15b279d4f74bca9a262be127f6cc48648 (patch)
treeca7ce1cb64c6718ff1b740d5e61b59ddd56c2ceb /lisp/init-flyspell.el
parent00cc7627537cabefc86dd26307d94c5d8d283d73 (diff)
C-c c corrects word before point
Diffstat (limited to 'lisp/init-flyspell.el')
-rw-r--r--lisp/init-flyspell.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/init-flyspell.el b/lisp/init-flyspell.el
index 38db07e..635db64 100644
--- a/lisp/init-flyspell.el
+++ b/lisp/init-flyspell.el
@@ -1,5 +1,7 @@
(use-package flyspell
;; package is bundled with emacs
- :ensure nil)
+ :ensure nil
+
+ :bind ("C-c c" . flyspell-correct-word-before-point))
(provide 'init-flyspell)