diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-02-17 19:15:21 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-04-12 21:26:46 +0800 |
commit | b69ecacbb44a45f992a0cfcf99be7134a3e41173 (patch) | |
tree | 0fd7583e52a08b365094765ef63468e8ecb639b7 | |
parent | 0a813ae2914bee748dd55370929214699c97805f (diff) | |
download | rneovim-b69ecacbb44a45f992a0cfcf99be7134a3e41173.tar.gz rneovim-b69ecacbb44a45f992a0cfcf99be7134a3e41173.tar.bz2 rneovim-b69ecacbb44a45f992a0cfcf99be7134a3e41173.zip |
vim-patch:partial:a2baa73d1d33
Update runtime files.
https://github.com/vim/vim/commit/a2baa73d1d33014adea0fd9567949089ca21a782
This only includes changes to docs of digraph functions.
-rw-r--r-- | runtime/doc/builtin.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt index e20c91dacd..49aa52a92f 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -1680,12 +1680,13 @@ digraph_getlist([{listall}]) *digraph_getlist()* GetNumber()->digraph_getlist() < -digraph_set({chars}, {digraph}) *digraph_set()* *E1205* +digraph_set({chars}, {digraph}) *digraph_set()* Add digraph {chars} to the list. {chars} must be a string - with two characters. {digraph} is a string with one utf-8 - encoded character. Be careful, composing characters are NOT - ignored. This function is similar to |:digraphs| command, but - useful to add digraphs start with a white space. + with two characters. {digraph} is a string with one UTF-8 + encoded character. *E1215* + Be careful, composing characters are NOT ignored. This + function is similar to |:digraphs| command, but useful to add + digraphs start with a white space. The function result is v:true if |digraph| is registered. If this fails an error message is given and v:false is returned. @@ -1704,7 +1705,7 @@ digraph_setlist({digraphlist}) *digraph_setlist()* Similar to |digraph_set()| but this function can add multiple digraphs at once. {digraphlist} is a list composed of lists, where each list contains two strings with {chars} and - {digraph} as in |digraph_set()|. + {digraph} as in |digraph_set()|. *E1216* Example: > call digraph_setlist([['aa', 'あ'], ['ii', 'い']]) < |