このエントリーをはてなブックマークに追加

emacsを起動すると最初に立ち上がるのがスタートアップメッセージです。 ディストリビューションやバージョンによって多少違いがありますが、 おおむね以下のようなメッセージが出るのではないかと思います。

Welcome to GNU Emacs, a part of the GNU operating system.

Type C-l to begin editing.

Get help           C-h  (Hold down CTRL and press h)
Emacs manual       C-h r
Emacs tutorial     C-h t           Undo changes     C-x u
Buy manuals        C-h C-m         Exit Emacs       C-x C-c
Browse manuals     C-h i
Activate menubar   F10  or  ESC `  or   M-`
(`C-' means use the CTRL key.  `M-' means use the Meta (or Alt) key.
If you have no Meta key, you may instead type ESC followed by the character.)

GNU Emacs 22.1.1 (mac-apple-darwin)
 of 2013-09-21 on housecat.apple.com
Copyright (C) 2007 Free Software Foundation, Inc.

GNU Emacs comes with ABSOLUTELY NO WARRANTY; type C-h C-w for full details.
Emacs is Free Software--Free as in Freedom--so you can redistribute copies
of Emacs and modify it; type C-h C-c to see the conditions.
Type C-h C-d for information on getting the latest version.

If an Emacs session crashed recently, type Meta-x recover-session RET
to recover the files you were editing.

この画面を抑止して、編集画面に直接遷移するように変更するには以下の行を設定ファイルに加えます。

(setq inhibit-startup-message t)



記事一覧へ