Skip to content

Instantly share code, notes, and snippets.

@javiermon
Last active December 17, 2015 04:49
Show Gist options
  • Save javiermon/5553147 to your computer and use it in GitHub Desktop.
Save javiermon/5553147 to your computer and use it in GitHub Desktop.
create emacs TAGS file for a C codebase
#!/bin/bash
# etags from emacs:
find . -name "*.[chCH]" -print | etags -
# exuberant ctags
# ctags -Re
# cscope
# cscope-indexer -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment