docs: fix missing ]
in wrap hl -marker switch docstring
Also add the related changelog entry
This commit is contained in:
parent
ffdeab8aba
commit
b60ed6ca53
|
@ -11,6 +11,8 @@ released versions.
|
||||||
* The search prompt uses buffer word completion so that fuzzy completion
|
* The search prompt uses buffer word completion so that fuzzy completion
|
||||||
can be used to quickly search for a buffer word.
|
can be used to quickly search for a buffer word.
|
||||||
|
|
||||||
|
* The `wrap` highlighter can accept a new `-marker <marker_text>` switch.
|
||||||
|
|
||||||
== Kakoune 2018.04.13
|
== Kakoune 2018.04.13
|
||||||
|
|
||||||
First official Kakoune release.
|
First official Kakoune release.
|
||||||
|
|
|
@ -2096,7 +2096,7 @@ void register_highlighters()
|
||||||
registry.insert({
|
registry.insert({
|
||||||
"wrap",
|
"wrap",
|
||||||
{ WrapHighlighter::create,
|
{ WrapHighlighter::create,
|
||||||
"Parameters: [-word] [-indent] [-width <max_width>] [-marker <marker_text>\n"
|
"Parameters: [-word] [-indent] [-width <max_width>] [-marker <marker_text>]\n"
|
||||||
"Wrap lines to window width, or max_width if given and window is wider,\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\n"
|
"wrap at word boundaries instead of codepoint boundaries if -word is given\n"
|
||||||
"insert marker_text at start of wrapped lines if given\n"
|
"insert marker_text at start of wrapped lines if given\n"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user