From 175afd91c9cf63a7cadb154c0ad00ea348b1637b Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Mon, 13 Jul 2020 13:29:37 +0200 Subject: [PATCH] minor cleanup --- init.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 868e788..e7a65f8 100644 --- a/init.el +++ b/init.el @@ -74,9 +74,12 @@ ;;helper functions to switch tab expansion on and off (defun tabs-yay () + "Function to enable tab indentation in buffer." ;;(local-set-key (kbd "TAB") 'tab-to-tab-stop) (setq indent-tabs-mode t)) -(defun tabs-nay () (setq indent-tabs-mode nil)) +(defun tabs-nay () + "Function to enable space indentation in buffer." + (setq indent-tabs-mode nil)) ;; wasteland of hooks regarding tabs behavior Remember how it "Just ;; worked"™ in vim? That's what you pay with for org mode