view src/testdir/test_excmd.vim @ 17527:038f42e497cc

Added tag v8.1.1761 for changeset ae379e7534651d8263a19deba05a4d4c6e3d621d
author Bram Moolenaar <Bram@vim.org>
date Sat, 27 Jul 2019 21:45:05 +0200
parents c8152af9fa33
children a1437b8f2fac
line wrap: on
line source

" Tests for various Ex commands.

func Test_ex_delete()
  new
  call setline(1, ['a', 'b', 'c'])
  2
  " :dl is :delete with the "l" flag, not :dlist
  .dl
  call assert_equal(['a', 'c'], getline(1, 2))
endfunc