" Fail :browse edit but :browse edit! is allowed
func Test_browse_edit_fail()
+ " A GUI dialog may stall the test.
+ CheckNotGui
+
call s:reset_all_buffers()
let l:other = s:make_buffer_pairs()
call assert_fails("browse edit other", "E1513:")
call assert_equal(l:current, bufnr())
- browse edit! other
- call assert_equal(l:other, bufnr())
+ try
+ browse edit! other
+ call assert_equal(l:other, bufnr())
+ catch /E338:/
+ " Ignore E338, which occurs if console Vim is built with +browse.
+ " Console Vim without +browse will treat this as a regular :edit.
+ endtry
endfunc
" Allow :browse w because it doesn't change the buffer in the current file
func Test_browse_edit_pass()
+ " A GUI dialog may stall the test.
+ CheckNotGui
+
call s:reset_all_buffers()
let l:other = s:make_buffer_pairs()
let l:current = bufnr()
- browse write other
+ try
+ browse write other
+ catch /E338:/
+ " Ignore E338, which occurs if console Vim is built with +browse.
+ " Console Vim without +browse will treat this as a regular :write.
+ endtry
call delete("other")
endfunc
let l:current = bufnr()
let l:file = tempname()
call writefile([], l:file)
+ let l:file = fnamemodify(l:file, ':p') " In case it's Windows 8.3-style.
let l:directory = fnamemodify(l:file, ":p:h")
let l:name = fnamemodify(l:file, ":p:t")
call assert_equal(l:current, bufnr())
call assert_fails("lnfile", "E1513:")
+ " Ensure the entry didn't change.
call assert_equal(2, getloclist(0, #{idx: 0}).idx)
call assert_equal(l:current, bufnr())
call assert_equal(l:first, bufnr())
endfunc
-" Fail pydo if it changes a window with 'winfixbuf' is set
-func Test_python_pydo()
+" Fail pyxdo if it changes a window with 'winfixbuf' is set
+func Test_pythonx_pyxdo()
CheckFeature pythonx
call s:reset_all_buffers()
set winfixbuf
- python << EOF
+ pythonx << EOF
import vim
-def test_winfixbuf_Test_python_pydo_set_buffer():
+def test_winfixbuf_Test_pythonx_pyxdo_set_buffer():
buffer = vim.vars['_previous_buffer']
vim.current.buffer = vim.buffers[buffer]
EOF
try
- pydo test_winfixbuf_Test_python_pydo_set_buffer()
- catch /Vim(pydo):vim.error: Vim:E1513: Cannot edit buffer. 'winfixbuf' is enabled/
+ pyxdo test_winfixbuf_Test_pythonx_pyxdo_set_buffer()
+ catch /Vim(pyxdo):vim.error: Vim:E1513: Cannot edit buffer. 'winfixbuf' is enabled/
let l:caught = 1
endtry
unlet g:_previous_buffer
endfunc
-" Fail pyfile if it changes a window with 'winfixbuf' is set
-func Test_python_pyfile()
+" Fail pyxfile if it changes a window with 'winfixbuf' is set
+func Test_pythonx_pyxfile()
CheckFeature pythonx
call s:reset_all_buffers()
\ "file.py")
try
- pyfile file.py
- catch /Vim(pyfile):vim.error: Vim:E1513: Cannot edit buffer. 'winfixbuf' is enabled/
+ pyxfile file.py
+ catch /Vim(pyxfile):vim.error: Vim:E1513: Cannot edit buffer. 'winfixbuf' is enabled/
let l:caught = 1
endtry
endfunc
" Fail vim.current.buffer if 'winfixbuf' is set
-func Test_python_vim_current_buffer()
+func Test_pythonx_vim_current_buffer()
CheckFeature pythonx
call s:reset_all_buffers()
set winfixbuf
try
- python << EOF
+ pythonx << EOF
import vim
buffer = vim.vars["_previous_buffer"]
vim.current.buffer = vim.buffers[buffer]
EOF
- catch /Vim(python):vim\.error: Vim:E1513: Cannot edit buffer. 'winfixbuf' is enabled/
+ catch /Vim(pythonx):vim\.error: Vim:E1513: Cannot edit buffer. 'winfixbuf' is enabled/
let l:caught = 1
endtry
augroup! QfChanged
endfunc
-func Test_bufdo_splitwin_fails()
+func Test_bufdo_cnext_splitwin_fails()
call s:reset_all_buffers()
- let other = s:make_buffer_pairs()
+ call s:make_simple_quickfix()
+ call assert_equal(1, getqflist(#{idx: 0}).idx)
" Make sure there is not enough room to
" split the winfixedbuf window
let &winheight=&lines
let &winminheight=&lines-2
- call assert_fails(':bufdo echo 1', 'E36:')
+ " Still want E1513, or it may not be clear why a split was attempted and why
+ " it failing caused the commands to abort.
+ call assert_fails(':bufdo echo 1', ['E36:', 'E1513:'])
+ call assert_fails(':cnext', ['E36:', 'E1513:'])
+ " Ensure the entry didn't change.
+ call assert_equal(1, getqflist(#{idx: 0}).idx)
set winminheight&vim winheight&vim
endfunc