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

How do I turn on Abbrevs by default just in mode XXX?

Put this in your .emacs file:

  (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.