diff options
author | Alan Pearce | 2014-07-27 16:55:43 +0100 |
---|---|---|
committer | Alan Pearce | 2014-07-27 16:55:43 +0100 |
commit | 7dd052f897b8cc1ef85c78a9570f6ba2cc82148e (patch) | |
tree | b89ef3e0a5ffa539a56bf86878a5066e19fd22b3 /tag-emacs | |
parent | 6c8782b1bbd6200a3dcde9219bf0330090dd8b3e (diff) | |
download | nixfiles-7dd052f897b8cc1ef85c78a9570f6ba2cc82148e.tar.lz nixfiles-7dd052f897b8cc1ef85c78a9570f6ba2cc82148e.tar.zst nixfiles-7dd052f897b8cc1ef85c78a9570f6ba2cc82148e.zip |
Emacs: Disable autopair in c-mode-common-hook
Superfluous with cedit
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index b447b565..89487b17 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -918,6 +918,7 @@ (autopair-mode -1)) (add-hook 'web-mode-hook #'autopair-off) (add-hook 'lisp-mode-common-hook #'autopair-off) + (add-hook 'c-mode-common-hook #'autopair-off) (setq autopair-blink nil autopair-skip-whitespace nil))) |