Variable: css-mode--menu

css-mode--menu is a variable defined in css-mode.el.gz.

Value

("CSS" :help "CSS-specific features"
 ["Reformat block" fill-paragraph :help
  "Reformat declaration block or fill comment at point"]
 ["Cycle color format" css-cycle-color-format :help
  "Cycle color at point between different formats"]
 "-"
 ["Describe symbol" css-lookup-symbol :help
  "Display documentation for a CSS symbol"]
 ["Complete symbol" completion-at-point :help
  "Complete symbol before point"])

Documentation

Menu bar for css-mode

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/css-mode.el.gz
(defvar css-mode--menu
  '("CSS"
    :help "CSS-specific features"
    ["Reformat block" fill-paragraph
     :help "Reformat declaration block or fill comment at point"]
    ["Cycle color format" css-cycle-color-format
     :help "Cycle color at point between different formats"]
    "-"
    ["Describe symbol" css-lookup-symbol
     :help "Display documentation for a CSS symbol"]
    ["Complete symbol" completion-at-point
     :help "Complete symbol before point"])
    "Menu bar for `css-mode'")