diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-04-27 18:25:55 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-05-01 00:18:49 +0200 |
commit | c11e6181330e9e27ec8af1712f505b38a00d8ca3 (patch) | |
tree | 02d3ccdecacaea5046de2367d07e46bced76c3b3 /runtime/doc/api.txt | |
parent | afd947e0c3b34a0dc36140a373af46aa31d8f1ab (diff) | |
download | rneovim-c11e6181330e9e27ec8af1712f505b38a00d8ca3.tar.gz rneovim-c11e6181330e9e27ec8af1712f505b38a00d8ca3.tar.bz2 rneovim-c11e6181330e9e27ec8af1712f505b38a00d8ca3.zip |
gen_vimdoc.py: support <pre> preformatted text [ci skip]
Diffstat (limited to 'runtime/doc/api.txt')
-rw-r--r-- | runtime/doc/api.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index 44dc3a2011..fb4818bc2f 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -766,8 +766,10 @@ nvim_get_color_by_name({name}) *nvim_get_color_by_name()* Returns the 24-bit RGB value of a |nvim_get_color_map()| color name or "#rrggbb" hexadecimal string. - Examples::echo nvim_get_color_by_name("Pink") :echo - nvim_get_color_by_name("#cbcbcb") + Examples: > + :echo nvim_get_color_by_name("Pink") + :echo nvim_get_color_by_name("#cbcbcb") +< Parameters: ~ {name} Color name or "#rrggbb" string |