Variable: css-mode-map

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

Value

C-M-i    completion-at-point
C-M-q    prog-indent-sexp
C-c C-f  css-cycle-color-format
C-h S    css-lookup-symbol
M-q      prog-fill-reindent-defun

Documentation

Keymap used in css-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/css-mode.el.gz
(defvar-keymap css-mode-map
  :doc "Keymap used in `css-mode'."
  "<remap> <info-lookup-symbol>" #'css-lookup-symbol
  ;; `info-complete-symbol' is not used.
  "<remap> <complete-symbol>" #'completion-at-point
  "C-c C-f" #'css-cycle-color-format
  :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"]))