summaryrefslogtreecommitdiff
path: root/Biz/Bild/ShellHook.sh
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2020-12-28 20:20:13 -0500
committerBen Sima <ben@bsima.me>2020-12-28 20:20:13 -0500
commit5b6c9313d0e766899eb3f3ce634e3fdaf6d68245 (patch)
tree1be27742f079801728566882df0f8fb65fda16c0 /Biz/Bild/ShellHook.sh
parent13148a011bbfc96042fbe3965d9dc2bd93a9a047 (diff)
ide: add ftags script
Diffstat (limited to 'Biz/Bild/ShellHook.sh')
-rw-r--r--Biz/Bild/ShellHook.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/Biz/Bild/ShellHook.sh b/Biz/Bild/ShellHook.sh
index 7b43d26..7724c28 100644
--- a/Biz/Bild/ShellHook.sh
+++ b/Biz/Bild/ShellHook.sh
@@ -124,18 +124,3 @@ function ci() {
}
help
-
-# ftags - search ctags
-ftags() {
- local line
- if [[ -e tags ]]
- then
- 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
-}