-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.35 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
{
"name": "inline-autocomplete-textmate",
"main": "./lib/inline-autocomplete-textmate",
"version": "0.2.53",
"description": "Inline autocompletion for TextMate 2 switchers.",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/savetheclocktower/atom-inline-autocomplete-textmate"
},
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"devDependencies": {
"eslint": "^8.37.0"
},
"configSchema": {
"useDefensiveMode": {
"title": "Use Escape-key mode",
"description": "When enabled, won’t try to autocomplete if it thinks you pressed Escape for another reason (e.g., to dismiss notifications). If you bind completion to a key other than Escape, you should disable this option.",
"type": "boolean",
"default": true
},
"includeCompletionsFromVisibleBuffers": {
"title": "Include completions from all visible buffers",
"description": "When disabled, only completions from the same buffer will be considered. When enabled, possible completions will be considered from other buffers that are currently visible in the same window. (Completions are suggested based on distance from the cursor, and completions in other buffers will always be considered more distant than completions from the same buffer.)",
"type": "boolean",
"default": false
}
}
}