Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该在我的 .emacs 文件中放入什么来将所有帧的光标类型更改为box?
box
在 Emacs 23.2 之前,你应该这样做:
(setq default-cursor-type 'box)
请注意,default-cursor-type这是一个自 Emacs 23.2 以来已过时的变量。您应该改用cursor-type变量:
default-cursor-type
cursor-type
(set-default 'cursor-type 'box)
明白了,就是: