From 7e684c959a58a8ff3596a7f99efc1be7245845d0 Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Tue, 8 Apr 2025 14:36:44 +0200 Subject: added a func to create ctags --- config.org | 11 +++++++++++ 1 file changed, 11 insertions(+) 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= -- cgit v1.2.3