Update 2024-01-27 09:32 OpenBSD/amd64-x13

This commit is contained in:
c0dev0id
2024-01-27 09:32:17 +01:00
parent 201103085c
commit 019c96f879
22 changed files with 2972 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
let s:save_cpo = &cpo
set cpo&vim
function! unite#kinds#task#define()
return s:kind
endfunction
let s:kind = {
\ 'name' : 'task',
\ 'default_action' : 'show',
\ 'action_table': {},
\}
let s:kind.action_table.show = {
\ 'description' : 'Show report',
\ }
function! s:kind.action_table.show.func(candidate)
call taskwarrior#init(join(split(a:candidate.word, '[ \t]'), ' '))
endfunction
let &cpo = s:save_cpo
unlet s:save_cpo