1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-14 15:19:12 +08:00

fix(tasks.vim): fix Variable type mismatch

fix Vim(let):E706: Variable type mismatch for: s:task_config
This commit is contained in:
wsdjeg 2022-03-22 11:52:58 +08:00
parent 0f336f386e
commit ab631a2513

View File

@ -26,7 +26,7 @@ let s:BUF = SpaceVim#api#import('vim#buffer')
" task object
let s:select_task = {}
let s:task_config = []
let s:task_config = {}
let s:task_viewer_bufnr = -1
let s:variables = {}
let s:providers = []