diff options
| author | yuzu-eva <cafebabe@disroot.org> | 2025-04-08 14:36:44 +0200 |
|---|---|---|
| committer | yuzu-eva <cafebabe@disroot.org> | 2025-04-08 14:36:44 +0200 |
| commit | 7e684c959a58a8ff3596a7f99efc1be7245845d0 (patch) | |
| tree | be13815e688913cd10c76f515a3ed6faaaf30910 | |
| parent | c349299741fec230a3d9a7fc0ca84f16d38576e6 (diff) | |
added a func to create ctags
| -rw-r--r-- | config.org | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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= |
