From 5b6c9313d0e766899eb3f3ce634e3fdaf6d68245 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Mon, 28 Dec 2020 20:20:13 -0500 Subject: ide: add ftags script --- Biz/Ide/ftags.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 Biz/Ide/ftags.sh (limited to 'Biz/Ide') diff --git a/Biz/Ide/ftags.sh b/Biz/Ide/ftags.sh new file mode 100755 index 0000000..daa4ca0 --- /dev/null +++ b/Biz/Ide/ftags.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash +# ftags - search ctags +set -euo pipefail +tags=$BIZ_ROOT/tags +if [[ ! -e $tags ]] +then + fast-tags -R $BIZ_ROOT +else + line=$( + awk 'BEGIN { FS="\t" } !/^!/ {print toupper($4)"\t"$1"\t"$2"\t"$3}' $tags \ + | cut -c1-80 \ + | fzf --nth=1,2 + ) + ${EDITOR:-vim} \ + $(cut -f3 <<< "$line") \ + -c "set nocst" \ + -c "silent tag $(cut -f2 <<< "$line")" +fi -- cgit v1.2.3