summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.org11
1 files changed, 11 insertions, 0 deletions
diff --git a/config.org b/config.org
index d2d0124..56dfc5e 100644
--- a/config.org
+++ b/config.org
@@ -497,6 +497,17 @@ Inserts a newline above or below, like O and o in vim
(add-hook 'compilation-filter-hook 'colorize-compilation-buffer)
#+end_src
+** Create TAGS
+
+#+begin_src emacs-lisp
+ (defun create-tags (dir-name)
+ "Create TAGS file."
+ (interactive "DDirectory")
+ (cd dir-name)
+ (shell-command "ctags -e -R *")
+ )
+#+end_src
+
* Use-Package section
** Initialize =diminish=