1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-15 18:15:53 +03:00

Add informations on -indent in wrap highlighter docstring

This commit is contained in:
Maxime Coste 2017-11-02 11:04:15 +08:00
parent 4fabba3d12
commit fd95af0e3e

View File

@ -2065,9 +2065,10 @@ void register_highlighters()
registry.insert({
"wrap",
{ WrapHighlighter::create,
"Parameters: [-word] [-width <max_width>]\n"
"Parameters: [-word] [-indent] [-width <max_width>]\n"
"Wrap lines to window width, or max_width if given and window is wider,\n"
"wrap at word boundaries instead of codepoint boundaries if -word is given" } });
"wrap at word boundaries instead of codepoint boundaries if -word is given\n"
"preserve line indent in wrapped parts if -indent is given\n"} });
registry.insert({
"ref",
{ ReferenceHighlighter::create,