diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-23 19:39:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-23 19:39:04 +0200 |
| commit | 82aaac5baafb4101022604c5e720e37987279184 (patch) | |
| tree | a755fb4e7644d7c85604e9e1f7c8e22be0d68b24 /src/nvim/testdir/test_edit.vim | |
| parent | 79ea7709b7cab13b89d98088f4733a354a7f2a54 (diff) | |
| parent | 2a1887c2df27c5f91f0f2f6ad6c70da60239cfce (diff) | |
| download | rneovim-82aaac5baafb4101022604c5e720e37987279184.tar.gz rneovim-82aaac5baafb4101022604c5e720e37987279184.tar.bz2 rneovim-82aaac5baafb4101022604c5e720e37987279184.zip | |
Merge #10833 from janlazo/vim-8.1.0037
vim-patch:8.0.1386,8.1.{37,39,187}
Diffstat (limited to 'src/nvim/testdir/test_edit.vim')
| -rw-r--r-- | src/nvim/testdir/test_edit.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_edit.vim b/src/nvim/testdir/test_edit.vim index 827c54e704..1010ae4e09 100644 --- a/src/nvim/testdir/test_edit.vim +++ b/src/nvim/testdir/test_edit.vim @@ -537,7 +537,7 @@ func! Test_edit_CTRL_I() " Tab in completion mode let path=expand("%:p:h") new - call setline(1, [path."/", '']) + call setline(1, [path. "/", '']) call feedkeys("Arunt\<c-x>\<c-f>\<tab>\<cr>\<esc>", 'tnix') call assert_match('runtest\.vim', getline(1)) %d |