Variable: css-base-mode-map
css-base-mode-map is a variable defined in css-mode.el.gz.
Value
C-M-q prog-indent-sexp
M-q prog-fill-reindent-defun
Documentation
Keymap for css-base-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/css-mode.el.gz
(define-derived-mode css-base-mode prog-mode "CSS"
"Generic mode to edit Cascading Style Sheets (CSS).
This is a generic major mode intended to be inherited by a
concrete implementation. Currently there are two concrete
implementations: `css-mode' and `css-ts-mode'."
(setq-local comment-start "/*")
(setq-local comment-start-skip "/\\*+[ \t]*")
(setq-local comment-end "*/")
(setq-local comment-end-skip "[ \t]*\\*+/")
(setq-local electric-indent-chars
(append css-electric-keys electric-indent-chars))
;; The default "." creates ambiguity with class selectors.
(setq-local imenu-space-replacement " "))