diff options
author | Tommy Allen <tommy@esdf.io> | 2017-03-01 11:55:34 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-03-01 17:55:34 +0100 |
commit | 4e4c7850635dfa3218f2461b50a0b2b2c84d7242 (patch) | |
tree | 71014e67f84b7c4dde981df2ad0066258d936c87 /scripts/gen_api_vimdoc.py | |
parent | 504693ce66e61e2976b0af2930177a07bafbe6f3 (diff) | |
download | rneovim-4e4c7850635dfa3218f2461b50a0b2b2c84d7242.tar.gz rneovim-4e4c7850635dfa3218f2461b50a0b2b2c84d7242.tar.bz2 rneovim-4e4c7850635dfa3218f2461b50a0b2b2c84d7242.zip |
scripts: Annotate API functions in generated docs (#6199)
Diffstat (limited to 'scripts/gen_api_vimdoc.py')
-rw-r--r-- | scripts/gen_api_vimdoc.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/scripts/gen_api_vimdoc.py b/scripts/gen_api_vimdoc.py index d7165187f4..bd9da07c1a 100644 --- a/scripts/gen_api_vimdoc.py +++ b/scripts/gen_api_vimdoc.py @@ -63,6 +63,11 @@ param_exclude = ( 'channel_id', ) +# Annotations are displayed as line items after API function descriptions. +annotation_map = { + 'FUNC_API_ASYNC': '{async}', +} + text_width = 78 script_path = os.path.abspath(__file__) base_dir = os.path.dirname(os.path.dirname(script_path)) @@ -278,6 +283,12 @@ def parse_source_xml(filename): parts = return_type.strip('_').split('_') return_type = '%s(%s)' % (parts[0], ', '.join(parts[1:])) + annotations = get_text(get_child(member, 'argsstring')) + if annotations and ')' in annotations: + annotations = annotations.rsplit(')', 1)[-1].strip() + annotations = filter(None, map(lambda x: annotation_map.get(x), + annotations.split())) + name = get_text(get_child(member, 'name')) vimtag = '*%s()*' % name @@ -336,6 +347,16 @@ def parse_source_xml(filename): if not doc: doc = 'TODO: Documentation' + annotations = '\n'.join(annotations) + if annotations: + annotations = ('\n\nAttributes:~\n' + + textwrap.indent(annotations, ' ')) + i = doc.rfind('Parameters:~') + if i == -1: + doc += annotations + else: + doc = doc[:i] + annotations + '\n\n' + doc[i:] + if 'INCLUDE_C_DECL' in os.environ: doc += '\n\nC Declaration:~\n>\n' doc += c_decl |