emacs.d

My emacs configuration, done in a literate programming fashion using org-mode

git clone git://git.shimmy1996.com/emacs.d.git
commit 48f4a5f1309c4277341bc6151f5b4dcbb53ad47f
parent 2f9688f8d421cd0294059ee082331c30e8ff4ef6
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Thu, 21 Jun 2018 18:44:17 -0500

Correct keybinding for tab to avoid conflict with minor mode keymaps.

Diffstat:
MREADME.org | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.org b/README.org
@@ -493,7 +493,7 @@ the only fix that I found that makes everything work as expected.
               (company-complete-common)
             (indent-for-tab-command)))))
 
-  (global-set-key [tab] 'user/tab-indent-or-complete)
+  (global-set-key (kbd "TAB") 'user/tab-indent-or-complete)
 #+END_SRC
 
 *** Tooltip Documentation