Chinaunix首页 | 论坛 | 博客
  • 博客访问: 444282
  • 博文数量: 191
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 172
  • 用 户 组: 普通用户
  • 注册时间: 2013-10-31 14:35
个人简介

没有时间把一件事情做好,却有时间把一件事情反复做!

文章分类

全部博文(191)

文章存档

2016年(2)

2015年(74)

2014年(111)

2013年(4)

我的朋友

分类: WINDOWS

2015-03-06 16:34:59

原文地址:windows下emacs启动时最大化 作者:jiushen

首先添加环境变量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)
---------------------------------------
阅读(1458) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~