Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在特定的 git 提交中使用逃犯浏览存储库状态,我只能进入该目录,但我不知道如何返回到父目录。我最终再次查找此提交并从顶部开始浏览。
用fugitive浏览git树时,去父目录的快捷方式是什么?
这是vim!这是你想要的任何捷径。我发现-它是最直观的,所以它的工作原理与 NetRW 相同。
-
nnoremap <silent> - :e %:h<CR>
在逃亡缓冲区中时,这会打开当前目录上方的目录树。在普通缓冲区中时,它会打开包含该文件的目录。