Go to the first, previous, next, last section, table of contents.

変数の値の編集

M-x list-options
すべてのオプションの名前,値,説明をバッファに表示します.
M-x edit-options
オプションのリストを編集することによりオプションの値を変えます.

M-x list-optionsは,Emacsのバッファ`*List Options*'にすべて のEmacsオプション変数のリストを表示します.Emacsオプションには,その説明 と現在の値が合わせて表示されます.以下にその一部を示します.

;; exec-path:
("." "/usr/local/bin" "/usr/ucb" "/bin" "/usr/bin" "/u2/emacs/etc")
*List of directories to search programs to run in subprocesses.
Each element is a string (directory name)
or nil (try the default directory).
;;
;; fill-column:
75
*Column beyond which automatic line-wrapping should happen.
Automatically becomes local when set in any fashion.
;;

M-x edit-optionsは,さらに`*List Options*'バッファを選択し ます.このバッファの主モードはOptionsモードで,オプションをポイントで指 定してその値を変えるコマンドが提供されます.

s
ポイントのそばにある変数にミニバッファから読んだ値を設定します.
x
ポイントのそばにある変数の値をトグルします.値がnilならttならnilにします.
1
ポイントのそばにある変数にtを設定します.
0
ポイントのそばにある変数にnilを設定します.
n
p
次または前の変数に移動します.

Go to the first, previous, next, last section, table of contents.