We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ebc9a commit 2b39d80Copy full SHA for 2b39d80
2 files changed
src/testdir/test_undo.vim
@@ -442,7 +442,11 @@ funct Test_undofile()
442
443
if isdirectory('/tmp')
444
set undodir=/tmp
445
- call assert_equal('/tmp/%tmp%file', undofile('///tmp/file'))
+ if has('osx')
446
+ call assert_equal('/tmp/%private%tmp%file', undofile('///tmp/file'))
447
+ else
448
+ call assert_equal('/tmp/%tmp%file', undofile('///tmp/file'))
449
+ endif
450
endif
451
452
set undodir&
src/version.c
@@ -767,6 +767,8 @@ static char *(features[]) =
767
768
static int included_patches[] =
769
{ /* Add new patch number below this line */
770
+/**/
771
+ 1353,
772
/**/
773
1352,
774
0 commit comments