projects
/
~bandali
/
configs
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
29ea943
)
emacs: add comment macro
author
Amin Bandali
<bandali@gnu.org>
Fri, 10 May 2019 04:25:12 +0000
(
00:25
-0400)
committer
Amin Bandali
<bandali@gnu.org>
Fri, 10 May 2019 04:25:12 +0000
(
00:25
-0400)
.emacs.d/init.el
patch
|
blob
|
blame
|
history
diff --git
a/.emacs.d/init.el
b/.emacs.d/init.el
index
b07c683
..
c7eac7e
100644
(file)
--- a/
.emacs.d/init.el
+++ b/
.emacs.d/init.el
@@
-113,6
+113,12
@@
(setq use-package-always-defer t)
(require 'bind-key)
+;; comment macro, useful for commenting out multiple sexps at a time
+(defmacro comment (&rest _)
+ "Comment out one or more s-expressions."
+ (declare (indent defun))
+ nil)
+
(use-package no-littering
:demand t
:config