我看到https://medium.com/@kadek/understanding-vims-jump-list-7e1bfc72cdf0。所以当我这样做时:jumps
,我可以从我所在的位置看到过去和未来的跳跃。我想回到过去的跳6。
:jumps
jump line col file/text
12 1 0 /tmp/uu
11 10 0 /tmp/uu
10 4832 27 * Writing CBASER resets CREADR to 0, so make CWRITER and
9 128 63 arch/arm64/include/asm/io.h
8 125 41 arch/arm64/include/asm/arch_gicv3.h
7 2284 11 gits_write_baser(val, its->base + GITS_BASER + (idx << 3));
6 5011 1 its->base = its_base;
5 4967 0
4 4680 11 its->pre_its_base = pre_its_window[0];
3 4968 25 static int __init its_probe_one(struct resource *res,
2 5238 2 its_probe_one(&res, &np->fwnode, of_node_to_nid(np));
1 5233 37 if (of_address_to_resource(np, 0, &res)) {
>
但是当我6g;
按照上面的链接输入时,什么也没有发生。我该怎么做才能回到6倍之前?(6 次 ctrl-o)。
要返回(在列表中向上),请输入跳转编号,然后输入
CTRL-O
。要前进(在列表中向下),请输入跳转编号,然后输入CTRL-I
(或按 Tab 键)。请参阅
:help jumps
获取更多信息。