私は自分の Python コードのドキュメントを生成するためにdoxygenを使い始めました。フィルターを使用doxypy
して、Python docstring を前処理します。私の目標は、Python で doxygen コメントの構文をうまく強調表示することです。
メインページを専用の.doxファイルに書き込んでいるときに、次のコマンドを使用して doxygen コメントをvimで強調表示できることがわかりました。
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
"""
誰かがすでにこの問題を修正していますか? ご協力ありがとう御座います!