Emacs 中的光标类型
我应该在 .emacs 文件中添加什么内容才能将所有框架的光标类型更改为 box
?
What do I put in my .emacs file to change the cursor type for all frames to box
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Emacs 23.2 之前,您应该这样做:
注意,
default-cursor-type
是一个自 Emacs 23.2 以来已过时的变量。您应该使用
cursor-type
变量代替:Before Emacs 23.2, you should do :
Be careful,
default-cursor-type
is a variable that is obsolete since Emacs 23.2.You should use
cursor-type
variable instead :明白了,它是:
(setq default-cursor-type 'box)
Got it, it's:
(setq default-cursor-type 'box)