taskwiki: Add ChoosSplitTags command

This commit is contained in:
Tomas Babej 2015-04-10 20:19:45 +02:00
parent 4630c371ec
commit dfaef302f1
2 changed files with 19 additions and 0 deletions

View file

@ -40,6 +40,7 @@ command! -range -nargs=* TaskWikiAnnotate :<line1>,<line2>py SelectedTasks().ann
" Interactive commands
command! -range TaskWikiChooseProject :<line1>,<line2>py ChooseSplitProjects("global").execute()
command! -range TaskWikiChooseTag :<line1>,<line2>py ChooseSplitTags("global").execute()
" Meta commands
command! TaskWikiInspect :py Meta().inspect_viewport()
@ -57,6 +58,7 @@ nmap <silent><buffer> <Leader>tbd :TaskWikiBurndownDaily<CR>
nmap <silent><buffer> <Leader>tbw :TaskWikiBurndownWeekly<CR>
nmap <silent><buffer> <Leader>tbm :TaskWikiBurndownMonthly<CR>
nmap <silent><buffer> <Leader>tcp :TaskWikiChooseProject<CR>
nmap <silent><buffer> <Leader>tct :TaskWikiChooseTag<CR>
nmap <silent><buffer> <Leader>tC :TaskWikiCalendar<CR>
nmap <silent><buffer> <Leader>td :TaskWikiDone<CR>
nmap <silent><buffer> <Leader>tD :TaskWikiDelete<CR>