0

我无法编译 ctags(没有 borland builder 和 mVS),所以我使用 zip 文件中包含的二进制文件。问题是它无法识别“进程”,并且在我的标签列表中没有来自 .vhd 文件的“进程”。我听说您可以通过更改 .ctags 配置文件来修复它,但我不知道该文件在 Windows 上的位置。

提前致谢

4

1 回答 1

2

从 ctag 5.8 帮助文件:

FILES
  /ctags.cnf (on MSDOS, MSWindows only) 
  /etc/ctags.conf 
  /usr/local/etc/ctags.conf 
  $HOME/.ctags 
  $HOME/ctags.cnf (on MSDOS, MSWindows only) 
  .ctags 
  ctags.cnf (on MSDOS, MSWindows only)

If any of these configuration files exist, each will be expected to contain
a set of default options which are read in the order listed when ctags starts,
but before the CTAGS environment variable is read or any command line options
are read. (...)

ctags.conf因此,在您的C:/users/USER/目录中创建一个应该可以工作。

您可以运行ctags --list-languages以显示所有受支持语言的列表并检查VHDL是否确实在列表中。

于 2013-06-24T15:03:45.473 回答