无法移动到Emacs中的前一个点

时间:2022-12-27 19:58:49

Let's assume that I am at manual A. I press

我们假设我在手册A.我按

enter 

and I am now at manual B.

我现在是手册B.

How can you return to the previous manual by one command in Emacs?

如何在Emacs中通过一个命令返回上一个手册?

2 个解决方案

#1


Try typing "C-h m" to get a mode list in the help window, there you'll find

尝试键入“C-h m”以获取帮助窗口中的模式列表,您可以在那里找到

...
C-c C-b     help-go-back
...

which seems to work.

这似乎工作。

#2


The subject is a bit misleading. You don't really want to return to the previous point but view the previously browsed manual.

这个主题有点误导。您真的不想返回上一点,但查看以前浏览过的手册。

But while editing, if you jump across the buffer and then want to move the point to the previous place, you can type C-x C-@ which runs pop-global-mark.

但是在编辑时,如果跳过缓冲区然后想要将点移动到上一个位置,则可以键入运行pop-global-mark的C-x C- @。

#1


Try typing "C-h m" to get a mode list in the help window, there you'll find

尝试键入“C-h m”以获取帮助窗口中的模式列表,您可以在那里找到

...
C-c C-b     help-go-back
...

which seems to work.

这似乎工作。

#2


The subject is a bit misleading. You don't really want to return to the previous point but view the previously browsed manual.

这个主题有点误导。您真的不想返回上一点,但查看以前浏览过的手册。

But while editing, if you jump across the buffer and then want to move the point to the previous place, you can type C-x C-@ which runs pop-global-mark.

但是在编辑时,如果跳过缓冲区然后想要将点移动到上一个位置,则可以键入运行pop-global-mark的C-x C- @。