by the user, but before the rest of the history entry that has
been inserted. If `end-of-line', point will be positioned at the
end of the current logical (not visual) line after insertion."
+ :version "26.1"
:type '(radio (const :tag "Stay after input" after-input)
(const :tag "Move to end of line" end-of-line))
:group 'comint)
(defcustom byte-compile-cond-use-jump-table t
"Compile `cond' clauses to a jump table implementation (using a hash-table)."
+ :version "26.1"
:group 'bytecomp
:type 'boolean)
If t, replace the original text without any confirmation.
If nil, don't replace the original text and show the result in a new buffer.
If neither t nor nil, ask user for confirmation."
+ :version "26.1"
:type '(choice (const :tag "Never" nil)
(const :tag "Ask the user" ask)
(const :tag "Always" t))
(defcustom gnus-cloud-storage-method (if (featurep 'epg) 'epg 'base64-gzip)
"Storage method for cloud data, defaults to EPG if that's available."
+ :version "26.1"
:group 'gnus-cloud
:type '(radio (const :tag "No encoding" nil)
(const :tag "Base64" base64)
(defcustom gnus-cloud-interactive t
"Whether Gnus Cloud changes should be confirmed."
+ :version "26.1"
:group 'gnus-cloud
:type 'boolean)
(defcustom image-dired-cmd-optipng-program (executable-find "optipng")
"The file name of the `optipng' program."
+ :version "26.1"
:type '(choice (const :tag "Not Set" nil) file)
:group 'image-dired)
"Arguments passed to `image-dired-optipng-program'.
Available format specifiers are described in
`image-dired-cmd-create-thumbnail-options'."
+ :version "26.1"
:type '(repeat (string :tag "Argument"))
:link '(url-link "man:optipng(1)")
:group 'image-dired)
in this list with a matching MIME-TYPE and successful TEST is
selected. Only if none matches, the standard `mailcap-mime-data'
is consulted."
+ :version "26.1"
:type '(repeat
(list
(choice (function :tag "Function or mode")
construct is like \"foo * bar\" or \"foo &bar\", and this variable is non-nil
\(the default), the construct will be fontified as a declaration if there is
white space either before or after the operator, but not both."
+ :version "26.1"
:type 'boolean
:group 'c)
If you change this variable's value, call the function
`c-make-noise-macro-regexps' to set the necessary internal variables (or do
this implicitly by reinitializing C/C++/Objc Mode on any buffer)."
+ :version "26.1"
:type '(repeat :tag "List of names" string)
:group 'c)
(put 'c-noise-macro-names 'safe-local-variable #'c-string-list-p)
"A list of names of macros \(or compiler extensions like \"__attribute__\")
which optionally have arguments in parentheses, and which expand to nothing.
These are recognized by CC Mode only in declarations."
+ :version "26.1"
:type '(regexp :tag "List of names (possibly empty)" string)
:group 'c)
(put 'c-noise-macro-with-parens-names 'safe-local-variable #'c-string-list-p)
(defcustom flymake-start-on-flymake-mode t
"Start syntax check when `flymake-mode' is enabled.
Specifically, start it when the buffer is actually displayed."
+ :version "26.1"
:type 'boolean)
(define-obsolete-variable-alias 'flymake-start-syntax-check-on-find-file
(defcustom flymake-wrap-around t
"If non-nil, moving to errors wraps around buffer boundaries."
+ :version "26.1"
:type 'boolean)
(when (fboundp 'define-fringe-bitmap)
(defcustom grep-use-null-filename-separator 'auto-detect
"If non-nil, use `grep's `--null' option.
This is done to disambiguate file names in `grep's output."
+ :version "26.1"
:type '(choice (const :tag "Do Not Use `--null'" nil)
(const :tag "Use `--null'" t)
(other :tag "Not Set" auto-detect))
(defcustom js-indent-align-list-continuation t
"Align continuation of non-empty ([{ lines in `js-mode'."
+ :version "26.1"
:type 'boolean
:group 'js)
This is a non empty list of strings, the checker tool possibly
followed by required arguments. Once launched it will receive
the Perl source to be checked as its standard input."
+ :version "26.1"
:group 'perl
:type '(repeat string))
required arguments. Once launched it will receive the Python source to be
checked as its standard input.
To use `flake8' you would set this to (\"flake8\" \"-\")."
+ :version "26.1"
:group 'python-flymake
:type '(repeat string))
If COLUMN or TYPE are nil or that index didn't match, that
information is not present on the matched line and a default will
be used."
+ :version "26.1"
:group 'python-flymake
:type '(list regexp
(integer :tag "Line's index")
(\"^[EW][0-9]+\" . :note))
By default messages are considered errors."
+ :version "26.1"
:group 'python-flymake
:type `(alist :key-type (regexp)
:value-type (symbol)))
(defcustom ruby-flymake-use-rubocop-if-available t
"Non-nil to use the Rubocop Flymake backend.
Only takes effect if Rubocop is installed."
+ :version "26.1"
:type 'boolean
:group 'ruby
:safe 'booleanp)
(defcustom ruby-rubocop-config ".rubocop.yml"
"Configuration file for `ruby-flymake-rubocop'."
+ :version "26.1"
:type 'string
:group 'ruby
:safe 'stringp)
(defgroup less-css nil
"Less CSS mode."
+ :version "26.1"
:prefix "less-css-"
:group 'css)
(defcustom tex-chktex-program "chktex"
"ChkTeX executable to use for linting TeX files."
+ :version "26.1"
:type 'string
:link '(url-link "man:chktex(1)")
:group 'tex-flymake)
(defcustom tex-chktex-extra-flags nil
"Extra command line flags for `tex-chktex-program'."
+ :version "26.1"
:type '(repeat string)
:group 'tex-flymake)