view src/testdir/test_scriptnames.vim @ 27209:fa09602eae48 v8.2.4133

patch 8.2.4133: output of ":scriptnames" goes into the message history Commit: https://github.com/vim/vim/commit/840f16202e1ae2d574507ef52a7e8a98775f243c Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 18 13:34:05 2022 +0000 patch 8.2.4133: output of ":scriptnames" goes into the message history Problem: output of ":scriptnames" goes into the message history, while this des not happen for other commands, such as ":ls". Solution: Use msg_outtrans() instead of smsg(). (closes #9551)
author Bram Moolenaar <Bram@vim.org>
date Tue, 18 Jan 2022 14:45:04 +0100
parents 08940efa6b4e
children 761631155a90
line wrap: on
line source

" Test for :scriptnames

func Test_scriptnames()
  call writefile(['let did_load_script = 123'], 'Xscripting')
  source Xscripting
  call assert_equal(123, g:did_load_script)

  let scripts = split(execute('scriptnames'), "\n")
  let last = scripts[-1]
  call assert_match('\<Xscripting\>', last)
  let lastnr = substitute(last, '\D*\(\d\+\):.*', '\1', '')
  exe 'script ' . lastnr
  call assert_equal('Xscripting', expand('%:t'))

  call assert_fails('script ' . (lastnr + 1), 'E474:')
  call assert_fails('script 0', 'E939:')

  new
  call setline(1, 'nothing')
  call assert_fails('script ' . lastnr, 'E37:')
  exe 'script! ' . lastnr
  call assert_equal('Xscripting', expand('%:t'))

  bwipe
  call delete('Xscripting')

  let msgs = execute('messages')
  scriptnames
  call assert_equal(msgs, execute('messages'))
endfunc

" vim: shiftwidth=2 sts=2 expandtab