forked from emacs-lsp/lsp-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lsp-haxe.el
153 lines (131 loc) · 6.44 KB
/
lsp-haxe.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
144
145
146
147
148
149
150
151
152
153
;;; lsp-haxe.el --- Haxe Client settings -*- lexical-binding: t; -*-
;; Copyright (C) 2019 Yannik Böttcher
;; Author: Yannik Böttcher <[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:
;; lsp-haxe client
;;; Code:
;; adapted from clangd configuration in lsp-clients.el
(require 'lsp-mode)
(defgroup lsp-haxe nil
"LSP support for Haxe using the language server provided by vshaxe"
:group 'lsp-mode
:link '(url-link "https://github.com/vshaxe/vshaxe"))
;; Haxe ls is executed via node
(defcustom lsp-clients--haxe-executable "node"
"Haxe ls is executed via node."
:group 'lsp-haxe
:risky t
:type 'file)
;; The server.js is being passed to node as an argument
(defcustom lsp-clients--haxe-server-path (expand-file-name "~/.haxe-language-server/bin/server.js")
"The path to the server.js file."
:group 'lsp-haxe
:risky t
:type 'file)
;; Build the actual Haxe ls command.
(defun lsp-clients--haxe-command ()
"Haxe ls startup command."
`(,lsp-clients--haxe-executable ,lsp-clients--haxe-server-path))
;; https://github.com/yyoncho/lsp-mode/commit/72186e1adc089d772c87ed8f287eb3333b66bfa7
;; This is to force the client to send a didChangeConfiguration Message. Without this, the server won't start, https://github.com/vshaxe/vshaxe/issues/328#issuecomment-471809093
(defcustom lsp-clients--haxe-settings (list :haxe.executable "haxe")
"Lsp clients configuration settings."
:group 'lsp-haxe
:risky t
:type '(repeat string))
;; https://github.com/emacs-lsp/lsp-mode/blob/150a933694349df960dc8fd7a15e04f5727e6433/lsp-rust.el#L251
(defun lsp-clients--haxe-processStart (_workspace params)
"Handle processStart notification. Just logs PARAMS."
(lsp-log (gethash "title" params)))
(defcustom lsp-haxe-executable "haxe" nil
:type 'file)
(defcustom lsp-haxe-configurations nil nil :type
'(repeat string))
(defcustom lsp-haxe-display-configurations nil nil :type
'(repeat string))
(defcustom lsp-haxe-display-server nil nil :type 'string)
(defcustom lsp-haxe-display-port "auto" nil :type 'number)
(defcustom lsp-haxe-enable-compilation-server t nil :type 'boolean)
(defcustom lsp-haxe-task-presentation
'((echo . t)
(reveal . "always")
(focus . :json-false)
(panel . "shared")
(showReuseMessage . t)
(clear . :json-false))
nil
:type 'plist)
(defcustom lsp-haxe-enable-code-lens t nil :type 'boolean)
(defcustom lsp-haxe-enable-diagnostics t nil :type 'boolean)
(defcustom lsp-haxe-enable-server-view nil nil :type 'boolean)
(defcustom lsp-haxe-enable-methods-view nil nil :type 'boolean)
(defcustom lsp-haxe-enable-signature-help-documentation t nil :type 'boolean)
(defcustom lsp-haxe-diagnostics-path-filter "${workspaceRoot}" nil :type 'string)
(defcustom lsp-haxe-build-completion-cache t nil :type 'boolean)
(defcustom lsp-haxe-enable-completion-cache-warning t nil :type 'boolean)
(defcustom lsp-haxe-code-generation nil nil :type 'string)
(defcustom lsp-haxe-exclude
["zpp_nape"]
nil :type
'(repeat string))
(defcustom lsp-haxe-postfix-completion nil nil :type 'string)
(lsp-register-custom-settings
'(("haxe.postfixCompletion" lsp-haxe-postfix-completion)
("haxe.exclude" lsp-haxe-exclude)
("haxe.codeGeneration" lsp-haxe-code-generation)
("haxe.enableCompletionCacheWarning" lsp-haxe-enable-completion-cache-warning t)
("haxe.buildCompletionCache" lsp-haxe-build-completion-cache t)
("haxe.diagnosticsPathFilter" lsp-haxe-diagnostics-path-filter)
("haxe.enableSignatureHelpDocumentation" lsp-haxe-enable-signature-help-documentation t)
("haxe.enableMethodsView" lsp-haxe-enable-methods-view t)
("haxe.enableServerView" lsp-haxe-enable-server-view t)
("haxe.enableDiagnostics" lsp-haxe-enable-diagnostics t)
("haxe.enableCodeLens" lsp-haxe-enable-code-lens t)
("haxe.taskPresentation" lsp-haxe-task-presentation)
("haxe.enableCompilationServer" lsp-haxe-enable-compilation-server t)
("haxe.displayPort" lsp-haxe-display-port)
("haxe.displayServer" lsp-haxe-display-server)
("haxe.displayConfigurations" lsp-haxe-display-configurations)
("haxe.configurations" lsp-haxe-configurations)
("haxe.executable" lsp-haxe-executable)))
(lsp-register-client
(make-lsp-client :new-connection (lsp-stdio-connection
#'lsp-clients--haxe-command)
:major-modes '(haxe-mode)
; force didChangeConfiguration message
:initialized-fn (lambda (workspace)
(with-lsp-workspace workspace
(lsp--set-configuration
(lsp-configuration-section "haxe"))))
:priority -1
:server-id 'haxe
:initialized-fn (lambda (_workspace)
'(("sendMethodResults" . t)
("haxelibConfig"
("executable" . "haxelib"))
("displayServerConfig"
("print"
("reusing" . :json-false)
("completion" . :json-false))
("arguments" .
[])
("env")
("path" . "haxe"))
("displayArguments" . ["build.hxml"])))
:notification-handlers (lsp-ht ("haxe/progressStart" 'lsp-clients--haxe-processStart)
("haxe/progressStop" 'ignore)
("haxe/didDetectOldPreview" 'ignore)
("haxe/didChangeDisplayPort" 'ignore))))
(provide 'lsp-haxe)
;;; lsp-haxe.el ends here