diff options
author | Alan Pearce | 2015-07-08 14:28:13 +0200 |
---|---|---|
committer | Alan Pearce | 2015-07-08 14:28:13 +0200 |
commit | b043a43951bdf78ab5bd0fd866ead33ca73ad711 (patch) | |
tree | 69017aca92217be58f1f3660d779eb31a6d4129f /tag-emacs/emacs.d/init.el | |
parent | 390c49918d250d87b61f4d9dd9d7d48c9b3871af (diff) | |
download | nixfiles-b043a43951bdf78ab5bd0fd866ead33ca73ad711.tar.lz nixfiles-b043a43951bdf78ab5bd0fd866ead33ca73ad711.tar.zst nixfiles-b043a43951bdf78ab5bd0fd866ead33ca73ad711.zip |
Replace typo-mode with typopunct-mode
Typopunct-mode works better with multiple-cursors.
Diffstat (limited to 'tag-emacs/emacs.d/init.el')
-rw-r--r-- | tag-emacs/emacs.d/init.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index ba682367..da0786ed 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -1171,10 +1171,10 @@ symbol, not word, as I need this for programming the most." :bind (("M-z" . zap-up-to-char) ("M-Z" . zap-to-char))) -(req-package typo +(req-package typopunct :init (progn - (typo-global-mode t) - (add-hook 'text-mode-hook 'typo-mode))) + (typopunct-change-language 'english t) + (add-hook 'text-mode-hook #'typopunct-mode))) (req-package ap-functions :commands (ap/remove-extra-cr) |