Releases: bettervim/better-tmux
Releases · bettervim/better-tmux
v0.0.5
Description
Breaking Changes 💥
- Streamlined configuration for
status-left
andstatus-right
by unifying them into one object.
Before:Now:export default { statusLeft: <Component />, statusRight: <Component /> }
export default { status: { statusLeft: <Component />, statusRight: <Component /> } }
Features 🚀
- Added support for
status-bg
via thestatus.bg
field, example:export default { status: { bg: '#000' } }
- Automatically set
status-bg
color based on the selected theme
Full Changelog: v0.0.4...v0.0.5
v0.0.4
Description
-
feat: Added new widgets available through
better-tmux/widgets
:<Hostname />
<Date />
<Clock />
<SessionName />
-
feat: Exposed
tmux
object that aggregates common tmux global variables, such as session name, hostname, etc.
Full Changelog: Compare v0.0.1...v0.0.4