是否有一种模式允许我将光标放在屏幕上的任何位置(包括在行结束后),通过鼠标点击或通过键?
修改
基于图片模式的次要模式,它完全符合问题的要求。
(define-minor-mode free-point-mode
"Place the cursor anywhere on the screen, irrespective of linebreaks, by clicking or using the arrow keys"
nil nil
`((,(kbd "<mouse-1>") . picture-mouse-set-point)
(,[remap right-char] . picture-forward-column)
(,[remap left-char] . picture-backward-column)
(,[remap previous-line] . picture-move-up)
(,[remap next-line] . picture-move-down))
(require 'picture))
(defadvice picture-mouse-set-point (after no-region activate)
(deactivate-mark))
答案 0 :(得分:5)
picture-mode
可让您将光标定位在屏幕上的任何位置。不要让这个名字欺骗你,这不是关于图像:
编辑由文本字符组成的图片(例如,图片 将注册表划分为字段,作为程序中的注释), 使用命令M-x picture-mode进入图像模式。