diff options
| author | jdhao <jdhao@hotmail.com> | 2021-12-15 00:21:34 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-12-15 00:21:34 +0800 |
| commit | bbd642af1a8c27a3ea3a5af37272928230db40ab (patch) | |
| tree | bd20055deae3fa81f49d7763f85c50df743b0704 /autoload | |
| parent | 5215a601b9221f8b2276a9bbc7cc7f0e5f78d556 (diff) | |
renaming variables
Diffstat (limited to 'autoload')
| -rw-r--r-- | autoload/utils.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/autoload/utils.vim b/autoload/utils.vim index d9a8a32..8f528fb 100644 --- a/autoload/utils.vim +++ b/autoload/utils.vim @@ -193,12 +193,12 @@ function! utils#MultiEdit(patterns) abort endfunction function! utils#add_pack(name) abort - let l:success = v:true + let l:status = v:true try execute printf("packadd! %s", a:name) catch /^Vim\%((\a\+)\)\=:E919/ - let l:success = v:false + let l:status = v:false endtry - return l:success + return l:status endfunction |
