We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32f5db7 commit 113a8bbCopy full SHA for 113a8bb
autoload/project/run_tasks.vim
@@ -79,7 +79,9 @@ function! s:GetTaskStatusLine(task, status)
79
let right = ''
80
endif
81
if a:status == 'finished'
82
- let right = 'At '.a:task.finished.', '.right
+ if has_key(a:task, 'finished')
83
+ let right = 'At '.a:task.finished.', '.right
84
+ endif
85
86
let padding_number = width - strwidth(left) - strwidth(right) - 2
87
let padding = ''
0 commit comments