mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Remove the gentags script as gutentags handles this now
This commit is contained in:
parent
addc418d9b
commit
025c067af5
1 changed files with 0 additions and 26 deletions
26
gentags
26
gentags
|
@ -1,26 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
tags_file="$HOME/.vim/tags"
|
||||
ctags_cmd="ctags --fields=+l --c-kinds=+p --c++-kinds=+p -R -f $tags_file"
|
||||
|
||||
function generate_tags() {
|
||||
printf '%s\n' 'Recursively generating tags for the following paths:'
|
||||
|
||||
for path in "$@"; do
|
||||
printf '%s\n' " $path"
|
||||
done
|
||||
|
||||
if $ctags_cmd "$@" >/dev/null 2>&1; then
|
||||
printf '%s\n' 'Done!'
|
||||
else
|
||||
printf '%s\n' 'Failed!'
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
if command -v ctags >/dev/null; then
|
||||
[[ -n "$1" ]] && generate_tags "$@" || generate_tags "$PWD"
|
||||
else
|
||||
printf '%s\n' 'Error: cannot find the ctags binary in $PATH'
|
||||
exit 1
|
||||
fi
|
Loading…
Reference in a new issue