本文介绍了如何使DiffGitCached与“autochdir”一起工作在vimrc中设置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我按照这个答案。如果您查看注释,如果您在 .vimrc 中设置了 set autochdir ,则它不起作用。但是,我仍然希望双方一起工作,有没有办法?

谢谢

解决方案

我使用这个autocmd来禁用 autochdir 编辑git commit消息时:

  autocmd BufRead COMMIT_EDITMSG setlocal noautochdir 


I follow the answer to this post. If you look at the comments, it doesn't work if you have the set autochdir in your .vimrc. However, I still want both to work together, is there a way?

Thank you

解决方案

I use this autocmd to disable autochdir when editing a git commit message:

autocmd BufRead COMMIT_EDITMSG setlocal noautochdir

这篇关于如何使DiffGitCached与“autochdir”一起工作在vimrc中设置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-17 00:05