-
Notifications
You must be signed in to change notification settings - Fork 29
/
ccls-code-lens.el
158 lines (140 loc) · 5.76 KB
/
ccls-code-lens.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
;;; -*- lexical-binding: t; -*-
;; Copyright (C) 2017 Tobias Pisani
;; Copyright (C) 2018-2020 Fangrui Song
;; Permission is hereby granted, free of charge, to any person obtaining a copy
;; of this software and associated documentation files (the "Software"), to deal
;; in the Software without restriction, including without limitation the rights
;; to use, copy, modify, merge, publish, distribute, sublicense, and-or sell
;; copies of the Software, and to permit persons to whom the Software is
;; furnished to do so, subject to the following conditions:
;; The above copyright notice and this permission notice shall be included in
;; all copies or substantial portions of the Software.
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
;; SOFTWARE.
;;; Code:
(require 'ccls-common)
(defgroup ccls-code-lens nil
"ccls code lens."
:group 'tools
:group 'ccls)
(defcustom ccls-code-lens-position 'end
"The position to put code lens overlays."
:type '(choice (const end) (const inplace))
:group 'ccls-code-lens)
(defface ccls-code-lens-face
'((t :inherit shadow))
"The face used for code lens overlays."
:group 'ccls-code-lens)
(defface ccls-code-lens-mouse-face
'((t :box t))
"The face used for code lens overlays."
:group 'ccls-code-lens)
;; ---------------------------------------------------------------------
;; Codelens
;;
;; Enable by calling `ccls-request-code-lens'
;; Clear them away using `ccls-clear-code-lens'
;;
;; TODO:
;; - Find a better way to display them.
;;
;; - Instead of adding multiple lenses to one symbol, append the text
;; of the new one to the old. This will fix flickering when moving
;; over lenses.
;;
;; - Add a global option to request code lenses on automatically
;; ---------------------------------------------------------------------
(defun ccls--make-code-lens-string (lpad command0 &optional rpad)
"."
(-let ((map (make-sparse-keymap))
((&Command :title :command :arguments?) command0))
(define-key map [mouse-1]
(lambda () (interactive)
(when-let ((xrefs (lsp--locations-to-xref-items
(lsp--send-execute-command command arguments?))))
(lsp-show-xrefs xrefs nil t))))
(propertize (concat lpad title rpad)
'face 'ccls-code-lens-face
'mouse-face 'ccls-code-lens-mouse-face
'local-map map)))
(defun ccls--code-lens-callback (result)
"."
(overlay-recenter (point-max))
(ccls-clear-code-lens)
(setq
result
(seq-sort
(lambda (x y)
(let ((xl (aref x 2)) (yl (aref y 2)))
(if (/= xl yl) (< xl yl) (< (aref x 3) (aref y 3)))))
(seq-map (lambda (lens)
(-let* (((&CodeLens :command? :range) lens)
((&Range :start :end) range))
(vector (lsp:position-line start) (lsp:position-character start)
(lsp:position-line end) (lsp:position-character end) command?)
)) result)))
(save-excursion
(widen)
(goto-char 1)
(let ((line 0) (col 0) ov)
(seq-doseq (lens result)
(-let (([l0 c0 l1 c1 command?] lens))
(pcase ccls-code-lens-position
('end
(forward-line (- l0 line))
(if (and ov (= l0 line))
(overlay-put ov 'display
(concat (overlay-get ov 'display)
(ccls--make-code-lens-string (if (/= c0 col) "|" " ") command?)))
(when ov
(overlay-put ov 'display (concat (overlay-get ov 'display) "\n")))
(let ((p (line-end-position)))
(setq ov (make-overlay p (1+ p) nil 'front-advance))
(overlay-put ov 'ccls-code-lens t)
(overlay-put ov 'display (ccls--make-code-lens-string " " command?))))
(setq line l0 col c0))
('inplace
(forward-line (- l1 line))
(forward-char c1)
(setq line l1)
(setq ov (make-overlay (point) (point)))
(overlay-put ov 'ccls-code-lens t)
(overlay-put ov 'after-string (ccls--make-code-lens-string " " command?)))))
)
(when (and (eq ccls-code-lens-position 'end) ov)
(overlay-put ov 'display (concat (overlay-get ov 'display) "\n"))))))
(defun ccls-request-code-lens (&optional buffer)
"Request code lens from ccls."
(interactive)
(with-current-buffer (or buffer (current-buffer))
(lsp--cur-workspace-check)
(lsp--send-request-async
(lsp--make-request "textDocument/codeLens"
`(:textDocument (:uri ,(concat lsp--uri-file-prefix buffer-file-name))))
#'ccls--code-lens-callback)))
(defun ccls-clear-code-lens ()
"Clear all code lenses from this buffer."
(interactive)
(remove-overlays nil nil 'ccls-code-lens t))
(defun ccls-code-lens--request-when-idle ()
(run-with-idle-timer 0.5 nil #'ccls-request-code-lens (current-buffer)))
(define-minor-mode ccls-code-lens-mode
"toggle code-lens overlays"
:group 'ccls
:global nil
:init-value nil
:lighter "Lens"
(cond
(ccls-code-lens-mode
(when (lsp-workspaces)
(ccls-request-code-lens)
(add-hook 'lsp-diagnostics-updated-hook 'ccls-code-lens--request-when-idle t t)))
(t
(remove-hook 'lsp-diagnostics-updated-hook 'ccls-code-lens--request-when-idle t)
(ccls-clear-code-lens))))
(provide 'ccls-code-lens)