使用NeoVim我遇到了:Gpush
命令锁定编辑器的问题。有没有人解决这个问题呢?
答案 0 :(得分:1)
我知道您的问题是,当您推送到github时,您需要从shell手动输入用户名/密码。我不认为GPush是为了实现这一点而设计的。这可能解决了你的问题
:te git push
您可能会在屏幕上看到一个终端窗口,询问用户名/密码。您需要输入i
才能在终端上输入插入模式,并且应该很好。
答案 1 :(得分:0)
fugitive的推送将在nvim上同步工作。来自逃犯帮助文件
*fugitive-:Gpush*
:Gpush [args] Invoke git-push, load the results into the |quickfix|
list, and invoke |:cwindow| to reveal any errors.
|:Dispatch| is used if available for asynchronous
invocation.
问题是nvim上没有调度功能。你可以运行
!git push &
但是这会阻止你看到命令的输出(这是错误的cuz:如果适合推送失败怎么办?)
以下是为我解决的逃犯GPush的替换功能,也可能对你有用(把它放在你的init.vim中)。它利用了nvim的异步作业控制:h job-control
,并在预览窗口中显示输出:h preview-window
function! s:shell_cmd_completed(...) dict
wincmd P
setlocal modifiable
call append(line('$'), self.shell)
call append(line('$'), '########################FINISHED########################')
call append(line('$'), self.pid)
call jobstop(self.pid)
normal! G
setlocal nomodifiable
wincmd p
endfunction
function! s:JobHandler(job_id, data, event) dict
let str = join(a:data)
wincmd P
call append(line('$'), str)
normal! G
wincmd p
endfunction
function! GitPush()
let s:shell_tmp_output = tempname()
execute 'pedit '.s:shell_tmp_output
wincmd P
wincmd J
setlocal modifiable
setlocal nobuflisted
nnoremap <buffer>q :bd<cr>
wincmd p
let s:callbacks = {
\ 'on_stdout': function('s:JobHandler'),
\ 'on_stderr': function('s:JobHandler'),
\ 'on_exit': function('s:shell_cmd_completed'),
\ 'shell': 'git push'
\ }
let pid = jobstart('git push', s:callbacks)
let s:callbacks.pid = pid
endfunction
command! GitPush call GitPush()