Skip to content

Instantly share code, notes, and snippets.

@NDari
Created May 24, 2021 15:35
Show Gist options
  • Select an option

  • Save NDari/609d09dd3f3c7fcaa6cdf5c4ed43071b to your computer and use it in GitHub Desktop.

Select an option

Save NDari/609d09dd3f3c7fcaa6cdf5c4ed43071b to your computer and use it in GitHub Desktop.
Create tags for a ruby project using ctags
# from https://www.boost.co.nz/blog/2018/01/improving-ruby-rails-debugging-ctags
ctags -R \
--output-format=json \
--languages=ruby \
--exclude=.git \
--exclude=log \
. $(bundle list --paths) \
&& mv tags .tags # f .tags errors out for some reason for my setup.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment