diff options
Diffstat (limited to 'modules/custom-functions.el')
| -rw-r--r-- | modules/custom-functions.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/custom-functions.el b/modules/custom-functions.el index a36dfe80..68c2270f 100644 --- a/modules/custom-functions.el +++ b/modules/custom-functions.el @@ -542,7 +542,12 @@ Uses `sortable-time-format' for the formatting the date/time." ;; ------------------------------ Personal Keymap ------------------------------ ;; a keymap to use the above functions. prefix key: "C-;" + +;; Unset Flyspell's greedy keybinding C-; so it can be used for personal-keymap (global-unset-key (kbd "C-;")) +(eval-after-load "flyspell" + '(define-key flyspell-mode-map (kbd "C-;") nil)) + (defvar personal-keymap (let ((map (make-sparse-keymap))) ;; un/arrayify |
