forked from emacs-lsp/lsp-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lsp-yaml.el
143 lines (117 loc) · 4.46 KB
/
lsp-yaml.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
;;; lsp-yaml.el --- LSP YAML server integration -*- lexical-binding: t; -*-
;; Copyright (C) 2019 Aya Igarashi
;; Author: Aya Igarashi <[email protected]>
;; Keywords:
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;;; Code:
(require 'lsp-mode)
(defgroup lsp-yaml nil
"LSP support for YAML, using yaml-language-server."
:group 'lsp-mode
:link '(url-link "https://github.com/redhat-developer/yaml-language-server")
:package-version '(lsp-mode . "6.2"))
(defcustom lsp-yaml-format-enable t
"Enable/disable default YAML formatter."
:type 'boolean
:group 'lsp-yaml
:package-version '(lsp-mode . "6.2"))
(defcustom lsp-yaml-single-quote nil
"Use single quote instead of double quotes."
:type 'boolean
:group 'lsp-yaml
:package-version '(lsp-mode . "6.2"))
(defcustom lsp-yaml-bracket-spacing t
"Print spaces between brackets in objects."
:type 'boolean
:group 'lsp-yaml
:package-version '(lsp-mode . "6.2"))
(defcustom lsp-yaml-prose-wrap "preserve"
"Options for prose-wrap.
Always: wrap prose if it exeeds the print width.
Never: never wrap the prose.
Preserve: wrap prose as-is."
:type '(choice
(const "always")
(const "never")
(const "preserve"))
:group 'lsp-yaml
:package-version '(lsp-mode . "6.2"))
(defcustom lsp-yaml-print-width 80
"Specify the line length that the printer will wrap on."
:type 'number
:group 'lsp-yaml
:package-version '(lsp-mode . "6.2"))
(defcustom lsp-yaml-validate t
"Enable/disable validation feature."
:type 'boolean
:group 'lsp-yaml
:package-version '(lsp-mode . "6.2"))
(defcustom lsp-yaml-hover t
"Enable/disable hover feature."
:type 'boolean
:group 'lsp-yaml
:package-version '(lsp-mode . "6.2"))
(defcustom lsp-yaml-completion t
"Enable/disable completion feature."
:type 'boolean
:group 'lsp-yaml
:package-version '(lsp-mode . "6.2"))
(defcustom lsp-yaml-schemas (make-hash-table)
"Associate schemas to YAML files in a glob pattern."
:type '(restricted-sexp :match-alternatives (hash-table-p))
:group 'lsp-yaml
:package-version '(lsp-mode . "6.2"))
(defcustom lsp-yaml-schema-store-enable t
"Enable/disable JSON Schema store. When set to true, available YAML
schemas will be automatically pulled from the store."
:type 'boolean
:group 'lsp-yaml
:package-version '(lsp-mode . "6.2"))
(defcustom lsp-yaml-custom-tags nil
"Custom tags for the parser to use."
:type '(repeat string)
:group 'lsp-yaml
:package-version '(lsp-mode . "6.2"))
(lsp-register-custom-settings
'(("yaml.format.enable" lsp-yaml-format-enable t)
("yaml.format.singleQuote" lsp-yaml-single-quote t)
("yaml.format.bracketSpacing" lsp-yaml-bracket-spacing)
("yaml.format.proseWrap" lsp-yaml-prose-wrap)
("yaml.format.printWidth" lsp-yaml-print-width)
("yaml.validate" lsp-yaml-validate t)
("yaml.hover" lsp-yaml-hover t)
("yaml.completion" lsp-yaml-completion t)
("yaml.schemas" lsp-yaml-schemas)
("yaml.schemaStore.enable" lsp-yaml-schema-store-enable t)
("yaml.customTags" lsp-yaml-custom-tags)))
(defcustom lsp-yaml-server-command '("yaml-language-server" "--stdio")
"Command to start yaml-languageserver."
:type '(repeat string)
:group 'lsp-yaml
:package-version '(lsp-mode . "6.2"))
(lsp-register-client
(make-lsp-client :new-connection (lsp-stdio-connection
(lambda () lsp-yaml-server-command))
:major-modes '(yaml-mode)
:priority 0
:server-id 'yamlls
:initialized-fn (lambda (workspace)
(with-lsp-workspace workspace
(lsp--set-configuration
(lsp-configuration-section "yaml"))))))
(provide 'lsp-yaml)
;;; lsp-yaml.el ends here
;; Local Variables:
;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
;; End: