diff options
author | Lewis Russell <lewis6991@gmail.com> | 2023-03-30 13:57:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-30 13:57:59 +0100 |
commit | 8fa7d833cf3a6c906c91c5acf9187b4544cf94be (patch) | |
tree | 857a980da314eff640ce2ac31db067ffde4d6aa4 /runtime/doc/lua.txt | |
parent | e5fa2e3a5d0f120c0b957b4643ea63a807ba377b (diff) | |
parent | fd70a9dca199aae1eb7714608d63e8b2e63fb293 (diff) | |
download | rneovim-8fa7d833cf3a6c906c91c5acf9187b4544cf94be.tar.gz rneovim-8fa7d833cf3a6c906c91c5acf9187b4544cf94be.tar.bz2 rneovim-8fa7d833cf3a6c906c91c5acf9187b4544cf94be.zip |
Merge pull request #22791 from lewis6991/refactor/loadermisc
refactor(loader): changes
Diffstat (limited to 'runtime/doc/lua.txt')
-rw-r--r-- | runtime/doc/lua.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 58522ac1f3..33833fa83e 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -2502,7 +2502,7 @@ find({names}, {opts}) *vim.fs.find()* (table) Normalized paths |vim.fs.normalize()| of all matching files or directories -normalize({path}) *vim.fs.normalize()* +normalize({path}, {opts}) *vim.fs.normalize()* Normalize a path to a standard format. A tilde (~) character at the beginning of the path is expanded to the user's home directory and any backslash (\) characters are converted to forward slashes (/). Environment @@ -2522,6 +2522,9 @@ normalize({path}) *vim.fs.normalize()* Parameters: ~ • {path} (string) Path to normalize + • {opts} (table|nil) Options: + • expand_env: boolean Expand environment variables (default: + true) Return: ~ (string) Normalized path |