diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2023-04-15 19:46:17 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-15 19:46:17 +0800 |
| commit | 62b7b1daf37abbe4d72838933569fefa970aa2e4 (patch) | |
| tree | 3e04748f05198e3e971e386bf6270cbc65d79413 /test/old/testdir/test_scriptnames.vim | |
| parent | 071c455420dec7992a06a55e8bd443b769ded369 (diff) | |
| parent | 57221e0d11d1c24bc2abada7559a1d20c5090b62 (diff) | |
| download | rneovim-62b7b1daf37abbe4d72838933569fefa970aa2e4.tar.gz rneovim-62b7b1daf37abbe4d72838933569fefa970aa2e4.tar.bz2 rneovim-62b7b1daf37abbe4d72838933569fefa970aa2e4.zip | |
Merge pull request #23105 from zeertzjq/vim-8.2.4770
vim-patch:8.2.{4770,4783,4840,4883,4930,4934},9.0.0104: interpolated string
Diffstat (limited to 'test/old/testdir/test_scriptnames.vim')
| -rw-r--r-- | test/old/testdir/test_scriptnames.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/old/testdir/test_scriptnames.vim b/test/old/testdir/test_scriptnames.vim index d804684722..06ae305ab7 100644 --- a/test/old/testdir/test_scriptnames.vim +++ b/test/old/testdir/test_scriptnames.vim @@ -35,9 +35,7 @@ func Test_getscriptinfo() source Xscript let l = getscriptinfo() call assert_match('Xscript$', l[-1].name) - " Nvim does not support interpolated strings yet. - " call assert_equal(g:loaded_script_id, $"<SNR>{l[-1].sid}_") - call assert_equal(g:loaded_script_id, '<SNR>' . l[-1].sid . '_') + call assert_equal(g:loaded_script_id, $"<SNR>{l[-1].sid}_") call delete('Xscript') endfunc |