如何在vim中退出vimdiff模式,具体来说,对于Fugitive?

前端之家收集整理的这篇文章主要介绍了如何在vim中退出vimdiff模式,具体来说,对于Fugitive?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用vim与 fugitive extension.它有一个:Gdiff命令,它带你进入vimdiff模式,但什么是正确/快速的方式关闭/退出vimdiff模式?

也就是说,我正在编辑Git存储库下的文件FooBar.txt。我启动:Gdiff,检查我在vimdiff的更改,然后我想回到并继续编辑FooBar.txt或任何其他文件:)

UPDATE1:我要给这些快速组合一个尝试下一个工作日:)

"vimdiff current vs git head (fugitive extension)
nnoremap <Leader>gd :Gdiff<cr> 
"switch back to current file and closes fugitive buffer
nnoremap <Leader>gD :diffoff!<cr><c-w>h:bd<cr>

UPDATE2:我当前的映射(仅关闭diff窗口!)

"vimdiff current vs git head (fugitive extension)
nnoremap <Leader>gd :Gdiff<cr> 
"switch back to current file and closes fugitive buffer
nnoremap <Leader>gD <c-w>h<c-w>c

此外,请帮助我决定以下应该是一个anwser:http://stackoverflow.com/a/15975201/275980

你可以执行windo set nodiff noscrollbind然后关闭第二个窗口。

更新:有一个diffoff命令。使用windo diffoff,不是我在上一行写的。

原文链接:https://www.f2er.com/bash/391402.html

猜你在找的Bash相关文章