Emacs android的应用场景与一些疑问

你这是什么时候的 Emacs 二进制?emacs-repository-version 是什么?

安卓的 GUI 库不支持 Emacs 的 “green threads”,这个功能本身也没啥用处,GTK 和 NS 下也容易崩溃,建议用 Eglot。

我也问下Android的鼠标右键(context menu)怎么弄?手指按住目标不放没有反馈

Context menu 是绑定至鼠标案件的功能,而按住目标是选择文字。触屏下没法同时支持这两种操作,所以建议使用旁边的 menu bar 和 tool bar。

感觉和鼠标有出入。按住目标也不只是选择文字。按住文字目标选择文字,按住链接/图片/视频在火狐里都有不一样的menu。Emacs里的目标自然比浏览器多。

Many GUI applications use mouse-3 to display context menus: menus that provide access to various pertinent settings and actions for the location and context of the mouse click. If you prefer this in Emacs over the default function of mouse-3, which is bound to the mouse-save-then-kill command (see Mouse Commands for Editing), you can enable the minor mode context-menu-mode. Then Emacs will show context menus when you click mouse-3.

但是我也不用鼠标右键。我可以绑定到 embark-act. 完美。 (global-set-key [touchscreen-end] #'embark-act)