view src/testdir/test_ex_equal.vim @ 29550:ec5f48ab361b v9.0.0116

patch 9.0.0116: virtual text not displayed if 'signcolumn' is "yes" Commit: https://github.com/vim/vim/commit/711483cd1381a4ed848d783ae0a6792d5b04447b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 30 21:33:46 2022 +0100 patch 9.0.0116: virtual text not displayed if 'signcolumn' is "yes" Problem: Virtual text not displayed if 'signcolumn' is "yes". Solution: Set c_extra and c_final to NUL.
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Jul 2022 22:45:02 +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