view src/testdir/test_ex_equal.vim @ 29936:64b885d1acfc v9.0.0306

patch 9.0.0306: buffer write message is two lines in message popup window Commit: https://github.com/vim/vim/commit/f2fb54f641aa0e8a64356e4d0053f89b52c78229 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 28 20:58:51 2022 +0100 patch 9.0.0306: buffer write message is two lines in message popup window Problem: Buffer write message is two lines in message popup window. Solution: Overwrite message if "msg_scroll" is off.
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Aug 2022 22:00:04 +0200
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