This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
forked from atom/status-bar
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"name": "status-bar",
"version": "1.8.17",
"main": "./lib/main",
"description": "Display information about the current editor such as cursor position, file path, grammar, current branch, ahead/behind commits counts, and line diff count.",
"repository": "https://github.com/pulsar-edit/status-bar",
"license": "MIT",
"engines": {
"atom": "*"
},
"dependencies": {
"fs-plus": "^3.0.1",
"grim": "^2.0.1",
"underscore-plus": "^1.0.0"
},
"providedServices": {
"status-bar": {
"description": "A container for indicators at the bottom of the workspace",
"versions": {
"1.1.0": "provideStatusBar",
"0.58.0": "legacyProvideStatusBar"
}
}
},
"configSchema": {
"isVisible": {
"type": "boolean",
"default": true,
"description": "Show status bar at the bottom of the workspace"
},
"fullWidth": {
"order": 1,
"type": "boolean",
"default": true,
"title": "Full-width",
"description": "Fit the status-bar to the window's full-width"
},
"cursorPositionFormat": {
"order": 2,
"type": "string",
"default": "%L:%C",
"description": "Format for the cursor position status bar element, where %L is the line number and %C is the column number"
},
"selectionCountFormat": {
"order": 2,
"type": "string",
"default": "(%L, %C)",
"description": "Format for the selection count status bar element, where %L is the line count and %C is the character count"
}
}
}