首先添加环境变量HOME,这里我设成是
C:\Documents and Settings\username
在home目录下新建_emacs文件,因为windows下无法建.emacs文件
在_emacs文件中加入以下内容即可
---------------------------------------
(defun w32-restore-frame ()
"Restore a minimized frame"
(interactive)
(w32-send-sys-command 61728))
(defun w32-maximize-frame ()
"Maximize the current frame"
(interactive)
(w32-send-sys-command 61488))
(w32-maximize-frame)
---------------------------------------
阅读(1518) | 评论(0) | 转发(0) |