How can I use DoctorJS with Emacs?

Viewed 663

Is there a way to use DoctorJS (apparently it used to be called jsctags) to generate a TAGS file for Emacs?

I've been looking around and it seems to always use the vi tags style, but I could be missing something very obvious.

3 Answers

It claims to be compatible with ctags, in which case it hopefully accepts the same -e command-line option that tells ctags to run in etags mode, to generate TAGS for Emacs.

jsctags -h should display the available options, according to the github readme file.

Related