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 119
/
package.json
99 lines (99 loc) · 2.71 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
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
{
"name": "tabs",
"version": "0.110.2",
"main": "./lib/main",
"description": "Display a selectable tab for each editor open.",
"license": "MIT",
"repository": "https://github.com/atom/tabs",
"engines": {
"atom": ">=1.17.0"
},
"dependencies": {
"fs-plus": "^3.0.0",
"temp": "~0.8.1",
"underscore-plus": "1.x"
},
"consumedServices": {
"atom.file-icons": {
"versions": {
"1.0.0": "consumeFileIcons"
}
},
"file-icons.element-icons": {
"versions": {
"1.0.0": "consumeElementIcons"
}
}
},
"configSchema": {
"showIcons": {
"type": "boolean",
"default": true,
"description": "Show icons in tabs for panes which define an icon, such as the Settings and Project Find Results."
},
"alwaysShowTabBar": {
"type": "boolean",
"default": true,
"description": "Show the tab bar even when only one tab is open."
},
"tabScrolling": {
"type": [
"boolean",
"string"
],
"enum": [
true,
false,
"platform"
],
"default": "platform",
"description": "Jump to next or previous tab by scrolling on the tab bar."
},
"tabScrollingThreshold": {
"type": "integer",
"default": 120,
"description": "Threshold for switching to the next/previous tab when the `Tab Scrolling` config setting is enabled. Higher numbers mean that a longer scroll is needed to jump to the next/previous tab."
},
"enableVcsColoring": {
"type": "boolean",
"title": "Enable VCS Coloring",
"default": false,
"description": "Color file names in tabs based on VCS status, similar to how file names are colored in the tree view."
},
"addNewTabsAtEnd": {
"type": "boolean",
"default": false,
"description": "Add new tabs at the end of the tab bar, rather than after active tab."
},
"enableMruTabSwitching": {
"type": "boolean",
"title": "Enable MRU Tab Switching",
"default": true,
"description": "Enable tab switching in most-recently-used order. This setting has no effect if ctrl-tab or ctrl-shift-tab are already rebound via your keymap or another package."
},
"displayMruTabList": {
"type": "boolean",
"title": "Display MRU Tab Switching List",
"default": true,
"description": "When MRU Tab Switching is enabled, display the most-recently-used tab list."
}
},
"devDependencies": {
"coffeelint": "^1.9.7",
"standard": "^10.0.3"
},
"standard": {
"env": {
"atomtest": true,
"browser": true,
"jasmine": true,
"node": true
},
"globals": [
"atom"
],
"ignore": [
"**/fixtures/*.js"
]
}
}