From ed9e69bc068749dd3c8cb3a1a1e7378b82174395 Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Tue, 26 May 2026 00:04:41 +0200 Subject: [PATCH] make tag recepie that only builds local tags --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index fcd79c6..bc9c130 100644 --- a/justfile +++ b/justfile @@ -35,5 +35,8 @@ DEPENDENCY_HEADERS := if os() == "macos" { } tag: + ctags --languages=c --langmap=c:.c.h -R . + +tag-all: echo "Making tags from project and headers in {{DEPENDENCY_HEADERS}}" ctags --languages=c --langmap=c:.c.h -R {{DEPENDENCY_HEADERS}} .