diff options
Diffstat (limited to 'runtime/doc/usr_41.txt')
-rw-r--r-- | runtime/doc/usr_41.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt index 8e1b72eadc..9075d60b1b 100644 --- a/runtime/doc/usr_41.txt +++ b/runtime/doc/usr_41.txt @@ -630,6 +630,8 @@ String manipulation: *string-functions* submatch() get a specific match in ":s" and substitute() strpart() get part of a string using byte index strcharpart() get part of a string using char index + slice() take a slice of a string, using char index in + Vim9 script strgetchar() get character from a string using char index expand() expand special keywords expandcmd() expand a command like done for `:edit` @@ -659,6 +661,7 @@ List manipulation: *list-functions* filter() remove selected items from a List map() change each List item reduce() reduce a List to a value + slice() take a slice of a List sort() sort a List reverse() reverse the order of a List or Blob uniq() remove copies of repeated adjacent items |