Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コンパイルされたコードがあります。「usr/bin/ctags -R *」を使用してタグを生成しようとすると、すべての c、h、オブジェクト ファイルなどが含まれます。そのため、多くの時間とメモリが必要になります。c/h ファイルのみにタグを生成する方法を教えてください。
--languages パラメータを使用します。
ctags --languages=C
「man ctags」を試して、オプションを読みます。
または、次のようなシェル マジックを使用できます。
ctags `find . -name "*.[ch]" -print`
またはそのようなもの