diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-28 21:58:50 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-28 22:14:37 -0400 |
commit | 7c6ca6fed8bceed67315e046a33701d71ac4b436 (patch) | |
tree | f489cf6843f0f125e89d3f91cee2777156f0ef84 /runtime/doc | |
parent | df2acdc3be807393ea8d61bb94c41d792388c0de (diff) | |
download | rneovim-7c6ca6fed8bceed67315e046a33701d71ac4b436.tar.gz rneovim-7c6ca6fed8bceed67315e046a33701d71ac4b436.tar.bz2 rneovim-7c6ca6fed8bceed67315e046a33701d71ac4b436.zip |
vim-patch:73fef33014db
Update runtime files
https://github.com/vim/vim/commit/73fef33014dbf21fc59e7e47fb091117868d82fb
Omit usr_46.txt.
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/eval.txt | 16 | ||||
-rw-r--r-- | runtime/doc/usr_11.txt | 2 |
2 files changed, 10 insertions, 8 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 91302c94c8..4a1973b6b7 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -3103,7 +3103,7 @@ complete_info([{what}]) "function" User defined completion |i_CTRL-X_CTRL-U| "omni" Omni completion |i_CTRL-X_CTRL-O| "spell" Spelling suggestions |i_CTRL-X_s| - "eval" |complete()| completion + "eval" |complete()| completion "unknown" Other internal modes If the optional {what} list argument is supplied, then only @@ -3894,7 +3894,7 @@ flatten({list} [, {maxdepth}]) *flatten()* a very large number. The {list} is changed in place, make a copy first if you do not want that. - *E900* + *E900* {maxdepth} means how deep in nested lists changes are made. {list} is not modified when {maxdepth} is 0. {maxdepth} must be positive number. @@ -4417,7 +4417,7 @@ getcompletion({pat}, {type} [, {filtered}]) *getcompletion()* highlight highlight groups history :history suboptions locale locale names (as output of locale -a) - mapclear buffer argument + mapclear buffer argument mapping mapping name menu menus messages |:messages| suboptions @@ -4877,8 +4877,8 @@ getwininfo([{winid}]) *getwininfo()* Returns information about windows as a List with Dictionaries. If {winid} is given Information about the window with that ID - is returned. If the window does not exist the result is an - empty list. + is returned, as a List with one item. If the window does not + exist the result is an empty list. Without {winid} information about all the windows in all the tab pages is returned. @@ -7874,7 +7874,9 @@ simplify({filename}) *simplify()* Unix) are not resolved. If the first path component in {filename} designates the current directory, this will be valid for the result as well. A trailing path separator is - not removed either. + not removed either. On Unix "//path" is unchanged, but + "///path" is simplified to "/path" (this follows the Posix + standard). Example: > simplify("./dir/.././/file/") == "./file/" < Note: The combination "dir/.." is only removed if "dir" is @@ -9113,7 +9115,7 @@ win_screenpos({nr}) *win_screenpos()* tabpage. win_splitmove({nr}, {target} [, {options}]) *win_splitmove()* - Move the window {nr} to a new split of the window {target}. + Move the window {nr} to a new split of the window {target}. This is similar to moving to {target}, creating a new window using |:split| but having the same contents as window {nr}, and then closing {nr}. diff --git a/runtime/doc/usr_11.txt b/runtime/doc/usr_11.txt index b4149c5438..2852852d16 100644 --- a/runtime/doc/usr_11.txt +++ b/runtime/doc/usr_11.txt @@ -211,7 +211,7 @@ will automatically delete it: - The flag that the file was modified is not set. - The process is not running. -You can programatically deal with this situation with the |FileChangedShell| +You can programmatically deal with this situation with the |FileChangedShell| autocommand event. |