aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/vim_diff.txt
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-07-26 14:09:03 -0400
committerJustin M. Keyes <justinkz@gmail.com>2015-07-26 14:09:03 -0400
commit122ad63ac90542d2c2964b071783799cfcdf2e07 (patch)
tree79b335278e5639c1c544f14072e35b38e219c80d /runtime/doc/vim_diff.txt
parent7a6bf3f418c5ad94ac2ac71f21275a87d08e87b9 (diff)
parent01901e00389446840c19839a29c001096aae6dc0 (diff)
downloadrneovim-122ad63ac90542d2c2964b071783799cfcdf2e07.tar.gz
rneovim-122ad63ac90542d2c2964b071783799cfcdf2e07.tar.bz2
rneovim-122ad63ac90542d2c2964b071783799cfcdf2e07.zip
Merge pull request #3041 from ZyX-I/better-mkdir
Move recursive directory creation function to os/fs.c
Diffstat (limited to 'runtime/doc/vim_diff.txt')
-rw-r--r--runtime/doc/vim_diff.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt
index fd07dd787f..5d4e6861f5 100644
--- a/runtime/doc/vim_diff.txt
+++ b/runtime/doc/vim_diff.txt
@@ -64,6 +64,14 @@ are always available and may be used simultaneously in separate plugins. The
`neovim` pip package must be installed to use Python plugins in Nvim (see
|nvim-python|).
+|mkdir()| behaviour changed:
+1. Assuming /tmp/foo does not exist and /tmp can be written to
+ mkdir('/tmp/foo/bar', 'p', 0700) will create both /tmp/foo and /tmp/foo/bar
+ with 0700 permissions. Vim mkdir will create /tmp/foo with 0755.
+2. If you try to create an existing directory with `'p'` (e.g. mkdir('/',
+ 'p')) mkdir() will silently exit. In Vim this was an error.
+3. mkdir() error messages now include strerror() text when mkdir fails.
+
==============================================================================
4. New Features *nvim-features-new*