mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 09:14:18 +00:00
; Fix :type of 'yaml-ts-mode-yamllint-options'
* lisp/textmodes/yaml-ts-mode.el (yaml-ts-mode-yamllint-options): Fix :type and doc string.
This commit is contained in:
parent
45089f9588
commit
5290b5dddb
1 changed files with 5 additions and 2 deletions
|
|
@ -47,10 +47,13 @@
|
|||
:group 'languages)
|
||||
|
||||
(defcustom yaml-ts-mode-yamllint-options nil
|
||||
"Additional options to pass to yamllint command used for Flymake support."
|
||||
"Additional options to pass to yamllint command used for Flymake support.
|
||||
If non-nil, this should be a single string with command-line options
|
||||
for the yamllint command, with individual options separated by whitespace."
|
||||
:group 'yaml-ts-mode
|
||||
:version "31.1"
|
||||
:type 'string)
|
||||
:type '(choice (const :tag "None" nil)
|
||||
(string :tag "Options as a single string")))
|
||||
|
||||
(defvar yaml-ts-mode--syntax-table
|
||||
(let ((table (make-syntax-table)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue