diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-magit.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/km-magit.el b/lisp/km-magit.el index e96996c..91a6e6c 100644 --- a/lisp/km-magit.el +++ b/lisp/km-magit.el @@ -589,6 +589,12 @@ argument. Interactively, this can be accessed using the command (interactive "P") (km/magit-diff-visit-file prev-rev t)) +(defun km/git-commit-turn-on-flyspell () + "Like `git-commit-turn-on-flyspell', but don't check buffer initially." + (setq flyspell-generic-check-word-predicate + 'git-commit-flyspell-verify) + (turn-on-flyspell)) + ;;; Git Rebase mode |