projects
/
dotfiles-public.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24fb473
)
.emacs.d/site-lisp/wtk_common.el: Disable electric indent mode
author
W. Trevor King
<wking@tremily.us>
Sat, 14 Mar 2015 23:17:18 +0000
(16:17 -0700)
committer
W. Trevor King
<wking@tremily.us>
Sat, 14 Mar 2015 23:32:06 +0000
(16:32 -0700)
I'm disabling this so I can paste content into Emacs without it
injecting a lot of auto-indent whitespace [1,2]. I should be able to
remove this workaround once I get to Emacs 25 [1].
[1]: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=19093
[2]: https://www.gnu.org/software/emacs/manual/html_node/emacs/Indent-Convenience.html
src/.emacs.d/site-lisp/wtk_common.el
patch
|
blob
|
history
diff --git
a/src/.emacs.d/site-lisp/wtk_common.el
b/src/.emacs.d/site-lisp/wtk_common.el
index f0428878d93c63dc9a0476f0e5fcb05bfc9e1713..6ed1d54235d21b31fe263d248c46742289b7178c 100644
(file)
--- a/
src/.emacs.d/site-lisp/wtk_common.el
+++ b/
src/.emacs.d/site-lisp/wtk_common.el
@@
-15,3
+15,6
@@
; Disable the bell (\a, ^G) completely
(setq ring-bell-function 'ignore)
+
+; Disable electric indent mode
+(electric-indent-mode 0)