Skip to content

Latest commit

 

History

History
104 lines (70 loc) · 3.4 KB

about.md

File metadata and controls

104 lines (70 loc) · 3.4 KB

(about)=

About

tmuxp helps you manage tmux workspaces.

Built on a object relational mapper for tmux. tmux users can reload common workspaces from YAML, JSON and {py:obj}dict workspace files like tmuxinator and teamocil.

tmuxp is used by developers for tmux automation at great companies like Bugsnag, Pragmatic Coders and many others.

To jump right in, see {ref}quickstart and {ref}examples.

Interested in some kung-fu or joining the effort? {ref}api and {ref}developing.

MIT-licensed. Code on github.

Compared to tmuxinator / teamocil

Similarities

Load sessions Loads tmux sessions from config

YAML Supports YAML format

Inlining / shorthand configuration All three support short-hand and simplified markup for panes that have one command.

Maturity and stability As of 2016, all three are considered stable, well tested and adopted.

Missing

Version support tmuxp only supports tmux >= 1.8. Teamocil and tmuxinator may have support for earlier versions.

Differences

Programming Language python. teamocil and tmuxinator uses ruby.

Workspace building process teamocil and tmuxinator process configs directly shell commands. tmuxp processes configuration via ORM layer.

Additional Features

CLI tmuxp's CLI can attach and kill sessions with tab-completion support. See {ref}commands.

Import config import configs from Teamocil / Tmuxinator 1. See {ref}cli-import.

Session freezing Supports session freezing into YAML and JSON format 1. See {ref}cli-freeze.

JSON config JSON config support. See {ref}Examples.

ORM-based API via libtmux - Utilitizes tmux >= 1.8's unique ID's for panes, windows and sessions to create an object relational view of the tmux {class}~libtmux.Server, its {class}~libtmux.Session, {class}~libtmux.Window, and {class}~libtmux.Pane. See {ref}libtmux's internals <libtmux:Internals>.

Conversion $ tmuxp convert <filename> can convert files to and from JSON and YAML.

Minor tweaks

  • Unit tests against live tmux version to test statefulness of tmux sessions, windows and panes. See {ref}gh-actions.
  • Load + switch to new session from inside tmux.
  • Resume session if config loaded.
  • Pre-commands virtualenv / rvm / any other commands.
  • Load config from anywhere $ tmuxp load /full/file/path.json.
  • Load config .tmuxp.yaml or .tmuxp.json from current working directory with $ tmuxp load ..
  • $ tmuxp -2, $ tmuxp -8 for forcing term colors a la {term}tmux(1).
  • $ tmuxp -L<socket-name>, $ tmuxp -S<socket-path> for sockets and $ tmuxp -f <workspace-file> for config file.

Footnotes

  1. On freezing

    While freezing and importing sessions is a great way to save time, tweaking will probably be required - There is no substitute to a config made with love. 2