Hyper plugin to show shortened path of working directory in tab titles, along with icons. Fork of hyper-tabs-enhanced.
npm install hyper-tabs-titles> Enhanced Tabs + Tabs Titles Plugin for Hyper. Shows the current working directory in the tab title. Fork of hyper-tabs-enhanced
Add following to your ~/.hyper.js config.
``javascript`
module.exports = {
...
plugins: ['hyper-tabs-titles']
...
}
Add following to ~/.hyper.js
. After this number of tabs are open, only the last directory in the path will be shown in tab titles.`javascript
module.exports = {
config: {
...
hyperTabs: {
openTabsThreshold: 3,
}
...
}
}
`$3
!hyper-tabs-enhanced-traffic
Default value is false`javascript
module.exports = {
config: {
...
hyperTabs: {
trafficButtons: true,
}
...
}
}
`$3
!hyper-tabs-enhanced-border
Default value is false`javascript
module.exports = {
config: {
...
hyperTabs: {
border: true,
}
...
}
}
`$3
!hyper-tabs-enhanced-icons
Default value is true`javascript
module.exports = {
config: {
...
hyperTabs: {
tabIcons: false,
}
...
}
}
`$3
!hyper-tabs-enhanced-colored
Default value is false`javascript
module.exports = {
config: {
...
hyperTabs: {
tabIconsColored: true,
}
...
}
}
`$3
!hyper-tabs-enhanced-activity
Expected value is CSS color`javascript
module.exports = {
config: {
...
hyperTabs: {
activityColor: 'salmon',
}
...
}
}
`$3
!hyper-tabs-enhanced-align
Default value is 'left'`javascript
module.exports = {
config: {
...
hyperTabs: {
closeAlign: 'right',
}
...
}
}
`$3
Default value is true`javascript
module.exports = {
config: {
...
hyperTabs: {
activityPulse: false,
}
...
}
}
``