view src/testdir/test10.in @ 32608:5782057ea5d4

Added tag v9.0.1635 for changeset 753b0bde34b0f7b14be55b28e5806d8bc6622c2b
author Bram Moolenaar <Bram@vim.org>
date Thu, 15 Jun 2023 19:45:05 +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