diff options
Diffstat (limited to 'test/functional/lua/snippet_spec.lua')
-rw-r--r-- | test/functional/lua/snippet_spec.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/functional/lua/snippet_spec.lua b/test/functional/lua/snippet_spec.lua index be18fe7898..724437f0b2 100644 --- a/test/functional/lua/snippet_spec.lua +++ b/test/functional/lua/snippet_spec.lua @@ -79,6 +79,10 @@ describe('vim.snippet', function() -- Regression test: #29658 api.nvim_buf_set_lines(curbuf, 0, -1, false, {}) test_expand_success({ '${1:foo^bar}\n' }, { 'foo^bar', '' }) + + -- Regression test: #30950 + api.nvim_buf_set_lines(curbuf, 0, -1, false, {}) + test_expand_success({ 'a^ b$1', 'b$2', 'd' }, { 'a^ b', 'b', 'd' }) end) it('replaces tabs with spaces when expandtab is set', function() |