Merge remote-tracking branch 'Delapouite/select'

This commit is contained in:
Maxime Coste 2017-09-27 11:00:27 +08:00
commit 11c2d6825b
2 changed files with 5 additions and 3 deletions

View File

@ -798,7 +798,7 @@ Some of Kakoune state is available through environment variables:
the selection contents are escaped with a backslash.
* `kak_selection_desc`: range of the main selection, represented as `anchor,cursor`;
anchor and cursor are in this format: `line.column`
* `kak_selections_desc`: range of the selecations separated by colons
* `kak_selections_desc`: range of the selections separated by colons
* `kak_bufname`: name of the current buffer
* `kak_buffile`: full path of the file or same as `kak_bufname` when
there's no associated file

View File

@ -1989,7 +1989,7 @@ const CommandDesc set_face_cmd = {
"attributes is a combination of:\n"
" u: underline, i: italic, b: bold, r: reverse,\n"
" B: blink, d: dim, e: exclusive\n"
"facespec can as well just be the name of another face" ,
"facespec can as well just be the name of another face",
ParameterDesc{{}, ParameterDesc::Flags::None, 2, 2},
CommandFlags::None,
CommandHelper{},
@ -2037,7 +2037,9 @@ const CommandDesc set_register_cmd = {
const CommandDesc select_cmd = {
"select",
nullptr,
"select <selections_desc>: select given selections",
"select <selections_desc>: select given selections\n"
"\n"
"selections_desc format is <anchor_line>.<anchor_column>,<cursor_line>.<cursor_column>:...",
single_param,
CommandFlags::None,
CommandHelper{},