spacevim/bundle/git.vim/autoload/git/stash.vim
JIe 2bb7059579
Some checks failed
Detach Plugins / check (FlyGrep.vim) (push) Has been cancelled
Detach Plugins / check (GitHub.vim) (push) Has been cancelled
Detach Plugins / check (JavaUnit.vim) (push) Has been cancelled
Detach Plugins / check (SourceCounter.vim) (push) Has been cancelled
Detach Plugins / check (cpicker.nvim) (push) Has been cancelled
Detach Plugins / check (dein-ui.vim) (push) Has been cancelled
Detach Plugins / check (git.vim) (push) Has been cancelled
Detach Plugins / check (iedit.vim) (push) Has been cancelled
Detach Plugins / check (scrollbar.vim) (push) Has been cancelled
Detach Plugins / check (vim-chat) (push) Has been cancelled
Detach Plugins / check (vim-cheat) (push) Has been cancelled
Detach Plugins / check (vim-todo) (push) Has been cancelled
Detach Plugins / check (xmake.vim) (push) Has been cancelled
test / Linux (nvim, nightly) (push) Has been cancelled
test / Linux (nvim, v0.3.8) (push) Has been cancelled
test / Linux (nvim, v0.4.0) (push) Has been cancelled
test / Linux (nvim, v0.4.2) (push) Has been cancelled
test / Linux (nvim, v0.4.3) (push) Has been cancelled
test / Linux (nvim, v0.4.4) (push) Has been cancelled
test / Linux (nvim, v0.5.0) (push) Has been cancelled
test / Linux (nvim, v0.5.1) (push) Has been cancelled
test / Linux (nvim, v0.6.0) (push) Has been cancelled
test / Linux (nvim, v0.6.1) (push) Has been cancelled
test / Linux (nvim, v0.7.0) (push) Has been cancelled
test / Linux (nvim, v0.7.2) (push) Has been cancelled
test / Linux (nvim, v0.8.0) (push) Has been cancelled
test / Linux (nvim, v0.8.1) (push) Has been cancelled
test / Linux (nvim, v0.8.2) (push) Has been cancelled
test / Linux (nvim, v0.8.3) (push) Has been cancelled
test / Linux (nvim, v0.9.0) (push) Has been cancelled
test / Linux (nvim, v0.9.1) (push) Has been cancelled
test / Linux (true, vim, v7.4.052) (push) Has been cancelled
test / Linux (true, vim, v7.4.1689) (push) Has been cancelled
test / Linux (true, vim, v7.4.629) (push) Has been cancelled
test / Linux (true, vim, v8.0.0027) (push) Has been cancelled
test / Linux (true, vim, v8.0.0183) (push) Has been cancelled
test / Linux (vim, nightly) (push) Has been cancelled
test / Linux (vim, v8.0.0184) (push) Has been cancelled
test / Linux (vim, v8.0.1453) (push) Has been cancelled
test / Linux (vim, v8.1.2269) (push) Has been cancelled
test / Linux (vim, v8.2.2434) (push) Has been cancelled
test / Linux (vim, v8.2.3995) (push) Has been cancelled
test / Windows (nvim, nightly) (push) Has been cancelled
test / Windows (nvim, v0.3.8) (push) Has been cancelled
test / Windows (nvim, v0.4.2) (push) Has been cancelled
test / Windows (nvim, v0.4.3) (push) Has been cancelled
test / Windows (nvim, v0.4.4) (push) Has been cancelled
test / Windows (nvim, v0.5.0) (push) Has been cancelled
test / Windows (nvim, v0.5.1) (push) Has been cancelled
test / Windows (nvim, v0.6.0) (push) Has been cancelled
test / Windows (nvim, v0.6.1) (push) Has been cancelled
test / Windows (nvim, v0.7.0) (push) Has been cancelled
test / Windows (nvim, v0.7.2) (push) Has been cancelled
test / Windows (nvim, v0.8.0) (push) Has been cancelled
test / Windows (nvim, v0.8.1) (push) Has been cancelled
test / Windows (nvim, v0.8.2) (push) Has been cancelled
test / Windows (nvim, v0.8.3) (push) Has been cancelled
test / Windows (nvim, v0.9.0) (push) Has been cancelled
test / Windows (nvim, v0.9.1) (push) Has been cancelled
test / Windows (vim, nightly) (push) Has been cancelled
test / Windows (vim, v7.4.1185) (push) Has been cancelled
test / Windows (vim, v7.4.1689) (push) Has been cancelled
test / Windows (vim, v8.0.0027) (push) Has been cancelled
test / Windows (vim, v8.0.1453) (push) Has been cancelled
test / Windows (vim, v8.1.2269) (push) Has been cancelled
test / Windows (vim, v8.2.2434) (push) Has been cancelled
test / Windows (vim, v8.2.3995) (push) Has been cancelled
docker / docker (push) Has been cancelled
mirror / check (coding) (push) Has been cancelled
mirror / check (gitee) (push) Has been cancelled
mirror / check (gitlab) (push) Has been cancelled
init
2024-08-21 14:17:26 +08:00

144 lines
3.7 KiB
VimL

""
" @section git-stash, stash
" @parentsection commands
" This commands is to manage git stash.
" >
" :Git stash list
" <
let s:JOB = SpaceVim#api#import('job')
let s:NOTI = SpaceVim#api#import('notify')
let s:BUFFER = SpaceVim#api#import('vim#buffer')
let s:stash_show_bufnr = -1
" @todo rewrite Git stash in lua
function! git#stash#run(args) abort
let cmd = ['git', 'stash'] + a:args
let subcmd = get(a:args, 0, '')
if !empty(subcmd) && index(['drop', 'show'], subcmd) > -1
let subcmd = subcmd . '_'
else
let subcmd = ''
endif
call git#logger#debug('git-stash cmd:' . string(cmd))
let s:lines = []
call s:JOB.start(cmd,
\ {
\ 'on_stderr' : function('s:on_' . subcmd . 'stderr'),
\ 'on_stdout' : function('s:on_' . subcmd . 'stdout'),
\ 'on_exit' : function('s:on_' . subcmd . 'exit'),
\ }
\ )
endfunction
function! s:on_stdout(id, data, event) abort
for line in filter(a:data, '!empty(v:val)')
call git#logger#debug('git-stash stdout:' . line)
call s:NOTI.notify(line, 'Normal')
endfor
endfunction
function! s:on_stderr(id, data, event) abort
for data in a:data
call git#logger#debug('git-stash stderr:' . data)
endfor
endfunction
function! s:on_exit(id, data, event) abort
call git#logger#debug('git-stash exit data:' . string(a:data))
if a:data ==# 0
" echo 'done!'
else
" echo 'failed!'
endif
endfunction
function! s:on_drop_stdout(id, data, event) abort
for line in filter(a:data, '!empty(v:val)')
call git#logger#debug('git-stash stdout:' . line)
call s:NOTI.notify(line, 'Normal')
endfor
endfunction
function! s:on_drop_stderr(id, data, event) abort
for line in filter(a:data, '!empty(v:val)')
call git#logger#debug('git-stash stdout:' . line)
call s:NOTI.notify(line, 'WarningMsg')
endfor
endfunction
function! s:on_drop_exit(id, data, event) abort
call git#logger#debug('git-stash exit data:' . string(a:data))
if a:data ==# 0
" echo 'done!'
else
" echo 'failed!'
endif
endfunction
function! s:on_show_stdout(id, data, event) abort
for data in a:data
call git#logger#debug('git-stash stdout:' . data)
endfor
let s:lines += a:data
endfunction
function! s:on_show_stderr(id, data, event) abort
for line in filter(a:data, '!empty(v:val)')
call git#logger#debug('git-stash stdout:' . line)
call s:NOTI.notify(line, 'WarningMsg')
endfor
endfunction
function! s:on_show_exit(id, data, event) abort
call git#logger#debug('git-stash exit data:' . string(a:data))
if a:data ==# 0
if !bufexists(s:stash_show_bufnr)
let s:stash_show_bufnr = s:openStashShowBuffer()
endif
call s:BUFFER.buf_set_lines(s:stash_show_bufnr, 0 , -1, 0, s:lines)
endif
endfunction
function! s:openStashShowBuffer() abort
edit git://blame
normal! "_dd
setl nobuflisted
setl nomodifiable
setl nonumber norelativenumber
setl buftype=nofile
setf git-diff
setl syntax=diff
nnoremap <buffer><silent> q :bd!<CR>
return bufnr('%')
endfunction
function! s:sub_commands() abort
return join([
\ 'list',
\ 'show',
\ 'drop',
\ 'pop', 'apply',
\ 'branch',
\ 'clear',
\ 'save',
\ 'push',
\ ],
\ "\n")
endfunction
function! git#stash#complete(ArgLead, CmdLine, CursorPos) abort
let str = a:CmdLine[:a:CursorPos-1]
if str =~# '^Git\s\+stash\s\+[a-z]\=$'
return s:sub_commands()
else
return ''
endif
endfunction