-
Notifications
You must be signed in to change notification settings - Fork 18
/
lsp-ivy.el
228 lines (201 loc) · 9.06 KB
/
lsp-ivy.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
;;; lsp-ivy.el --- LSP ivy integration -*- lexical-binding: t; -*-
;; Copyright (C) 2019 Sebastian Sturm
;; 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/>.
;; Authors: Sebastian Sturm
;; Oliver Rausch
;; Keywords: languages, debug
;; URL: https://github.com/emacs-lsp/lsp-ivy
;; Package-Requires: ((emacs "25.1") (dash "2.14.1") (lsp-mode "6.2.1") (ivy "0.13.0"))
;; Version: 0.5
;;
;;; Commentary:
;; This package provides an interactive ivy interface to the workspace symbol
;; functionality offered by lsp-mode. For an alternative implementation based on
;; helm, see https://github.com/emacs-lsp/helm-lsp
;;; Code:
(require 'ivy)
(require 'dash)
(require 'lsp-protocol)
(require 'lsp-mode)
(defgroup lsp-ivy nil
"LSP support for ivy-based symbol completion"
:group 'lsp-mode)
(defcustom lsp-ivy-show-symbol-kind
t
"Whether to show the symbol's kind when showing lsp symbols."
:group 'lsp-ivy
:type 'boolean)
(defcustom lsp-ivy-show-symbol-filename
t
"Whether to show the project-relative path to a symbol's point of definition."
:group 'lsp-ivy
:type 'boolean)
(defcustom lsp-ivy-filter-symbol-kind
nil
"A list of LSP SymbolKind's to filter out."
:group 'lsp-ivy
:type '(repeat integer))
(defcustom lsp-ivy-symbol-kind-to-face
[(" " . nil) ; Unknown - 0
("File" . font-lock-builtin-face) ; File - 1
("Modu" . font-lock-keyword-face) ; Module - 2
("Nmsp" . font-lock-keyword-face) ; Namespace - 3
("Pack" . font-lock-keyword-face) ; Package - 4
("Clss" . font-lock-type-face) ; Class - 5
("Meth" . font-lock-function-name-face) ; Method - 6
("Prop" . font-lock-constant-face) ; Property - 7
("Fld " . font-lock-constant-face) ; Field - 8
("Cons" . font-lock-function-name-face) ; Constructor - 9
("Enum" . font-lock-type-face) ; Enum - 10
("Intf" . font-lock-type-face) ; Interface - 11
("Func" . font-lock-function-name-face) ; Function - 12
("Var " . font-lock-variable-name-face) ; Variable - 13
("Cnst" . font-lock-constant-face) ; Constant - 14
("Str " . font-lock-string-face) ; String - 15
("Num " . font-lock-builtin-face) ; Number - 16
("Bool " . font-lock-builtin-face) ; Boolean - 17
("Arr " . font-lock-builtin-face) ; Array - 18
("Obj " . font-lock-builtin-face) ; Object - 19
("Key " . font-lock-constant-face) ; Key - 20
("Null" . font-lock-builtin-face) ; Null - 21
("EmMm" . font-lock-constant-face) ; EnumMember - 22
("Srct" . font-lock-type-face) ; Struct - 23
("Evnt" . font-lock-builtin-face) ; Event - 24
("Op " . font-lock-function-name-face) ; Operator - 25
("TPar" . font-lock-type-face)] ; TypeParameter - 26
"Mapping between eacho of LSP's SymbolKind and a face.
A vector of 26 cons cells, where the ith cons cell contains
the string representation and face to use for the i+1th
SymbolKind (defined in the LSP)."
:group 'lsp-ivy
:type '(vector
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)
(cons string face)))
(lsp-defun lsp-ivy--goto-symbol
((&SymbolInformation
:location (&Location :uri :range (&Range :start (&Position :line :character)))))
"Jump to selected candidate."
(find-file (lsp--uri-to-path uri))
(goto-char (point-min))
(forward-line line)
(forward-char character))
(lsp-defun lsp-ivy--format-symbol-match
((sym &as &SymbolInformation :kind :location (&Location :uri))
project-root)
"Convert the match returned by `lsp-mode` into a candidate string."
(let* ((sanitized-kind (if (< kind (length lsp-ivy-symbol-kind-to-face)) kind 0))
(type (elt lsp-ivy-symbol-kind-to-face sanitized-kind))
(typestr (if lsp-ivy-show-symbol-kind
(propertize (format "[%s] " (car type)) 'face (cdr type))
""))
(pathstr (if lsp-ivy-show-symbol-filename
(propertize (format " · %s" (file-relative-name (lsp--uri-to-path uri) project-root))
'face font-lock-comment-face) "")))
(concat typestr (lsp-render-symbol-information sym ".") pathstr)))
(lsp-defun lsp-ivy--transform-candidate ((symbol-information &as &SymbolInformation :kind)
filter-regexps? workspace-root)
"Map candidate to nil if it should be excluded based on
`lsp-ivy-filter-symbol-kind' or FILTER-REGEXPS?, otherwise convert it to a
textual representation with the original candidate as property."
(unless (member kind lsp-ivy-filter-symbol-kind)
(let ((textual-representation
(lsp-ivy--format-symbol-match symbol-information workspace-root)))
(when (--all? (string-match-p it textual-representation) filter-regexps?)
(propertize textual-representation 'lsp-ivy-symbol symbol-information)))))
(defun lsp-ivy--workspace-symbol-action (sym-string)
"Jump to the `&SymbolInformation' defined in SYM-STRING."
(lsp-ivy--goto-symbol (get-text-property 0 'lsp-ivy-symbol sym-string)))
(defun lsp-ivy--workspace-symbol (workspaces prompt initial-input)
"Search against WORKSPACES with PROMPT and INITIAL-INPUT."
(if workspaces
(with-lsp-workspaces workspaces
(let* ((non-essential t)
(prev-query nil)
(unfiltered-candidates '())
(workspace-root (lsp-workspace-root)))
(ivy-read
prompt
(lambda (user-input)
(let* ((parts (split-string user-input))
(query (or (car parts) ""))
(filter-regexps? (mapcar #'regexp-quote (cdr parts))))
(unless (string-equal prev-query query)
(setq unfiltered-candidates
(with-lsp-workspaces workspaces
(lsp-request-while-no-input
"workspace/symbol"
(lsp-make-workspace-symbol-params :query query)))))
(setq prev-query query)
(--keep (lsp-ivy--transform-candidate it filter-regexps? workspace-root)
unfiltered-candidates)))
:dynamic-collection t
:require-match t
:initial-input initial-input
:action #'lsp-ivy--workspace-symbol-action
:caller 'lsp-ivy-workspace-symbol)))
(user-error "No LSP workspace active")))
;;;###autoload
(defun lsp-ivy-workspace-symbol (arg)
"`ivy' for lsp workspace/symbol.
When called with prefix ARG the default selection will be symbol at point."
(interactive "P")
(lsp-ivy--workspace-symbol (or (lsp-workspaces)
(gethash (lsp-workspace-root default-directory)
(lsp-session-folder->servers (lsp-session))))
"Workspace symbol: "
(when arg (thing-at-point 'symbol))))
;;;###autoload
(defun lsp-ivy-global-workspace-symbol (arg)
"`ivy' for lsp workspace/symbol for all of the current workspaces.
When called with prefix ARG the default selection will be symbol at point."
(interactive "P")
(lsp-ivy--workspace-symbol
(-uniq (-flatten (ht-values (lsp-session-folder->servers (lsp-session)))))
"Global workspace symbols: "
(when arg (thing-at-point 'symbol))))
;;;###autoload
(defun lsp-ivy-workspace-folders-remove ()
"Remove a project-root from the list of workspace folders."
(interactive)
(let ((session (lsp-session)))
(ivy-read "Select workspace folder to remove: " (lsp-session-folders session)
:preselect (-some->> default-directory (lsp-find-session-folder session))
:action (lambda (folder)
(lsp-workspace-folders-remove folder)
(ivy--kill-current-candidate)))))
(provide 'lsp-ivy)
;;; lsp-ivy.el ends here