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

XXX モードに対してデフォルトで略語モードを設定したいのですが, どうしたらよいのですか?

.emacs ファイルに次のように付け加えてください:

  (condition-case ()
      (read-abbrev-file nil t)
    (file-error nil))
  (setq XXX-mode-hook
        (function
         (lambda ()
           (setq abbrev-mode t))))

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