新しくインストールした OracleSolaris には、base-developer-utilities
パッケージからの ctags があります。再帰をサポートしていないため、次のようにタグを生成します。
% cd my_sources; rm -f tags; touch tags
% find . -name '*.c' -o -name '*.h' -exec ctags -v -u {} \;
タグは生成されますが、何らかの理由で vim がそれを理解できませset tags
んE426: tag not found
。
タグはタグファイルにあります。
何が間違っている可能性があるのか 、誰にも手がかりがありますか?ありがとう。