NTEmacs

最終更新日:2009-12-15

NTEmacsのウィンドウを最大化して使う。

(defun w32-maximize-frame ()
  "Maximize the current frame"
  (interactive)
  (w32-send-sys-command 61488))

(defun w32-restore-frame ()
  "Restore the current frame"
  (interactive)
  (w32-send-sys-command 61728))

(global-set-key [?\C-z] 'w32-maximize-frame)

iconify-or-deiconify-frame は個人的に使わないので キーバインドを上書きしています。