view src/testdir/test_excmd.vim @ 17552:58500373ac32

Added tag v8.1.1773 for changeset 8cca2654d45987ce9196e930d63702cf2d339689
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Jul 2019 21:45:06 +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