Emacs 中的光标类型

发布于 2024-09-18 07:01:09 字数 61 浏览 7 评论 0原文

我应该在 .emacs 文件中添加什么内容才能将所有框架的光标类型更改为 box

What do I put in my .emacs file to change the cursor type for all frames to box?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

只有一腔孤勇 2024-09-25 07:01:09

在 Emacs 23.2 之前,您应该这样做:

(setq default-cursor-type 'box)

注意,default-cursor-type 是一个自 Emacs 23.2 以来已过时的变量。
您应该使用 cursor-type 变量代替:

(set-default 'cursor-type 'box)

Before Emacs 23.2, you should do :

(setq default-cursor-type 'box)

Be careful, default-cursor-type is a variable that is obsolete since Emacs 23.2.
You should use cursor-type variable instead :

(set-default 'cursor-type 'box)
半葬歌 2024-09-25 07:01:09

明白了,它是:

(setq default-cursor-type 'box)

Got it, it's:

(setq default-cursor-type 'box)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文