Showing posts with label ctags. Show all posts
Showing posts with label ctags. Show all posts

ctags with CUDA files

Wednesday, November 10, 2010

To get ctags to properly tag functions in your *.cu files, run ctags as below (--exclude is to exclude the .pc directory generated by quilt):

 ctags  --langmap=c:+.cu --exclude=".pc" --recurse 

Read more...