-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
denippet.txt
347 lines (267 loc) · 11.5 KB
/
denippet.txt
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
*denippet.txt* Snippet plugin powered by typescript
Author: uga-rosa <[email protected]>
License: MIT License
==============================================================================
CONTENTS *denippet-contents*
INTRODUCTION |denippet-introduction|
MAPPINGS |denippet-mappings|
FUNCTIONS |denippet-functions|
VARIABLES |denippet-variables|
AUTOCMDS |denippet-autocmds|
SNIPPET GRAMMAR |denippet-snippet-grammar|
==============================================================================
INTRODUCTION *denippet-introduction*
Denippet is a Vim/Neovim snippet plugin extended from VSCode's snippets. With
the adoption of the denops ecosystem, it has overcome the weaknesses found in
existing snippet plugins, such as those related to JavaScript regular
expressions. Additionally, it allows the use of TypeScript functions, which
means you can easily create snippets using powerful assets like date
libraries.
Requirements
- denops.vim: https://github.com/vim-denops/denops.vim
==============================================================================
MAPPINGS *denippet-mappings*
<Plug>(denippet-expand) *<Plug>(denippet-expand)*
Defined in insert mode (|imap|).
Expand the snippet when the string before the cursor matches the
trigger.
<Plug>(denippet-jump-next) *<Plug>(denippet-jump-next)*
<Plug>(denippet-jump-prev) *<Plug>(denippet-jump-prev)*
Defined in insert and select mode (|imap|, |smap|).
Go to the next or previous tabstop.
<Plug>(denippet-expand-or-jump) *<Plug>(denippet-expand-or-jump)*
Defined in insert mode (|imap|).
If it can be expanded, it will be expanded. If not, and if it is
possible to jump to the next tabstop, jump.
<Plug>(denippet-choice-next) *<Plug>(denippet-choice-next)*
<Plug>(denippet-choice-prev) *<Plug>(denippet-choice-prev)*
Defined in insert mode (|imap|).
Choose the next or previous choice in the choice node.
==============================================================================
FUNCTIONS *denippet-functions*
denippet#load({filepath} [, {filetype}...]) *denippet#load()*
Load the snippet definition file.
Multiple filetypes can be specified.
If {filetype} is omitted, it is the {filename} removed the extension.
Using * for {filetype}, a global snippet can be defined. This is a
snippet available for all 'filetype'.
denippet#expandable() *denippet#expandable()*
Return |v:true| if expansion is possible, |v:false| otherwise.
denippet#expand() *denippet#expand()*
Same as |<Plug>(denippet-expand)|.
denippet#jumpable([{dir}]) *denippet#jumpable()*
{dir} where 1 means "next" and -1 means "previous".
Return |v:true| if jump is possible, |v:false| otherwise.
denippet#jump([{dir}]) *denippet#jump()*
{dir} where 1 means "next" and -1 means "previous".
Same as |<Plug>(denippet-jump-next)| and |<Plug>(denippet-jump-prev)|.
denippet#choosable([{dir}]) *denippet#choosable()*
{dir} where 1 means "next" and -1 means "previous".
Return |v:true| if choice is possible, |v:false| otherwise.
denippet#choice([{dir}]) *denippet#choice()*
{dir} where 1 means "next" and -1 means "previous".
Same as |<Plug>(denippet-choice-next)| and |<Plug>(denippet-choice-prev)|.
==============================================================================
VARIABLES *denippet-variables*
*g:denippet_sync_delay*
g:denippet_sync_delay ~
Specify delay time to sync same tabstop placeholder.
-1: No sync (update only on |denippet#jump()| or |InsertLeave|)
0: Always sync
N: Debounce N milliseconds (N > 0)
Default: 0
*g:denippet_drop_on_zero*
g:denippet_drop_on_zero ~
Whether to drop when jumping to a node with a tabstop of 0.
Drop is to discard the currently expanded snippet, which is usually
done when returning to normal mode.
Default: |v:false|
*b:denippet_current_node*
b:denippet_current_node ~
Node you are at.
==============================================================================
AUTOCMDS *denippet-autocmds*
*DenippetNodeEnter*
DenippetNodeEnter ~
Fires after entering node and |b:denippet_current_node| is updated.
*DenippetNodeLeave*
DenippetNodeLeave ~
Fires after leaving node and before |b:denippet_current_node| is
updated.
*DenippetChoiceSelected*
DenippetChoiceSelected ~
Fires after selecting choice and |b:denippet_current_node| is updated.
==============================================================================
SNIPPET GRAMMAR *denippet-snippet-grammar*
Snippets in denippet are basically written in VSCode-compatible grammar.
https://code.visualstudio.com/docs/editor/userdefinedsnippets
json/toml/yaml/typescript are available for snippet definition files. To
register snippets, use |denippet#load()|. The structure of the file is as
follows: >json
{
"For Loop": {
"prefix": ["for", "for-const"],
"body": [
"for (const ${2:element} of ${1:array}) {",
"\t$0",
"}"
],
"description": "A for loop."
}
}
<
NOTE: For compatibility with VSCode, files with the code-snippets extension
can also be read, and the scope field is respected.
Fields ~
"prefix" (string|string[])
The trigger that expands the snippet. If ommited, the name
(the key of the object, in the example "For Loop") is used
instead. Multiple prefixes can be set for a single snippet by
making it an array.
"body" (string|string[]) required!
The text that is actually expanded. The \t (tab character) at
the beginning of a line in "body" is corrected to the
appropriate indentation. When body is an array, the meaning is
different from prefix; each element means a line. In other
words, it is equivalent to a string in which each element of
the array is concatenated with a newline.
"description" (string)
the description of the snippet, but this plugin by itself does
not have the ability to display this. If you want to see it,
combine it with the completion plugin.
"if" ("base"|"start"|"vimscript"|"lua")
You can specify the conditions under which the snippet is
expanded.
"base" Available only when the current buffer is
empty.
"start" Available only at the beginning of the line.
"vimscript" Available only if |eval()| is used to evaluate
the string specified in "eval" and the return
value is truthy. >toml
[foo]
prefix = "foo"
body = "bar"
if = "vimscript"
eval = "line('.') == 1"
<
"lua" Available only if |loadstring()| is used to
evaluate the string specified in "eval" and
the return value is truthy. >toml
[foo]
prefix = "foo"
body = "bar"
if = "lua"
eval = """
local function foo()
return true
end
return foo()
"""
<
"eval" (string)
String evaluated when "if" is "vimscript" or "lua".
Note in TypeScript that the file structures of json/toml/yaml are different.
You need to export an object named "snippets". While its structure is
essentially the same the above, it differs in that you can use function in
"body" and "if". See type `TSSnippet` for details. >typescript
import { TSSnippet } from "https://deno.land/x/[email protected]/loader.ts";
export const snippets: Record<string, TSSnippet> = {
uuid: {
prefix: "uuid",
body: () => crypto.randomUUID(),
},
};
You can use tabstops in the snippet. You can navigate between the tabstops
with |denippet#jump()|. For defailed syntax, please refer to the link.
https://code.visualstudio.com/docs/editor/userdefinedsnippets#_snippet-syntax
To explain briefly, it goes as follows:
Tabstops ~
With tabstops, you can make the editor cursor move inside a snippet.
Use `$1`, `$2` to specify cursor locations. The number is the order in
which tabstops will be visited, whereas `$0` denotes the final cursor
position. Since multi-cursors cannot be implemented in Vim, multiple
tab stops with the same number are represented by editing one primary
location, and its copies are updated in real-time to reflect the
changes.
Placeholders ~
Placeholders are tabstops with values, like `${1:foo}`. The placeholder
text will be inserted and selected such that it can be easily changed.
Placeholders can be nested, like `${1:another ${2:placeholder}}`.
By omitting the default value following the colon (e.g., `${1}`), it
becomes equivalent to the above-mentioned tabstops. This is
convenient when a number follows a tabstop. >
foo${1}100
<
Choice ~
Placeholders can have choices as values. The syntax is a
comma-separated enumeration of values, enclosed with the
pipe-character, for example `${1|one,two,three|}`. You can select the
choice by |denippet#choice()|.
While these three are the jumpable ones, there are other syntaxes that hold
special meanings.
Variables ~
With `$name` or `${name:default}`, you can insert the value of a
variable. When a variable isn't set, its default or the empty string
is inserted.
A list of variables is here.
https://code.visualstudio.com/docs/editor/userdefinedsnippets#_variables
The original variables are as follows:
- VIM Eval default string as Vim script. >
${VIM:['foo', 'bar'][0]}
// -> foo
<
- LUA Eval default string as Lua (only Neovim). >
${LUA:math.floor(1.234)}
// -> 1
<
- JS Eval default string as JavaScript. >
${JS:(() => 1 + 1)()}
// -> 2
<
Transformer ~
Variable-Transform ~
Transformations allow you to modify the value of a variable before it
is inserted. The definition of a transformation consists of three
parts:
1. A regular expression that is matched against the value of a
variable, or the empty string when the variable cannot be resolved.
2. A "format string" that allows to reference matching groups from the
regular expression. The format string allows for conditional
inserts and simple modifications.
3. Options that are passed to the regular expression.
The following example inserts the name of the current file without its
ending, so from foo.txt it makes foo. >
${TM_FILENAME/(.*)\\..+$/$1/}
| | | |
| | | |-> no options
| | |
| | |-> references the contents of the first
| | capture group
| |
| |-> regex to capture everything before
| the final `.suffix`
|
|-> resolves to the filename
<
Placeholder-Transforms ~
Like a Variable-Transform, a transformation of a placeholder allows
changing the inserted text for the placeholder when moving to the next
tab stop. The inserted text is matched with the regular expression and
the match or matches - depending on the options are replaced with the
specified replacement format text. Every occurrence of a placeholder
can define its own transformation independently using the value of the
first placeholder. The format for Placeholder-Transforms is the same
as for Variable-Transforms.
Transform examples ~
Example Output Explanation
----------------------------------------------------------------------------------------------------------
"${TM_FILENAME/[\\.]/_/}" jexample-123_456-TEST.js Replace the first . with _
"${TM_FILENAME/[\\.-]/_/g}" example_123_456_TEST_js Replace each . or - with _
"${TM_FILENAME/(.*)/${1:/upcase}/}" EXAMPLE-123.456-TEST.JS Change to all uppercase
"${TM_FILENAME/[^0-9^a-z]//gi}" example123456TESTjs Remove non-alphanumeric characters
==============================================================================
UTILITIES *denippet-utilities*
json schema ~
https://github.com/uga-rosa/denippet.vim/blob/main/schemas/snippet.json
==============================================================================
vim:tw=78:ts=8:noet:ft=help:norl: