summaryrefslogtreecommitdiff
path: root/src/testdir/test_excmd.vim
blob: f5ce979208652ba188b0a69a113321cfbad47d6b (plain)
1
2
3
4
5
6
7
8
9
10
" 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