1. ctags란?
Ctags is a programming tool that generates an index (or tag) file of names found in source and header files of various programming languages.
소스 파일 분석시 함수, 변수 따라갈 때 사용
2. 설치 방법
[ubuntu] apt-get install ctags
3. 사용 방법
ctags -R ; 소스파일을 자동으로 분석해서 함수, 변수를 tags 파일에 저장
vi [소스파일]
Ctrl + ] or tj | 함수, 변수 선언된 위치로 이동 |
Ctrl + t or po | 이전 태그로 이동 |