Merge remote-tracking branch 'Delapouite/extra_word'

This commit is contained in:
Maxime Coste 2017-07-18 17:30:33 +02:00
commit bed8d9c48e
2 changed files with 4 additions and 4 deletions

View File

@ -965,7 +965,7 @@ Some options are built in Kakoune, and can be used to control its behaviour:
- `option=<opt-name>` where <opt-name> is a _completions_ option.
* `static_words` _str-list_: list of words that are always added to completion
candidates when completing words in insert mode.
* `completions_extra_word_chars` _str_: a string containing all additional character
* `extra_word_chars` _codepoint-list_: list of all additional codepoints
that should be considered as word character for the purpose of insert mode
completion.
* `autoreload` _enum(yes|no|ask)_: auto reload the buffers when an external

View File

@ -18,7 +18,7 @@ Types
*regex*::
as a string but the set commands will complain if the entered text
is not a valid regex
*int-list*, *str-list*::
*int-list*, *str-list*, *codepoint-list*::
a list, elements are separated by a colon (:) if an element needs
to contain a colon, it can be escaped with a backslash
*range-specs*::
@ -125,8 +125,8 @@ Builtin options
list of words that are always added to completion candidates
when completing words in insert mode
*completions_extra_word_chars* 'str'::
a string containing all additional character that should be considered
*extra_word_chars* 'codepoint-list'::
a list of all additional codepoints that should be considered
as word character for the purpose of insert mode completion.
*autoreload* 'enum(yes|no|ask)'::