mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 22:40:05 +08:00
55 lines
1.6 KiB
VimL
Vendored
55 lines
1.6 KiB
VimL
Vendored
" =============================================================================
|
|
" Filename: autoload/calendar/task/google.vim
|
|
" Author: itchyny
|
|
" License: MIT License
|
|
" Last Change: 2020/07/21 00:15:11.
|
|
" =============================================================================
|
|
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
function! calendar#task#google#new() abort
|
|
return deepcopy(s:self)
|
|
endfunction
|
|
|
|
let s:self = {}
|
|
|
|
function! s:self.get_taskList() dict abort
|
|
return calendar#google#task#getTaskList()
|
|
endfunction
|
|
|
|
function! s:self.get_task() dict abort
|
|
return calendar#google#task#getTasks()
|
|
endfunction
|
|
|
|
function! s:self.insert(listid, previous, parent, title, ...) dict abort
|
|
call calendar#google#task#insert(a:listid, a:previous, a:parent, a:title, a:0 ? a:1 : {})
|
|
endfunction
|
|
|
|
function! s:self.move(listid, taskid, previous, parent) dict abort
|
|
call calendar#google#task#move(a:listid, a:taskid, a:previous, a:parent)
|
|
endfunction
|
|
|
|
function! s:self.update(listid, taskid, title, ...) dict abort
|
|
call calendar#google#task#update(a:listid, a:taskid, a:title, a:0 ? a:1 : {})
|
|
endfunction
|
|
|
|
function! s:self.complete(listid, taskid) dict abort
|
|
call calendar#google#task#complete(a:listid, a:taskid)
|
|
endfunction
|
|
|
|
function! s:self.uncomplete(listid, taskid) dict abort
|
|
call calendar#google#task#uncomplete(a:listid, a:taskid)
|
|
endfunction
|
|
|
|
function! s:self.clear_completed(listid) dict abort
|
|
call calendar#google#task#clear_completed(a:listid)
|
|
endfunction
|
|
|
|
function! s:self.delete(listid, taskid) dict abort
|
|
call calendar#google#task#delete(a:listid, a:taskid)
|
|
endfunction
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|