mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
patch 9.0.1596: :registers command does not work in sandbox
Problem: :registers command does not work in sandbox. Solution: Add flag to the command. (closes #12473)
This commit is contained in:
@ -51,8 +51,9 @@ func Test_display_registers()
|
||||
call feedkeys("i\<C-R>=2*4\n\<esc>")
|
||||
call feedkeys(":ls\n", 'xt')
|
||||
|
||||
let a = execute('display')
|
||||
let b = execute('registers')
|
||||
" these commands work in the sandbox
|
||||
let a = execute('sandbox display')
|
||||
let b = execute('sandbox registers')
|
||||
|
||||
call assert_equal(a, b)
|
||||
call assert_match('^\nType Name Content\n'
|
||||
|
Reference in New Issue
Block a user