Skip to content

Instantly share code, notes, and snippets.

@micviklui
Created May 21, 2023 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save micviklui/e61b0dfa843b21827b436f2a1f0189d5 to your computer and use it in GitHub Desktop.
Save micviklui/e61b0dfa843b21827b436f2a1f0189d5 to your computer and use it in GitHub Desktop.
ctags
install universal-ctags
'''
sudo snap install universal-ctags
'''
run for multiple projects
'''
project$ universal-ctags --options=.ctags . ../dep-project1 ../dep-project2
'''
with config-file
'''
--exclude=dist
--exclude=build
--exclude='*egg-info'
--exclude='__pychache__'
--fields=+l
--languages=python
--python-kinds=-iv
-R
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment