view src/testdir/test_ex_equal.vim @ 22790:44317eb799d7 v8.2.1943

patch 8.2.1943: Vim9: wrong error message when colon is missing Commit: https://github.com/vim/vim/commit/36113e46b4a7e8c33aa1ed1c9cfa6591c952183d Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 2 21:08:47 2020 +0100 patch 8.2.1943: Vim9: wrong error message when colon is missing Problem: Vim9: wrong error message when colon is missing. Solution: Check for a missing colon. (issue https://github.com/vim/vim/issues/7239)
author Bram Moolenaar <Bram@vim.org>
date Mon, 02 Nov 2020 21:15:03 +0100
parents 08940efa6b4e
children
line wrap: on
line source

" Test Ex := command.

func Test_ex_equal()
  new
  call setline(1, ["foo\tbar", "bar\tfoo"])

  let a = execute('=')
  call assert_equal("\n2", a)

  let a = execute('=#')
  call assert_equal("\n2\n  1 foo     bar", a)

  let a = execute('=l')
  call assert_equal("\n2\nfoo^Ibar$", a)

  let a = execute('=p')
  call assert_equal("\n2\nfoo     bar", a)

  let a = execute('=l#')
  call assert_equal("\n2\n  1 foo^Ibar$", a)

  let a = execute('=p#')
  call assert_equal("\n2\n  1 foo     bar", a)

  let a = execute('.=')
  call assert_equal("\n1", a)

  call assert_fails('3=', 'E16:')
  call assert_fails('=x', 'E488:')

  bwipe!
endfunc

" vim: shiftwidth=2 sts=2 expandtab