emacs에서 tag파일 생성시 유용한 방법 알고 싶습니다.

osr의 이미지

c:\a\test.cpp에서 c:\mingw\include\... 에 잇는 라이브러리 함수를 바로 찾고 싶은데 어떻게들 하시는지 궁금합니다.

ptmono의 이미지

'etags' 로 검색을 해 보시기 바랍니다.

kldp에서도 검색되는 군요

--> [[http://wiki.kldp.org/wiki.php/EmacsGdbEtagsCscope][Emacs Gdb Etags Cscope]]

이맥스 매뉴얼에도 있군요.

--> C-h i m emacs m Tags

저는 다음의 명령들이 태그를 만드는데 유용하였습니다.

$ find . -name "*.[chCH]" -print | xargs etags -a -o ~/TAGS

$ find . -name *.[chCH] | etags -o ~/TAGS -i *.[chCH] -

$ find . -name "*.[chCH]" -print | etags -

------------------------------------------
FC5, KDE, emacs
http://www.linuxquestions.org/
http://www.fedoraforum.org/
http://stanton-finley.net/fedora_core_5_installation_notes.html

Google also has Google Group search.

------------------------------------------
emacs user

osr의 이미지

원하던 답변은 아니었지만 도움되었습니다~ 감사합니다~