mirror of
https://github.com/vim/vim.git
synced 2025-10-01 04:54:07 -04:00
patch 8.2.2485: when sourcing a script again the script version isn't reset
Problem: When sourcing a script again the script version isn't reset. Solution: Set sn_version to one when sourcing a script again. Clear sn_save_cpo properly. (closes #7608)
This commit is contained in:
@@ -2207,7 +2207,7 @@ def Test_while_loop()
|
||||
assert_equal('1_3_', result)
|
||||
|
||||
var s = ''
|
||||
while s == 'x' #{comment
|
||||
while s == 'x' #{comment}
|
||||
endwhile
|
||||
enddef
|
||||
|
||||
@@ -3155,6 +3155,19 @@ def Test_restoring_cpo()
|
||||
delete('Xsourced')
|
||||
delete('Xclose')
|
||||
delete('Xdone')
|
||||
|
||||
writefile(['vim9script'], 'XanotherScript')
|
||||
set cpo=aABceFsMny>
|
||||
edit XanotherScript
|
||||
so %
|
||||
assert_equal('aABceFsMny>', &cpo)
|
||||
:1del
|
||||
w
|
||||
so %
|
||||
assert_equal('aABceFsMny>', &cpo)
|
||||
|
||||
delete('XanotherScript')
|
||||
set cpo&vim
|
||||
enddef
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user