diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2018-12-15 14:24:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-15 14:24:17 +0100 |
| commit | 5e8f2048b5e7a3b06a6529283791f7030521f8a2 (patch) | |
| tree | a4feadbaeb62916d90093b0ef19fbc31425c8326 /src/nvim/testdir/test_undo.vim | |
| parent | 2aba5569a1fa3154560a4a715b48f8ddd5c0aa25 (diff) | |
| parent | 845973c9fed0da7a0d471f5b57ab361961a3de93 (diff) | |
| download | rneovim-5e8f2048b5e7a3b06a6529283791f7030521f8a2.tar.gz rneovim-5e8f2048b5e7a3b06a6529283791f7030521f8a2.tar.bz2 rneovim-5e8f2048b5e7a3b06a6529283791f7030521f8a2.zip | |
Merge #9367 'vim-patch:8.1.{585,588}'
Diffstat (limited to 'src/nvim/testdir/test_undo.vim')
| -rw-r--r-- | src/nvim/testdir/test_undo.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_undo.vim b/src/nvim/testdir/test_undo.vim index 83ede1dc37..9729ca9f57 100644 --- a/src/nvim/testdir/test_undo.vim +++ b/src/nvim/testdir/test_undo.vim @@ -373,7 +373,7 @@ funct Test_undofile() let cwd = getcwd() if has('win32') " Replace windows drive such as C:... into C%... - let cwd = substitute(cwd, '^\([A-Z]\):', '\1%', 'g') + let cwd = substitute(cwd, '^\([a-zA-Z]\):', '\1%', 'g') endif let pathsep = has('win32') ? '\' : '/' let cwd = substitute(cwd . pathsep . 'Xundofoo', pathsep, '%', 'g') |