[commandline] Change "--selection" to "--current-selection"

Plus documentation.

Work towards #4255.
This commit is contained in:
Fabian Homborg 2018-05-05 21:41:03 +02:00
parent f533189a28
commit 1a1ee352ff
2 changed files with 5 additions and 3 deletions

View File

@ -35,7 +35,9 @@ The following options change what part of the commandline is printed or updated:
- `-p` or `--current-process` select the current process
- `-t` or `--current-token` select the current token.
- `-s` or `--current-selection` selects the current selection
- `-t` or `--current-token` select the current token
The following options change the way `commandline` prints the current commandline buffer:

View File

@ -213,10 +213,11 @@ int builtin_commandline(parser_t &parser, io_streams_t &streams, wchar_t **argv)
static const struct woption long_options[] = {{L"append", no_argument, NULL, 'a'},
{L"insert", no_argument, NULL, 'i'},
{L"replace", no_argument, NULL, 'r'},
{L"current-buffer", no_argument, NULL, 'b'},
{L"current-job", no_argument, NULL, 'j'},
{L"current-process", no_argument, NULL, 'p'},
{L"current-selection", no_argument, NULL, 's'},
{L"current-token", no_argument, NULL, 't'},
{L"current-buffer", no_argument, NULL, 'b'},
{L"cut-at-cursor", no_argument, NULL, 'c'},
{L"function", no_argument, NULL, 'f'},
{L"tokenize", no_argument, NULL, 'o'},
@ -225,7 +226,6 @@ int builtin_commandline(parser_t &parser, io_streams_t &streams, wchar_t **argv)
{L"cursor", no_argument, NULL, 'C'},
{L"line", no_argument, NULL, 'L'},
{L"search-mode", no_argument, NULL, 'S'},
{L"selection", no_argument, NULL, 's'},
{L"paging-mode", no_argument, NULL, 'P'},
{NULL, 0, NULL, 0}};