So I think I know how to define a new language and add it as a shared sub-parser for shell script files. Add to ~/.ctags.d/myLang.ctags
:
--langdef=myLang{base=Sh}{shared}
--langmap=myLang:+.myext
--regex-myLang=...
# ctags --list-subparsers=Sh
#NAME BASEPARSER DIRECTIONS
Bats Sh base <= sub {dedicated}
MyLang Sh base => sub {shared}
How can I also add the awk parser to the Sh language so that ctags --list-subparsers=Sh
would produce the following output:
# ctags --list-subparsers=Sh
#NAME BASEPARSER DIRECTIONS
Awk Sh base => sub {shared}
Bats Sh base <= sub {dedicated}
MyLang Sh base => sub {shared}
In other words, I want to scan shell script files for the combined matches of the Sh, Awk and myLang patterns at once. Is this possible, and can it be specified entirely with files in ~/.ctags.d/
?
I didn't try --langdef=Awk
etc. as for the fictitious myLang example because Awk is a builtin parser.
It seems 'subparser' is unsuitable for your goal. 'subparser' is for specialization. 'guest parser' may fit your goal.
/tmp/foo.ctags:
input.myext
Run:
In this example, I run C, Lisp, and Sh parsers as guests hosted by myLang parser. However, you can change them as you want. If your version works fine, you can put them to ~/.ctags.d/mylang.ctags.