diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2018-06-20 00:58:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-20 00:58:33 +0200 |
| commit | 18710e77200632b73791ac41824161b2273cb91d (patch) | |
| tree | 27dfd459d33d3f0fafc4db23e08adba98504f5cf /src/nvim/testdir | |
| parent | b36aba98408b88be3edd815fee88e969e1a4c081 (diff) | |
| parent | 14e70878c58e55ff4bc3c73441addfe880493d97 (diff) | |
| download | rneovim-18710e77200632b73791ac41824161b2273cb91d.tar.gz rneovim-18710e77200632b73791ac41824161b2273cb91d.tar.bz2 rneovim-18710e77200632b73791ac41824161b2273cb91d.zip | |
Merge #8596 from janlazo/vim-8.0.0615
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_hardcopy.vim | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_hardcopy.vim b/src/nvim/testdir/test_hardcopy.vim index 7aea704e86..f630556bef 100644 --- a/src/nvim/testdir/test_hardcopy.vim +++ b/src/nvim/testdir/test_hardcopy.vim @@ -61,3 +61,14 @@ func Test_with_syntax() set printoptions& endif endfunc + +func Test_fname_with_spaces() + if has('postscript') + split t\ e\ s\ t.txt + call setline(1, ['just', 'some', 'text']) + hardcopy > %.ps + call assert_true(filereadable('t e s t.txt.ps')) + call delete('t e s t.txt.ps') + bwipe! + endif +endfunc |