diff options
author | Edwin Pujols <edwin.pujols5@outlook.com> | 2020-11-21 20:32:03 -0400 |
---|---|---|
committer | Edwin Pujols <edwin.pujols5@outlook.com> | 2020-11-22 15:46:47 -0400 |
commit | 070d7c2950162b1f3a46b72dee8968f94ad8cc4d (patch) | |
tree | fbcfbb427ceb2371a0d2c69196b735204b21bb1e | |
parent | 185732a1f82098d1f29fb2568eace544c04c0f1f (diff) | |
download | rneovim-070d7c2950162b1f3a46b72dee8968f94ad8cc4d.tar.gz rneovim-070d7c2950162b1f3a46b72dee8968f94ad8cc4d.tar.bz2 rneovim-070d7c2950162b1f3a46b72dee8968f94ad8cc4d.zip |
runtime: Remove error handling for E145.
Restricted mode (-Z) has been removed per #11996.
Some runtime files had lingering error handling (error
identifier `E145`) so I cleaned them up.
-rw-r--r-- | runtime/autoload/man.vim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/autoload/man.vim b/runtime/autoload/man.vim index dab88fde23..5008b8cfaf 100644 --- a/runtime/autoload/man.vim +++ b/runtime/autoload/man.vim @@ -13,8 +13,6 @@ function! man#init() abort try " Check for -l support. call s:get_page(s:get_path('', 'man')) - catch /E145:/ - " Ignore the error in restricted mode catch /command error .*/ let s:localfile_arg = v:false endtry |