0
0
mirror of https://github.com/vim/vim.git synced 2025-10-05 05:34:07 -04:00

patch 8.2.2215: Vim9: not recognized in global command

Problem:    Vim9:  not recognized in global command.
Solution:   Skip over pattern. (issue #7541)
This commit is contained in:
Bram Moolenaar
2020-12-25 18:35:29 +01:00
parent f8103f274e
commit 56ce9ea3ea
3 changed files with 25 additions and 1 deletions

View File

@@ -25,6 +25,15 @@ def Test_edit_wildcards()
CheckDefFailure(['edit `="foo"'], 'E1083:')
enddef
def Test_global_backtick_expansion()
new
setline(1, 'xx')
var name = 'foobar'
g/^xx/s/.*/`=name`
assert_equal('foobar', getline(1))
bwipe!
enddef
def Test_hardcopy_wildcards()
CheckUnix
CheckFeature postscript