forked from emacs-lsp/lsp-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lsp-dart.el
101 lines (81 loc) · 3.38 KB
/
lsp-dart.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
;;; lsp-dart.el --- LSP mode -*- lexical-binding: t; -*-
;; Copyright (C) 2019 Takeshi Tsukamoto
;; Author: Takeshi Tsukamoto <[email protected]>
;; Keywords: languages
;; 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:
;; dart analysis server client
;;; Code:
(defgroup lsp-dart nil
"LSP support for Dart, using dart_language_server."
:group 'lsp-mode
:link '(url-link "https://github.com/natebosch/dart_language_server"))
(defcustom lsp-clients-dart-server-command
(expand-file-name (if (equal system-type 'windows-nt)
"~/Pub/Cache/bin/dart_language_server"
"~/.pub-cache/bin/dart_language_server"))
"The dart_language_server executable to use."
:group 'lsp-dart
:type 'file)
(defun lsp-dart--lsp-command ()
"Generate LSP startup command."
(let ((dls lsp-clients-dart-server-command)
(pub (executable-find "pub")))
(if pub
(if (executable-find dls)
dls
(message "Installing dart_language_server...")
(shell-command (concat pub " global activate dart_language_server"))
(message "Installed dart_language_server")
dls)
(error "Please ensure /path/to/dart-sdk/bin is on system path"))))
(lsp-register-client
(make-lsp-client :new-connection (lsp-stdio-connection
'lsp-dart--lsp-command)
:major-modes '(dart-mode)
:priority -2
:server-id 'dart_language_server))
(defgroup lsp-dart-analysis nil
"LSP support for Dart, using dart analysis server."
:group 'lsp-mode
:link '(url-link "https://github.com/dart-lang/sdk/tree/master/pkg/analysis_server")
:package-version '(lsp-mode . "6.1"))
(defcustom lsp-dart-analysis-sdk-dir "~/flutter/bin/cache/dart-sdk/"
"Install directory for dart-sdk."
:group 'lsp-dart-analysis
:risky t
:type 'directory
:package-version '(lsp-mode . "6.1"))
(defcustom lsp-dart-analysis-server-command nil
"The analysis_server executable to use"
:type '(repeat string)
:group 'lsp-dart-analysis
:package-version '(lsp-mode . "6.1"))
(defun lsp-dart--analysis-server-command ()
"Generate LSP startup command."
(or
lsp-dart-analysis-server-command
`(,(expand-file-name (f-join lsp-dart-analysis-sdk-dir "bin/dart"))
,(expand-file-name (f-join lsp-dart-analysis-sdk-dir "bin/snapshots/analysis_server.dart.snapshot"))
"--lsp")))
(lsp-register-client
(make-lsp-client :new-connection
(lsp-stdio-connection
'lsp-dart--analysis-server-command)
:major-modes '(dart-mode)
:priority -1
:server-id 'dart_analysis_server))
(provide 'lsp-dart)
;;; lsp-dart.el ends here
;; Local Variables:
;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
;; End: