mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 23:06:14 +00:00

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 vim/vim#9551)
840f16202e
33 lines
864 B
VimL
33 lines
864 B
VimL
" 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
|