Function: dcl-mode-menu

dcl-mode-menu is an interactive and byte-compiled function defined in dcl-mode.el.gz.

Signature

(dcl-mode-menu ARG1)

Documentation

Menu for DCL-mode buffers.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
(easy-menu-define dcl-mode-menu dcl-mode-map
  "Menu for DCL-mode buffers."
  '("DCL"
    ["Buffer index menu" imenu]
    "---"
    ["Beginning of statement" dcl-backward-command]
    ["End of statement" dcl-forward-command]
    ["Back to indentation" dcl-back-to-indentation]
    ["Indent line/insert tab" dcl-tab]
    ["Indent command" dcl-indent-command]
    ["Split line" dcl-split-line]
    ["Delete indentation" dcl-delete-indentation]
    "---"
    ["Set option" dcl-set-option]
    ["Save changed options" dcl-save-nondefault-options]
    ["Save all options" dcl-save-all-options]
    "---"
    ["Complete template tag" tempo-complete-tag]
    ["Next template mark" tempo-forward-mark]
    ["Previous template mark" tempo-backward-mark]))