Variable: css-lookup-url-format
css-lookup-url-format is a customizable variable defined in
css-mode.el.gz.
Value
"https://developer.mozilla.org/en-US/docs/Web/CSS/%s?raw¯os"
Documentation
Format for a URL where CSS documentation can be found.
The format should include a single "%s" substitution. The name of the CSS property, @-id, pseudo-class, or pseudo-element to look up will be substituted there.
This variable was added, or its default value changed, in Emacs 26.1.
Probably introduced at or before Emacs version 26.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/css-mode.el.gz
(defcustom css-lookup-url-format
"https://developer.mozilla.org/en-US/docs/Web/CSS/%s?raw¯os"
"Format for a URL where CSS documentation can be found.
The format should include a single \"%s\" substitution.
The name of the CSS property, @-id, pseudo-class, or pseudo-element
to look up will be substituted there."
:version "26.1"
:type 'string
:group 'css)