This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
68 lines (68 loc) · 1.88 KB
/
package.json
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
{
"name": "bracket-matcher",
"version": "0.92.0",
"main": "./lib/main",
"description": "Highlight the matching bracket for the `(){}[]` character under the cursor. Move the cursor to the matching bracket with `ctrl-m`.",
"repository": "https://github.com/atom/bracket-matcher",
"license": "MIT",
"engines": {
"atom": "*"
},
"dependencies": {
"first-mate": "^7.4.1",
"underscore-plus": "1.x"
},
"configSchema": {
"autocompleteCharacters": {
"description": "Autocompleted characters treated as matching pairs, such as `()`, and `{}`.",
"type": "array",
"default": [
"()",
"[]",
"{}",
"\"\"",
"''",
"``",
"“”",
"‘’",
"«»",
"‹›"
],
"items": {
"type": "string"
}
},
"pairsWithExtraNewline": {
"description": "Automatically add a newline between the pair when enter is pressed.",
"type": "array",
"default": [
"()",
"[]",
"{}"
],
"items": {
"type": "string"
}
},
"autocompleteBrackets": {
"type": "boolean",
"default": true,
"description": "Autocomplete bracket and quote characters, such as `(` and `)`, and `\"`."
},
"wrapSelectionsInBrackets": {
"type": "boolean",
"default": true,
"description": "Wrap selected text in brackets or quotes when the editor contains selections and the opening bracket or quote is typed."
},
"highlightMatchingLineNumber": {
"type": "boolean",
"default": false,
"description": "Highlight the line number of the matching bracket."
},
"alwaysSkipClosingPairs": {
"type": "boolean",
"default": false,
"description": "Always skip closing pairs in front of the cursor."
}
}
}