diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-09-09 14:42:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-09 14:42:20 -0700 |
commit | 0809533b88899b11516461d0c9997b917a153135 (patch) | |
tree | bb72a1afa35e69dd93011c3826ab6c39e52ff535 /scripts/gen_vimdoc.py | |
parent | 853683e72a780afef3ecebd8d46e32983abe1798 (diff) | |
parent | e5d5fc0857935b4f67058a6a2dcfbc573331e3f6 (diff) | |
download | rneovim-0809533b88899b11516461d0c9997b917a153135.tar.gz rneovim-0809533b88899b11516461d0c9997b917a153135.tar.bz2 rneovim-0809533b88899b11516461d0c9997b917a153135.zip |
Merge #10546 'doc'
Diffstat (limited to 'scripts/gen_vimdoc.py')
-rwxr-xr-x | scripts/gen_vimdoc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py index edfb38e617..373a58d11e 100755 --- a/scripts/gen_vimdoc.py +++ b/scripts/gen_vimdoc.py @@ -113,7 +113,7 @@ param_exclude = ( # Annotations are displayed as line items after API function descriptions. annotation_map = { - 'FUNC_API_ASYNC': '{async}', + 'FUNC_API_FAST': '{fast}', } @@ -485,7 +485,7 @@ def parse_source_xml(filename, mode): # XXX: (doxygen 1.8.11) 'argsstring' only includes attributes of # non-void functions. Special-case void functions here. if name == 'nvim_get_mode' and len(annotations) == 0: - annotations += 'FUNC_API_ASYNC' + annotations += 'FUNC_API_FAST' annotations = filter(None, map(lambda x: annotation_map.get(x), annotations.split())) |