-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathcombobulate-settings.el
324 lines (244 loc) · 11.9 KB
/
combobulate-settings.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
;;; combobulate-settings.el --- settings for combobulate -*- lexical-binding: t; -*-
;; Copyright (C) 2021-23 Mickey Petersen
;; Author: Mickey Petersen <mickey at masteringemacs.org>
;; Package-Requires: ((emacs "29"))
;; Version: 0.1
;; Homepage: https://www.github.com/mickeynp/combobulate
;; Keywords: convenience, tools, 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:
;;
;;; Code:
(require 'diff-mode)
(declare-function combobulate-baseline-indentation-default "combobulate-manipulation")
(defgroup combobulate nil
"Structured Editing and Movement with Combobulate"
:group 'languages
:prefix "combobulate-")
(defgroup combobulate-envelope nil
"Settings for Combobulate's code generation templates."
:group 'combobulate
:prefix "combobulate-envelope-")
(defgroup combobulate-faces nil
"Faces used by Combobulate."
:group 'combobulate)
(defcustom combobulate-mark-node-or-thing-at-point 'symbol
"Maybe mark the thing at point first before extending the mark to the first node.
Can be anything `thing-at-point' supports, theoretically, though
practically speaking the most useful ones are `symbol' and `word'
for all but the most esoteric requirements."
:group 'combobulate
:type '(choice
(const :tag "Disabled" nil)
(const :tag "Symbol" symbol)
(const :tag "Word" word)))
(defcustom combobulate-proffer-default-to-command 'done
"What should happen in a proffer prompt when an unknown key is pressed.
When set to `done' the proffer UI will accept the proffered
choice and re-insert the key you just typed into the event
loop. That means you can seamlessly type from a proffer prompt
and not lose key strokes. This is the default behavior.
If it is set to `cancel' then the selection is aborted as though
you'd pressed `C-g'."
:group 'combobulate
:type '(choice
(const :tag "Accept and Commit" done)
(const :tag "Cancel" cancel)))
(defcustom combobulate-proffer-allow-numeric-selection t
"Allow numeric selection in proffer prompts that support numeric selection.
If non-nil, you can type a number to select a choice in a proffer
prompt. This is useful if you have a lot of choices and want to
quickly select one without having to type the whole thing out.
If nil, then numeric selection is disabled."
:group 'combobulate
:type 'boolean)
(defcustom combobulate-flash-node t
"Display a tree outline of nodes near point if non-nil."
:group 'combobulate
:type 'boolean)
(defcustom combobulate-beginning-of-defun-behavior 'parent
"Control the behavior of the beginning of defun command.
Use `parent' and Combobulate will look at the nearest defun to
which it belongs and only visit its immediate parent.
Use `root' and Combobulate will instead attempt to find the defun
most closes to the root of the tree -- i.e., a defun that itself
has no defun parents.
Use `self-and-sibling-first' and Combobulate will instead first go to
the beginning of defun point is in, before cycling through
sibling defuns of the point's defun before moving up to its
parent, and so on, until it reaches the root.
Use `linear' and Combobulate will simply move to the first defun
it finds, regardless of hierarchy."
:group 'combobulate
:type '(choice
(const :tag "Parent" parent)
(const :tag "Root" root)
(const :tag "Self and Sibling First" self-and-sibling-first)
(const :tag "Linear" linear)))
(defcustom combobulate-pulse-node-wait-time 0.5
"How long to wait (in seconds) at the pulsed node before returning."
:type 'float
:group 'combobulate)
(defcustom combobulate-pulse-node t
"If non-nil, Combobulate will pulse important nodes."
:type 'boolean
:group 'combobulate)
(defcustom combobulate-proffer-indicators "○●"
"Indicator symbols used in Combobulate's proffer prompts."
:type 'string
:group 'combobulate)
(defcustom combobulate-key-prefix "C-c o"
"Prefix key for Combobulate commands. Leave blank to disable.
This is the prefix key for all Combobulate commands. It is
recommended that you set this to something that is easy to type
and remember, but that does not conflict with any other key.
When you change this key prefix you must restart Emacs for the
change to take effect.
Note this must be a string readable by the `kbd' macro, and not a
vector or an escaped string."
:type 'string
:group 'combobulate)
(defcustom combobulate-highlight-context t
"Highlight contextual nodes that belong to the same sequence.
This is similar to `show-paren-mode' but for Combobulate's notion of
what a \"pair\" is."
:type 'boolean
:group 'combobulate)
(defcustom combobulate-navigate-down-into-lists t
"Whether to navigate into the first list-like structure ahead
of point in the absence of other suitable nodes."
:type 'boolean
:group 'combobulate)
;;; Group for cursor editing
(defgroup combobulate-cursor nil
"Settings for Combobulate's cursor editing."
:group 'combobulate
:prefix "combobulate-cursor-")
(defcustom combobulate-cursor-tool 'combobulate
"The tool to use for cursor editing.
This can be `combobulate' or `multiple-cursors'.
`combobulate' is the default and uses Combobulate's own
refactoring system to perform cursor editing.
`multiple-cursors' uses the third-party package `multiple-cursors.el'."
:group 'combobulate-cursor
:type '(choice
(const :tag "Combobulate" combobulate)
(const :tag "Multiple Cursors" multiple-cursors)))
(defface combobulate-refactor-highlight-face '((((background light))
:background "gray80")
(((background dark))
:background "gray20")
(t :inherit secondary-selection))
"Face for text that is important or relevant to a refactoring operation."
:group 'combobulate-faces)
(defface combobulate-refactor-label-face '((t
:background "DarkOrchid4"
:foreground "thistle1"))
"Face for the overlay label for a range during editing or refactoring."
:group 'combobulate-faces)
(defface combobulate-refactor-field-face '((t (:background "MediumPurple4" :foreground "MediumPurple1")))
"Face for prompts and fields during editing or refactoring."
:group 'combobulate-faces)
(defface combobulate-refactor-inactive-field-face '((t (:background "#342261" :foreground "#6e4bc0")))
"Face for inactive prompts and fields during editing or refactoring."
:group 'combobulate-faces)
(defface combobulate-refactor-disabled-field-face '((t (:background "gray20" :foreground "gray80")))
"Face for disabled prompts and fields during editing or refactoring."
:group 'combobulate-faces)
(defface combobulate-refactor-choice-face '((t (:background "aquamarine4" :foreground "aquamarine1")))
"Face for choices during editing or refactoring."
:group 'combobulate-faces)
(defface combobulate-refactor-inactive-choice-face '((t (:background "azure4" :foreground "azure1")))
"Face for choices during editing or refactoring."
:group 'combobulate-faces)
(defface combobulate-refactor-cursor-face '((t (:background "VioletRed4" :foreground "VioletRed1")))
"Face for fake cursors during editing or refactoring."
:group 'combobulate-faces)
(defface combobulate-dimmed-indicator-face '((t (:foreground "slate gray")))
"Face for dimmed indicators, like the indentation display."
:group 'combobulate-faces)
(defface combobulate-active-indicator-face '((t (:foreground "SlateBlue1")))
"Face for active indicators, like the indentation display."
:group 'combobulate-faces)
(defface combobulate-error-indicator-face '((t
(:box
(:line-width
(1 . 1)
:color "FireBrick2" :style flat-button)
:foreground "FireBrick1" :background "FireBrick4")))
"Face for error indicators, like the indentation display."
:group 'combobulate-faces)
(defface combobulate-tree-branch-face '((t (:foreground "slate gray")))
"Face for the branches and guides in the display tree."
:group 'combobulate-faces)
(defface combobulate-tree-highlighted-node-face '((t (:inherit font-lock-property-name-face)))
"Face for combobulate nodes that are prominently displayed in the UI"
:group 'combobulate-faces)
(defface combobulate-tree-pulse-node-face '((t (:inherit secondary-selection)))
"Face for nodes that are briefly pulsed on the screen."
:group 'combobulate-faces)
(defface combobulate-tree-normal-node-face '((t (:inherit default)))
"Face for regular combobulate nodes in the display tree"
:group 'combobulate-faces)
(defface combobulate-highlight-context-face '((t (:inherit combobulate-refactor-field-face)))
"Face for the context of the current node in the display tree."
:group 'combobulate-faces)
;;;; Other settings
(defvar combobulate-navigable-nodes nil
"List of node types used for general navigation and as a placeholder.
The macro `with-navigation-nodes' binds all activation nodes to
this variable, so that Combobulate can act on those node types
without requiring that they are lisetd explicitly.")
(defvar-local combobulate-default-procedures nil
"List of default procedures to use for general navigation and editing.
This is typically set by `with-navigation-nodes' by passing a
`:procedures' property with the list of procedures to use.")
(defvar combobulate-envelope-symbol-prefix "combobulate-envelop-"
"Prefix to use for symbol functions and variables for envelopes.")
(defvar-local combobulate-highlight-queries-alist nil
"List of node queries to highlight.
The list is of the form:
\\='((:language LANGUAGE :query QUERY)
...)
Where LANGUAGE is a valid `treesitter-parser-language' symbol and
QUERY is a well-formed tree-sitter query. Capture groups should
use the name of the face to highlight with. See
`combobulate-highlight-queries-default' for more information.")
(put 'combobulate-highlight-queries-alist 'safe-local-variable #'listp)
(defvar combobulate-setup-functions-alist
'((python . combobulate-python-setup)
(tsx . combobulate-js-ts-setup)
(javascript . combobulate-js-ts-setup)
(go . combobulate-go-setup)
(typescript . combobulate-js-ts-setup)
(jsx . combobulate-js-ts-setup)
(json . combobulate-json-setup)
(css . combobulate-css-setup)
(yaml . combobulate-yaml-setup)
(toml . combobulate-toml-setup)
(html . combobulate-html-setup))
"Alist of setup functions to call when \\[combobulate-mode] is enabled.
Because tree-sitter-enabled modes are different from the ordinary
ones, you may wish to customize `major-mode-remap-alist' to
silently treat the older modes as their newer TS-enabled
counterparts.")
(defvar combobulate-debug nil
"Enables additional debug information useful for Combobulate developers")
;;;; Pretty printing and display options
(declare-function combobulate--pretty-print-node "combobulate-navigation")
(declare-function combobulate-pretty-print-node-name "combobulate-navigation")
(defvar combobulate-after-setup-hook nil
"Hook run after Combobulate is done setting up.
This is the right place to add your hooks if you want to change
Combobulate's node configuration.")
(provide 'combobulate-settings)
;;; combobulate-settings.el ends here