Currently I'm using this command to generate ctags:
ctags -R --languages=ruby,javascript --exclude=.git --exclude=log . $(bundle list --paths)
This works for Ruby, but not for the JavaScript. How can I fix that, so that JavaScript code will be in ctags too?
Adding
--tag-relative
and--sort=yes
fixed the problem.