aboutsummaryrefslogtreecommitdiff
path: root/scripts/gen_vimdoc.py
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-05-25 10:00:41 +0200
committerGitHub <noreply@github.com>2019-05-25 10:00:41 +0200
commit4769deb36a54c3b2a4a2d2addb2937c1aa7dd629 (patch)
tree29a0ef85f770541ac829acbd6b51e4413a987b49 /scripts/gen_vimdoc.py
parentd51f132cb150a5adeac9e40ec7409040f32d880e (diff)
downloadrneovim-4769deb36a54c3b2a4a2d2addb2937c1aa7dd629.tar.gz
rneovim-4769deb36a54c3b2a4a2d2addb2937c1aa7dd629.tar.bz2
rneovim-4769deb36a54c3b2a4a2d2addb2937c1aa7dd629.zip
doc #10017
- gen_vimdoc.py: fancy "bullet" - rework `:help channel-callback` - rename `:help buffered` to `:help channel-buffered`
Diffstat (limited to 'scripts/gen_vimdoc.py')
-rwxr-xr-xscripts/gen_vimdoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py
index e491ff59b0..8db5d4de5b 100755
--- a/scripts/gen_vimdoc.py
+++ b/scripts/gen_vimdoc.py
@@ -325,7 +325,7 @@ def render_node(n, text, prefix='', indent='', width=62):
text = doc_wrap(text, indent=indent, width=width)
elif n.nodeName == 'itemizedlist':
for c in n.childNodes:
- text += '{}\n'.format(render_node(c, text, prefix='- ',
+ text += '{}\n'.format(render_node(c, text, prefix='• ',
indent=indent, width=width))
elif n.nodeName == 'orderedlist':
i = 1