mirror of
https://github.com/neovim/neovim.git
synced 2025-12-16 03:15:39 +00:00
Bump all nvim-specific error codes above E5000
In order to not conflict with new error codes that Vim adds, all Neovim
error codes should be above 5000. The three existing sub-5000 error
codes (E926, E951, and E952) are now E50003, E5004, and E5005
respectively.
E953 was removed in 6167ce6df2, so just
remove it from the help.
This commit is contained in:
@@ -132,7 +132,7 @@ describe('ShaDa support code', function()
|
||||
meths.set_var('U', '10')
|
||||
nvim_command('set shada+=!')
|
||||
set_additional_cmd('set shada+=!')
|
||||
eq('Vim(wshada):E951: Error while dumping variable g:F, itself: attempt to dump function reference',
|
||||
eq('Vim(wshada):E5004: Error while dumping variable g:F, itself: attempt to dump function reference',
|
||||
exc_exec('wshada'))
|
||||
meths.set_option('shada', '')
|
||||
reset()
|
||||
@@ -145,7 +145,7 @@ describe('ShaDa support code', function()
|
||||
nvim_command('call add(L, L)')
|
||||
meths.set_var('U', '10')
|
||||
nvim_command('set shada+=!')
|
||||
eq('Vim(wshada):E952: Unable to dump variable g:L: container references itself in index 0',
|
||||
eq('Vim(wshada):E5005: Unable to dump variable g:L: container references itself in index 0',
|
||||
exc_exec('wshada'))
|
||||
meths.set_option('shada', '')
|
||||
set_additional_cmd('set shada+=!')
|
||||
|
||||
Reference in New Issue
Block a user