2010-09-08 43 views

回答

21

Emacs的23.2之前,你应该做的:

(setq default-cursor-type 'box) 

小心,default-cursor-type是一个变量,它是过时的,因为Emacs的23.2。 您应该使用cursor-type变量而不是:

(set-default 'cursor-type 'box) 
+5

另请注意,使用cygwin时,mintty会覆盖光标(右键单击mintty标题以获取选项并设置您喜欢的选项)。 – ron 2012-01-05 17:31:55

3

得到它,它是:

(setq default-cursor-type 'box)

+1

不要忘了给自己对号。 :) – Robusto 2010-09-08 18:53:00