有时我需要回到以前访问过的文件夹(不是父文件夹),让我们举个例子:
:Explore
# we at /home/project
../
./
foo/
bar/
file
# now I press -, hence go to the parent directory /home
../
./
project/
# now I press - again, hence go to the root /
../
./
bin/
boot/
etc
# and here is the question..
如何返回初始project/
目录。我期待像bb
这样的东西,其中b回到之前的状态。是这样做的吗?
答案 0 :(得分:2)
在vim中跳转的标准方法之一是使用跳转列表。来自:h jumplist
jumplist Jumps are remembered in a jump list. With the CTRL-O and CTRL-I command you can go to cursor positions before older jumps, and back again. Thus you can move up and down the list.
我建议您阅读整个部分以了解详情。
对于使用<c-o>
的用例,应该返回netrw中的上一个缓冲区。