-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
ts-fold-indicators.el
383 lines (327 loc) · 14.1 KB
/
ts-fold-indicators.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
;;; ts-fold-indicators.el --- Display indicators for folding range -*- lexical-binding: t; -*-
;; Copyright (C) 2021-2024 Shen, Jen-Chieh
;; Created date 2021-10-04 20:03:12
;; This file is NOT part of GNU Emacs.
;; 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:
;;
;; Display indicators for folding range
;;
;;; Code:
(require 'cl-lib)
(require 'seq)
(require 'subr-x)
(require 'fringe-helper)
(require 'ts-fold-util)
(require 'ts-fold)
(defcustom ts-fold-indicators-fringe 'left-fringe
"Display indicators on the left/right fringe."
:type '(choice (const :tag "On the right fringe" right-fringe)
(const :tag "On the left fringe" left-fringe))
:group 'ts-fold)
(defcustom ts-fold-indicators-priority 30
"Indicators overlay's priority."
:type 'integer
:group 'ts-fold)
(defcustom ts-fold-indicators-face-function nil
"Function call when apply to indicators face."
:type 'function
:group 'ts-fold)
;; TODO: We eventually want to remove this. Therefore, we get fast and
;; accurate results!
(defcustom ts-fold-indicators-render-method 'partial
"Method used to display indicators."
:type '(choice (const :tag "Accurate rendering but cost more performance" full)
(const :tag "Inaccurate rendering but fast" partial))
:group 'ts-fold)
(defcustom ts-fold-indicators-refresh-hook nil
"Hook run after indicators refresh."
:type 'hook
:group 'ts-fold)
(fringe-helper-define 'ts-fold-indicators-fr-plus nil
"XXXXXXX"
"X.....X"
"X..X..X"
"X.XXX.X"
"X..X..X"
"X.....X"
"XXXXXXX")
(fringe-helper-define 'ts-fold-indicators-fr-minus-tail nil
"........" "........" "........" "........" "........"
"........" "........" "........" "........" "........"
"XXXXXXX"
"X.....X"
"X.....X"
"X.XXX.X"
"X.....X"
"X.....X"
"XXXXXXX"
"...XX..." "...XX..." "...XX..." "...XX..." "...XX..."
"...XX..." "...XX..." "...XX..." "...XX..." "...XX...")
(fringe-helper-define 'ts-fold-indicators-fr-center nil
"...XX..." "...XX..." "...XX..." "...XX..." "...XX..."
"...XX..." "...XX..." "...XX..." "...XX..." "...XX..."
"...XX..." "...XX..." "...XX..." "...XX..." "...XX..."
"...XX..." "...XX..." "...XX..." "...XX..." "...XX..."
"...XX..." "...XX..." "...XX...")
(fringe-helper-define 'ts-fold-indicators-fr-end-left nil
"...XX..." "...XX..." "...XX..." "...XX..." "...XX..."
"...XX..." "...XX..." "...XX..." "...XX..." "...XX..."
"...XX..." "...XXXXX" "...XXXXX"
"........" "........" "........" "........" "........"
"........" "........" "........" "........" "........")
(fringe-helper-define 'ts-fold-indicators-fr-end-right nil
"...XX..." "...XX..." "...XX..." "...XX..." "...XX..."
"...XX..." "...XX..." "...XX..." "...XX..." "...XX..."
"...XX..." "XXXXX..." "XXXXX..."
"........" "........" "........" "........" "........"
"........" "........" "........" "........" "........")
;;
;; (@* "Entry" )
;;
(defvar ts-fold-indicators-mode-map
(let ((map (make-sparse-keymap)))
(define-key map [left-fringe mouse-1] #'ts-fold-indicators-click-fringe)
(define-key map [right-fringe mouse-1] #'ts-fold-indicators-click-fringe)
map)
"Keymap for function `ts-fold-indicators-mode'.")
(defun ts-fold-indicators--enable ()
"Enable `ts-fold-indicators' mode."
(add-hook 'tree-sitter-after-change-functions #'ts-fold-indicators--trigger-render nil t)
(add-hook 'after-save-hook #'ts-fold-indicators--trigger-render nil t)
(add-hook 'post-command-hook #'ts-fold-indicators--post-command nil t)
(add-hook 'window-size-change-functions #'ts-fold-indicators--size-change)
(add-hook 'window-scroll-functions #'ts-fold-indicators--scroll)
(ts-fold-indicators--render-buffer))
(defun ts-fold-indicators--disable ()
"Disable `ts-fold-indicators' mode."
(remove-hook 'tree-sitter-after-change-functions #'ts-fold-indicators--trigger-render t)
(remove-hook 'after-save-hook #'ts-fold-indicators--trigger-render t)
(remove-hook 'post-command-hook #'ts-fold-indicators--post-command t)
(remove-hook 'window-size-change-functions #'ts-fold-indicators--size-change)
(remove-hook 'window-scroll-functions #'ts-fold-indicators--scroll)
(ts-fold-indicators--remove-ovs-buffer))
;;;###autoload
(define-minor-mode ts-fold-indicators-mode
"Minor mode for indicators mode."
:group 'ts-fold
:lighter nil
:keymap ts-fold-indicators-mode-map
:init-value nil
(tree-sitter--handle-dependent ts-fold-indicators-mode
#'ts-fold-indicators--enable
#'ts-fold-indicators--disable))
;;;###autoload
(define-globalized-minor-mode global-ts-fold-indicators-mode
ts-fold-indicators-mode ts-fold-indicators--trigger
:group 'ts-fold)
(defun ts-fold-indicators--trigger ()
"Enable `ts-fold-indicators-mode' when `ts-fold-mode' can be enabled."
(when (or ts-fold-mode (ts-fold-mode 1))
(ts-fold-indicators-mode 1)))
;;
;; (@* "Events" )
;;
(defun ts-fold-indicators-click-fringe (event)
"EVENT click on fringe."
(interactive "e")
(let ((current-fringe (nth 1 (car (cdr event)))) ovs ov cur-ln)
(when (eq current-fringe ts-fold-indicators-fringe)
(mouse-set-point event)
(beginning-of-line)
(setq cur-ln (line-number-at-pos (point)))
(setq ovs (append (ts-fold--overlays-in 'type 'ts-fold-indicators-fr-plus)
(ts-fold--overlays-in 'type 'ts-fold-indicators-fr-minus-tail)))
(when ovs
(setq ov (cl-some
(lambda (ov) (= cur-ln (line-number-at-pos (overlay-start ov))))
ovs))
(when ov
(or (save-excursion
(end-of-line)
(when (nth 4 (syntax-ppss)) (back-to-indentation))
(ts-fold-toggle))
(ts-fold-toggle)))))))
;;
;; (@* "Core" )
;;
(defun ts-fold-indicators--create-overlay-at-point ()
"Create indicator overlay at current point."
(let* ((pos (line-beginning-position))
(ov (make-overlay pos (1+ pos)))
(window (selected-window)))
(overlay-put ov 'ts-fold-indicators-window window)
(overlay-put ov 'window window)
ov))
(defun ts-fold-indicators--create-overlays (beg end folded)
"Create indicators overlays in range of BEG to END.
If argument FOLDED is non-nil, means the region is close/hidden (overlay
is created); this is used to determie what indicators' bitmap to use."
(let (ov-lst)
(save-excursion
(goto-char beg)
(while (and (<= (line-beginning-position) end) (not (eobp)))
(push (ts-fold-indicators--create-overlay-at-point) ov-lst)
(forward-line 1)))
(ts-fold-indicators--update-overlays (reverse ov-lst) folded)))
(defun ts-fold-indicators--get-priority (bitmap)
"Return the priority integer depends on the type of the BITMAP.
This is a static/constant method."
(let ((prior ts-fold-indicators-priority))
(cl-case bitmap
(ts-fold-indicators-fr-plus (+ prior 2))
(ts-fold-indicators-fr-minus-tail (+ prior 2))
(ts-fold-indicators-fr-end-left (+ prior 1))
(ts-fold-indicators-fr-end-right (+ prior 1))
(t prior))))
(defun ts-fold-indicators--get-string (folded ov bitmap)
"Return a string or nil for indicators overlay (OV).
If argument FOLDED is nil, it must return a string so all indicators are shown
in range. Otherwise, we should only return string only when BITMAP is the
head (first line) of the region."
(let* ((face (or (and (functionp ts-fold-indicators-face-function)
(funcall ts-fold-indicators-face-function (overlay-start ov)))
'ts-fold-fringe-face))
(str (propertize "." 'display `(,ts-fold-indicators-fringe ,bitmap ,face))))
(if (not folded) str
(cl-case bitmap
(ts-fold-indicators-fr-plus str) ; return string only in head
(ts-fold-indicators-fr-minus-tail nil)
(ts-fold-indicators-fr-end-left nil)
(ts-fold-indicators-fr-end-right nil)
(t nil)))))
(defun ts-fold-indicators--active-ov (folded ov bitmap)
"SHOW the indicator OV with BITMAP.
Argument FOLDED holds folding state; it's a boolean."
(when (overlayp ov)
(overlay-put ov 'ts-fold-indicators-active folded)
(overlay-put ov 'type bitmap)
(overlay-put ov 'priority (ts-fold-indicators--get-priority bitmap))
(overlay-put ov 'before-string (ts-fold-indicators--get-string folded ov bitmap))))
(defun ts-fold-indicators--get-end-fringe ()
"Return end fringe bitmap according to variable `ts-fold-indicators-fringe'."
(cl-case ts-fold-indicators-fringe
(left-fringe 'ts-fold-indicators-fr-end-left)
(right-fringe 'ts-fold-indicators-fr-end-right)
(t (user-error "Invalid indicators fringe type: %s" ts-fold-indicators-fringe))))
(defun ts-fold-indicators--update-overlays (ov-lst folded)
"SHOW indicators overlays OV-LST depends on FOLDED."
(when-let* ((len (length ov-lst))
((> len 1))
(len-1 (1- len))
(first-ov (nth 0 ov-lst))
(last-ov (nth len-1 ov-lst))
(index 1))
;; Head
(ts-fold-indicators--active-ov
folded first-ov
(if folded 'ts-fold-indicators-fr-plus
'ts-fold-indicators-fr-minus-tail))
;; Last
(ts-fold-indicators--active-ov folded last-ov (ts-fold-indicators--get-end-fringe))
;; In between `head' and `last'
(while (< index len-1)
(ts-fold-indicators--active-ov folded (nth index ov-lst) 'ts-fold-indicators-fr-center)
(cl-incf index)))
ov-lst)
;;
;; (@* "Update" )
;;
(defvar-local ts-fold-indicators--render-this-command-p nil
"Set to non-nil if render current command.")
(defun ts-fold-indicators--create (node)
"Create indicators using NODE."
(when-let* ((range (ts-fold--get-fold-range node))
(beg (car range)) (end (cdr range)))
(let ((folded (ts-fold-overlay-at node)))
(ts-fold-indicators--create-overlays beg end folded))))
(defun ts-fold-indicators--size-change (&optional frame &rest _)
"Render indicators for all visible windows from FRAME."
(ts-fold--with-no-redisplay
(dolist (win (window-list frame))
(ts-fold-indicators--render-window win))))
(defun ts-fold-indicators--scroll (&optional window &rest _)
"Render indicators on WINDOW."
(ts-fold--with-no-redisplay
(ts-fold-indicators--render-window window)))
(defun ts-fold-indicators--render-buffer ()
"Render indicators for current buffer."
(dolist (window (get-buffer-window-list nil nil t))
(ts-fold-indicators--render-window window)))
(defun ts-fold-indicators--render-window (window)
"Render indicators for WINDOW."
(ts-fold--with-selected-window window
(ignore-errors (ts-fold-indicators-refresh))))
(defun ts-fold-indicators--trigger-render (&rest _)
"Trigger rendering on the next redisplay."
(setq ts-fold-indicators--render-this-command-p t)) ; Trigger render at the end.
(defun ts-fold-indicators--post-command ()
"Post command."
(when ts-fold-indicators--render-this-command-p
(ts-fold-indicators-refresh)
(setq ts-fold-indicators--render-this-command-p nil)))
(defun ts-fold-indicators--within-window (node wend wstart)
"Return nil if NODE is not within the current window display range.
Arguments WEND and WSTART are the range for caching."
(when-let*
((range (cl-case ts-fold-indicators-render-method
(`full
(ignore-errors (ts-fold--get-fold-range node)))
(`partial (cons (tsc-node-start-position node)
(tsc-node-end-position node)))
(t
(user-error "Invalid render method: %s" ts-fold-indicators-render-method))))
(start (car range))
(end (cdr range))
((or (and (<= wstart start) (<= end wend)) ; with in range
(and (<= wstart end) (<= start wstart)) ; just one above
(and (<= wend end) (<= start wend))))) ; just one below
node))
;;;###autoload
(defun ts-fold-indicators-refresh (&rest _)
"Refresh indicators for all folding range."
(when (and tree-sitter-mode ts-fold-indicators-mode)
(ts-fold--ensure-ts
(when-let*
((node (ignore-errors (tsc-root-node tree-sitter-tree)))
(patterns (seq-mapcat (lambda (fold-range) `((,(car fold-range)) @name))
(alist-get major-mode ts-fold-range-alist)
'vector))
(query (ignore-errors
(tsc-make-query tree-sitter-language patterns)))
(nodes-to-fold (tsc-query-captures query node #'ignore))
(wend (window-end nil t))
(wstart (window-start))
(nodes-to-fold
(cl-remove-if-not (lambda (node)
(ts-fold-indicators--within-window (cdr node) wend wstart))
nodes-to-fold))
(mode-ranges (alist-get major-mode ts-fold-range-alist))
(nodes-to-fold
(cl-remove-if (lambda (node)
(ts-fold--non-foldable-node-p (cdr node) mode-ranges))
nodes-to-fold)))
(ts-fold-indicators--remove-ovs)
(thread-last nodes-to-fold
(mapcar #'cdr)
(mapc #'ts-fold-indicators--create))
(run-hooks 'ts-fold-indicators-refresh-hook)))))
(defun ts-fold-indicators--remove-ovs (&optional window)
"Remove all indicators overlays in this WINDOW."
(remove-overlays (point-min) (point-max) 'ts-fold-indicators-window
(or window (selected-window))))
(defun ts-fold-indicators--remove-ovs-buffer ()
"Remove all indicators overlays for this buffer."
(dolist (window (get-buffer-window-list nil nil t))
(ts-fold-indicators--remove-ovs window)))
(provide 'ts-fold-indicators)
;;; ts-fold-indicators.el ends here