aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nvim/eval.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua
index 3c06fc4fe3..7630ff9d77 100644
--- a/src/nvim/eval.lua
+++ b/src/nvim/eval.lua
@@ -7550,10 +7550,9 @@ M.funcs = {
If {prot} is given it is used to set the protection bits of
the new directory. The default is 0o755 (rwxr-xr-x: r/w for
the user, readable for others). Use 0o700 to make it
- unreadable for others.
-
- {prot} is applied for all parts of {name}. Thus if you create
- /tmp/foo/bar then /tmp/foo will be created with 0o700. Example: >vim
+ unreadable for others. This is used for the newly created
+ directories. Note an umask is applied to {prot} (on Unix).
+ Example: >vim
call mkdir($HOME .. "/tmp/foo/bar", "p", 0o700)
<This function is not available in the |sandbox|.