view src/testdir/test10.in @ 36186:631e068e17a9 draft default tip

Added tag v9.1.0741 for changeset 9a68d0ac2749673c4ca12d108958c3e12b7c6845
author Christian Brabandt <cb@256bit.org>
date Mon, 23 Sep 2024 20:45:07 +0200
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