I am working on a Bash script that is designed to be run as a tool, so it has a name without extension and the line #!/usr/bin/bash at the top.
My script has a number of functions, so it would be nice if I could use Vim tag support to go through the code, but I can not get ctags to mark the file. ctags mytool creates a tag file that is empty, with the exception of the comment section at the top.
If I rename my file to mytool.sh, ctags mytool.sh works fine.
Is there a way to get ctags to mark a file without an extension? I tried a number of options that I found in ctags manual , which seem to apply to file extensions, but without joy.
source share