diff options
author | Christian Clason <c.clason@uni-graz.at> | 2021-11-27 19:39:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-27 19:39:42 +0100 |
commit | 03d250eb4504d5168a754d0f3b7e9992337d60b4 (patch) | |
tree | d604a8d9b7011b89ab54308691f94396a07e6c85 /runtime/tools/check_colors.vim | |
parent | b51b0aecc969040641da29dbd7cf28e419972f15 (diff) | |
download | rneovim-03d250eb4504d5168a754d0f3b7e9992337d60b4.tar.gz rneovim-03d250eb4504d5168a754d0f3b7e9992337d60b4.tar.bz2 rneovim-03d250eb4504d5168a754d0f3b7e9992337d60b4.zip |
vim-patch:6304be625ce4 (#16450)
Update runtime files.
https://github.com/vim/vim/commit/6304be625ce44dcfedc6735164d0b853578581c8
skip doc/sign.txt (needs 8.2.3664)
Diffstat (limited to 'runtime/tools/check_colors.vim')
-rw-r--r-- | runtime/tools/check_colors.vim | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/runtime/tools/check_colors.vim b/runtime/tools/check_colors.vim index 966072c706..85df882d1e 100644 --- a/runtime/tools/check_colors.vim +++ b/runtime/tools/check_colors.vim @@ -226,7 +226,13 @@ fu! Result(err) endif endfu -call Test_check_colors() - -let &cpo = s:save_cpo -unlet s:save_cpo +try + call Test_check_colors() +catch + echohl ErrorMsg + echomsg v:exception + echohl NONE +finally + let &cpo = s:save_cpo + unlet s:save_cpo +endtry |