Skip to content

SysTutorials

  • Tutorials
  • Linux
  • Linux Manuals
  • Systems
  • Programming
  • Software
  • Subscribe
  • Search
SysTutorials

ctags

QA

How to make ctags recognize specific files with certain extensions as C source files?

ByEric Ma Mar 24, 2018Mar 24, 2018

How to make ctags recognize specific files with certain extensions such as .c0 or .puc as C source files? You may add this line to your ~/.ctags: –langmap=c:+.c0,c:+.puc

Read More How to make ctags recognize specific files with certain extensions as C source files?Continue

QA

Generating TAGS file for Emacs recursively?

ByEric Ma Mar 24, 2018Mar 24, 2018

How to generating TAGS file for Emacs recursively? etags seems not support recursively generating TAGS file. I use ctags instead. It can also generate TAGS file for Emacs with the -e option: ctags -e -R . You can also use etags with find: find ./ -print | xargs etags But I prefer the ctags way.

Read More Generating TAGS file for Emacs recursively?Continue

© 2025 SysTutorials

  • Tutorials
  • Linux
  • Linux Manuals
  • Systems
  • Programming
  • Software
  • Subscribe
  • Search