I have two Ctags commands that work great.
This first one builds tags for my current gemset of my rails project
ctags -R \`bundle show rails` /../*
and the second one that generates ctags for the actual working directory of my rails project
ctags --extra=+f -R *<CR><CR>
However, when I run each, it overwrites the current tag file, so I can not use ctags for both my gemset and my current directory.
Can someone show me how I can get these two commands to merge and create one tag file with all ctags?
source
share