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

patch 8.2.2519: Vim9: no reason to keep strange Vi behavior

Problem:    Vim9: no reason to keep strange Vi behavior.
Solution:   ":3" and ":3|" both go to line 3. ":|" does not print the line.
            (closes #7840)
This commit is contained in:
Bram Moolenaar
2021-02-15 21:30:30 +01:00
parent eed9d46293
commit b8554304c3
3 changed files with 20 additions and 3 deletions

View File

@@ -22,6 +22,17 @@ def Test_range_only()
:3
list
assert_equal('three$', Screenline(&lines))
# missing command does not print the line
var lines =<< trim END
vim9script
:1|
assert_equal('three$', Screenline(&lines))
:|
assert_equal('three$', Screenline(&lines))
END
CheckScriptSuccess(lines)
bwipe!
# won't generate anything