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 /src | |
| 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 'src')
| -rw-r--r-- | src/nvim/api/vim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index d5e4df829c..9e59eca396 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -1201,7 +1201,7 @@ void nvim_unsubscribe(uint64_t channel_id, String event) /// Returns the 24-bit RGB value of a |nvim_get_color_map()| color name or /// "#rrggbb" hexadecimal string. /// -/// Examples: +/// Example: /// <pre> /// :echo nvim_get_color_by_name("Pink") /// :echo nvim_get_color_by_name("#cbcbcb") |