Created
October 11, 2015 20:07
-
-
Save greghendershott/ea73e9c3e4a6be49e56f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun chandler/buffer-local-tab-complete () | |
"Make `tab-always-indent' a buffer-local variable and set it to 'complete." | |
(make-local-variable 'tab-always-indent) | |
(setq tab-always-indent 'complete)) | |
(add-hook 'racket-mode #'chandler/buffer-local-tab-complete) | |
(add-hook 'racket-repl-mode #'chandler/buffer-local-tab-complete) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment