我开始使用doxygen来生成我的 Python 代码的文档。我使用doxypy
过滤器来预处理 Python 文档字符串。我的目标是在 Python 中突出显示 doxygen 注释的语法。
在专门的.dox文件中编写我的主页时,我发现可以使用以下命令在vim中突出显示 doxygen 注释:
set syntax=c.doxygen
我为 Python 尝试了相同的命令,但我什么也没得到: set syntax=python.doxygen
我也做了一些谷歌搜索,找不到任何有趣的东西
这是我想强调的典型代码:
class CompilationTab:
"""
The compilation tab of the verif GUI. It contains the layout description
and the functions required to deal with specific behaviors of the tab
"""
def __init__(self, notebook, tab_name):
"""
The class constructor.
@param notebook Notebook: The parent @c Notebook widget
@param tab_name String: The display name of the tab
"""
有人已经解决了这个问题吗?谢谢你的帮助!