What do I put in my .emacs file to change the cursor type for all frames to box
?
views:
42answers:
2Don't forget to give yourself the checkmark. :)
Robusto
2010-09-08 18:53:00
+1
A:
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)
Jérôme Radix
2010-09-09 07:55:44