view src/testdir/test10.in @ 31227:1a9e44a45614 v9.0.0947

patch 9.0.0947: invalid memory access in substitute with function Commit: https://github.com/vim/vim/commit/cc762a48d42b579fb7bdec2c614636b830342dd5 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 25 13:03:31 2022 +0000 patch 9.0.0947: invalid memory access in substitute with function Problem: Invalid memory access in substitute with function that goes to another file. Solution: Check for text locked in CTRL-W gf.
author Bram Moolenaar <Bram@vim.org>
date Fri, 25 Nov 2022 14:15:05 +0100
parents 9d7914012b82
children
line wrap: on
line source

Test that vim9script also works without the +eval feature.

STARTTEST
:/^START/+1,/^END/-1:w! Xvim9
:so Xvim9
ENDTEST

START
vim9script

if 1
  echo 'this is skipped without +eval'
endif

# colon required for a range
:$-1,$w! test.out
qa!
END

first line
last line