Function: octave-help-mode

octave-help-mode is an interactive and byte-compiled function defined in octave.el.gz.

Signature

(octave-help-mode)

Documentation

Major mode for displaying Octave documentation.

In addition to any hooks its parent mode help-mode might have run, this mode runs the hook octave-help-mode-hook, as the final or penultimate step during initialization.

C-h a octave-lookfor
C-h d octave-help
M-. octave-find-definition

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/octave.el.gz
(define-derived-mode octave-help-mode help-mode "OctHelp"
  "Major mode for displaying Octave documentation."
  :abbrev-table nil
  :syntax-table octave-mode-syntax-table
  (eval-and-compile (require 'help-mode))
  ;; Don't highlight `EXAMPLE' as elisp symbols by using a regexp that
  ;; can never match.
  (setq-local help-xref-symbol-regexp regexp-unmatchable))