diff options
author | Case Duckworth | 2021-05-22 16:43:23 -0500 |
---|---|---|
committer | Case Duckworth | 2021-05-22 16:43:23 -0500 |
commit | f784434f39378ca29a272bf6435db566ded69f68 (patch) | |
tree | d9ff67acc5c2761a346705ea37528e5feb5047d5 | |
parent | Sort options (diff) | |
download | emacs-f784434f39378ca29a272bf6435db566ded69f68.tar.gz emacs-f784434f39378ca29a272bf6435db566ded69f68.zip |
Add keybind for `flyspell-start'
I'm kind of rethinking my whole 'leader' key stuff. Like, maybe C-z should be the leader for "application"-type things, but C-c chould be the leader for other stuff (since that's the predefined leader for user configuration stuff).
-rw-r--r-- | init.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/init.el b/init.el index 6cc46ec..a8b0213 100644 --- a/init.el +++ b/init.el | |||
@@ -350,6 +350,8 @@ | |||
350 | (flyspell-prog-mode)) | 350 | (flyspell-prog-mode)) |
351 | ((not dont-warn-when-unknown-mode) ; god this is ugly | 351 | ((not dont-warn-when-unknown-mode) ; god this is ugly |
352 | (message "Non-text or -prog mode. Run `flyspell-mode'.")))) | 352 | (message "Non-text or -prog mode. Run `flyspell-mode'.")))) |
353 | |||
354 | (:global "C-c s" flyspell-start) | ||
353 | 355 | ||
354 | (when (acdw/system :home) | 356 | (when (acdw/system :home) |
355 | (flyspell-start t)) | 357 | (flyspell-start t)) |