开发者

Cursor type in Emacs

开发者 https://www.devze.com 2023-01-15 22:32 出处:网络
What do I put in my .emacs fil开发者_StackOverflow社区e to change the cursor type for all frames to box?Before Emacs 23.2, you should do :

What do I put in my .emacs fil开发者_StackOverflow社区e to change the cursor type for all frames to 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)


Got it, it's:

(setq default-cursor-type 'box)

0

精彩评论

暂无评论...
验证码 换一张
取 消