Package Exports
- hyper-tabs-enhanced-plus
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hyper-tabs-enhanced-plus) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
hyper-tabs-enhanced-plus

Enhanced Tabs Plugin for Hyper. Matches any theme.
Install
Add following to your ~/.hyper.js
config.
module.exports = {
...
plugins: ['hyper-tabs-enhanced-plus']
...
}
Config
Add following to ~/.hyper.js
Enable Traffic Buttons
Default value is false
module.exports = {
config: {
...
hyperTabs: {
trafficButtons: true,
}
...
}
}
Enable Border
Default value is false
module.exports = {
config: {
...
hyperTabs: {
border: true,
}
...
}
}
Disable Tab Icons
Default value is true
module.exports = {
config: {
...
hyperTabs: {
tabIcons: false,
}
...
}
}
Enable Colored Tab Icons
Default value is false
module.exports = {
config: {
...
hyperTabs: {
tabIconsColored: true,
}
...
}
}
Change Activity Color
Expected value is CSS color
module.exports = {
config: {
...
hyperTabs: {
activityColor: 'salmon',
}
...
}
}
Align Close Button Right
Default value is 'left'
module.exports = {
config: {
...
hyperTabs: {
closeAlign: 'right',
}
...
}
}
Disable Activity Pulse
Default value is true
module.exports = {
config: {
...
hyperTabs: {
activityPulse: false,
}
...
}
}
Theme
License
MIT © Henrik
Based on henrikdahl/hyper-tabs-enhanced