禁用瞬态标记模式
在我的 .emacs
文件中,
(setq transient-mark-mode nil)
当我启动 Emacs 时,transient-mark-mode
被激活。 调用transient-mark-mode
给出消息“transient-mark-mode已禁用”,但Control-Space仍然开始突出显示一个区域。
有办法关掉它吗?
In my .emacs
file, I have
(setq transient-mark-mode nil)
and yet transient-mark-mode
is activated when I start up Emacs. Calling transient-mark-mode
gives the message "transient-mark-mode disabled", but Control-Space still starts highlighting a region.
Is there a way to turn this off?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能还启用了 cua-mode,它具有与transient-mark-mode 类似的区域突出显示功能。 要测试这个,只需
Mx cua-mode
(打开/关闭它)并查看它是否禁用突出显示。来自
Ch f cua-mode
帮助:You might have
cua-mode
enabled as well which has similar region highlighting totransient-mark-mode
. To test this justM-x cua-mode
(to toggle it on/off) and see if it disables the highlighting.From
C-h f cua-mode
help: