To install the unreleased tmuxp version, see developmental releases.
pip:
$ pip install --user --upgrade --pre tmuxp
pipx:
$ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force
// Usage: tmuxp@next load yoursession
- Insert changes/features/fixes for next release here
- {issue}
774
Fix {issue}620
tests not finishing
-
{issue}
775
: Assure click 8+tmuxp 1.10 supports click 7.x.
- {issue}
773
: Allow click 8.1.x - {issue}
770
: Fix shell completion fortmuxp load
{kbd}tab
andtmuxp freeze
{kbd}tab
- Note: Requires click 8+ ({issue}
770
)
- {issue}
762
: CLI: Break up into modules in cli.py -> cli/{command} - {issue}
761
: Refactor tests/ constants and fixtures - Show libtmux version with
-V
/--version
-
Remove tox and tox-poetry-installer
This created issues with running poetry while inside the virtualenv.
-
Publish packages to PyPI via github action by setting git tag.
- {issue}
773
(backport): Allow click 8.1.x
-
Final python 3.7 and 3.8 release
Bug fixes and security updates will go to
v1.10.x
-
{issue}
747
: Skip execution viaenter: false
See {ref}
enter
.:::{note}
Experimental setting: behavior and api is subject to change until stable.
:::
session_name: Should not execute windows: - panes: - shell_command: - echo "this sends" - cmd: echo "___$((1 + 3))___" enter: false # pane-wide skip - shell_command: - echo "___$((1 + 3))___" enter: false
-
{issue}
750
: Pause execution viasleep_before: [int]
andsleep_after: [int]
See {ref}
sleep
.:::{note}
Experimental setting: behavior and api is subject to change until stable.
:::
session_name: Pause / skip command execution (command-level) windows: - panes: - shell_command: # Executes immediately - echo "___$((11 + 1))___" # Delays before sending 2 seconds - cmd: echo "___$((1 + 3))___" sleep_before: 2 # Executes immediately - cmd: echo "___$((1 + 3))___" # Pauses 2 seconds after - cmd: echo "Stuff rendering here!" sleep_after: 2 # Executes after earlier commands (after 2 sec) - cmd: echo "2 seconds later"
-
{issue}
701
:tmuxp freeze
now accepts--quiet
and--yes
along with the--config-format
and filename (--save-to
). This means you can do it all in one command:tmuxp freeze -yqo .tmuxp.yaml
Or bind it to
.tmux.conf
itself:bind -T root C-s run-shell "tmuxp freeze -yqo .tmuxp.yaml"
Credit: @davidatbu
-
{issue}
672
: Panes now acceptshell
for their initial command.Equivalent to
tmux split-windows
's[shell-command]
session_name: Pane shell example windows: - window_name: first window_shell: /usr/bin/python2 layout: even-vertical suppress_history: false options: remain-on-exit: true panes: - shell: /usr/bin/python3 shell_command: - print('This is python 3') - shell: /usr/bin/vim -u none shell_command: - iAll panes have the `remain-on-exit` setting on. - When you exit out of the shell or application, the panes will remain. - Use tmux command `:kill-pane` to remove the pane. - Use tmux command `:respawn-pane` to restart the shell in the pane. - Use <Escape> and then `:q!` to get out of this vim window. :-) - shell_command: - print('Hello World 2') - shell: /usr/bin/top
Credit: @jerri
- Improve
tmuxp freeze
UX flow, credit @joseph-flinn ({issue}657
, in re: {issue}627
) tmuxp freeze
will now detect the attached session if no session name is specified. Credit: @will-ockmore. ({issue}660
)
- Fix loading of
.yml
files withtmuxp convert
, thank you @kalixi! ({issue}725
)
-
{issue}
752
: Command structure (internal API)To pave the way for per-command options such as
enter: false
({issue}53
), commands are now a different format:Before,
str
:"echo hello"
After,
dict
:{ "cmd": "echo hello" }
This is purely internal. Normal usage should be the same since the configuration emits the equivalent result.
-
{issue}
752
: Configuration parsing refactorings
- Run through black + isort with string normalization ({issue}
738
). This way we can use black without any configuration. (One-time, big diff) - Run codebase through pyupgrade ({issue}
745
) - Add
codeql-analysis.yml
to try it out
- Move to
furo
sphinx theme - Reorganize documentation into sections
- Added examples for
enter: false
andsleep: [second]
-
poetry build
used to package in place ofpython setup.py build
({issue}729
)Package maintainers: If you run into any issues check in at {issue}
625
and file an issue.Additionally,
libtmux
has been pinned to a similar release at 0.10.3 which has used the new build process. -
poetry publish
instead oftwine upload dist/*
({issue}729
)Similar to the above, reach out to the {issue}
625
issue if you bump into problems.
-
tmuxp edit
for configuration changes ({issue}707
, @GlebPoljakov)Inside of configuration directory:
tmuxp edit yourconfig
Inside a project:
tmuxp edit .
- Python 3.6 support has been removed ({issue}
726
)
- We are trying
.pre-commit-config.yaml
in pull requests to automate black, isort and flake8 for those who forget ({issue}726
) - Poetry update 1.1.7 -> 1.1.12 and use new installer URL ({issue}
726
) - Black updated 21.9b0 -> 21.12b0 ({issue}
726
)
- {issue}
700
: Add-h
/--help
option, thanks @GHPS - {issue}
689
: Update poetry to 1.1- CI: Use poetry 1.1.7 and
install-poetry.py
installer - Relock poetry.lock at 1.1 (w/ 1.1.7's fix)
- CI: Use poetry 1.1.7 and
- {issue}
696
: Typo fix, thanks @inkch
- {issue}
686
: Allow click 8.0.x - Remove
manual/
, move to https://github.com/tmux-python/tmux-manuals
-
libtmux: Update to 0.10.1+ to include
Window.select_window()
fix
- libtmux: Update to 0.10.x
- {issue}
474
Re-release withpython setup.py sdist bdist_wheel
to fix missing test files
- {issue}
681
Bump version to make homebrew release easier
- {issue}
681
tmuxp is now available on homebrew! Thank you @jvcarli!
-
{issue}
662
CI: Only update docs when changed -
{issue}
666
CI: Move test plugin packages from pyproject.toml to pytest fixtures. Fixes {issue}658
-
{issue}
661
- Bump minimum version 3.5 -> 3.6
- Drop python 2.7 support
- Modernize syntax (remove
__future__
and modesets) - Update black to 21.6b0
- {issue}
666
CI: Move test plugin packages from pyproject.toml to pytest fixtures. Fixes {issue}658
- {issue}
665
Support for passing tmux config file (-f
), thanks @jfindlay! Fixes {issue}654
- {issue}
665
Support for passing tmux config file (-f
), thanks @jfindlay! Fixes {issue}654
This will be the last Python 2.7 release of tmuxp. Bug fixes for python 2.7 will live in the 1.7.x branch.
-
{issue}
530
New feature: Plugin system- Add plugin system for user customization of tmuxp
- Add tests for the plugin system
- Update existing tests for the plugin system
- Add the plugin interface to the tmuxp package
- Add in depth documentation for the plugin system
Thank you @joseph-flinn!
-
{issue}
656
New feature: Ability to append windows to a sessiontmuxp load -a configfile
will append a configuration to your current tmux session.Thank you @will-ockmore!
-
{issue}
647
Improvement: Logging to file:tmuxp load <filename> --log-level outputfile.log
-
{issue}
643
New command: Debug informationPort
tmuxp debug-info
from via v1.6.2
- Port click package fix from 1.6.4
- Port
tmuxp load <filename> --log-level outputfile.log
from 1.6.3
- Port
tmuxp debug-info
from {issue}643
from via v1.6.2
-
{issue}
530
Plugin system- Add plugin system for user customization of tmuxp
- Add tests for the plugin system
- Update existing tests for the plugin system
- Add the plugin interface to the tmuxp package
- Add in depth documentation for the plugin system
Thank you @joseph-flinn!
- {issue}
651
Fix packaging issue with click, thanks @dougharris! Fixes {issue}649
-
{issue}
647
Adding option to dump {}load
output to log file, thank you @joseph-flinn!tmuxp load file.yaml --log-file yourfile.txt
Adjust log levels:
tmuxp --log-level DEBUG load file.yaml --log-file yourfile.txt
- {issue}
643
New commandtmuxp debug-info
for creating github issues, fixes {issue}352
. Thank you @joseph-flinn!
(v1-6-1)=
-
{issue}
641
Improvements toshell
Thanks django-extensions (licensed MIT) for the shell detection abstraction.
-
Deprecate
shell_plus
-
tmuxp shell
now detects the best shell available by default -
Python 3.7+ with
PYTHONBREAKPOINT
set in env will drop intopdb
by default -
Drop into
code.interact
by default instead ofpdb
if no third party shells found -
New options, override:
-
-
{issue}
636
+ {issue}638
New command:tmuxp shell
Automatically preloads session, window, and pane via libtmux {ref}
API objects <libtmux:api>
and makes them available in a python console.:width: 100%
As of {ref}
1.6.1 (above) <v1-6-1>
,tmuxp shell
will find the most feature-rich shell available. If you have ipython, ptpython, or bpython available, it will be selected automatically. Pass--pdb
to use standard library pdb, or--code
to usecode.interact
.In python 3.7+, supports
PYTHONBREAKPOINT
:$ pip install --user ipdb $ env PYTHONBREAKPOINT=ipdb.set_trace tmuxp shell
You can execute python directly via
-c
:$ tmuxp shell -c 'print(session.name); print(window.name)' my_server my_window $ tmuxp shell my_server -c 'print(session.name); print(window.name)' my_server my_window $ tmuxp shell my_server my_window -c 'print(session.name); print(window.name)' my_server my_window $ tmuxp shell my_server my_window -c 'print(window.name.upper())' MY_WINDOW
- {issue}
639
Passes start_directory through to new tmux session Fixes {issue}631
, thank you @joseph-flinn!
-
{issue}
637
Support for loading directories with periods in ittmuxp load ~/work/your.project
will now workEarlier workaround was to do
tmuxp load ~/work/your.project/.tmuxp.yaml
Fixes {issue}
212
and {issue}201
- {issue}
618
: allow passing--overwrite
totmuxp freeze
. Thank you @betoSolares! - {issue}
589
added option for the the confirm command to auto-confirm the prompt. Thank you @aRkedos! - {issue}
626
Add new session name option to cli. Thank you @joseph-flinn! - {issue}
626
Add test for new session name option - {issue}
626
Update docs for new session name option - {issue}
623
Move docs from RTD to self-serve site - {issue}
623
Modernize Makefiles - {issue}
623
New development docs - {issue}
623
Move doc -> docs - {issue}
623
Move tests to GitHub Actions - {issue}
623
Update pyproject.toml to experiment with poetry packaging - {issue}
619
isort 5 - {issue}
629
Update black from 19.10b0 to 20.08b1
-
{issue}
616
(via: {issue}599
) New command:tmuxp ls
List commands available via config directory. If the config is printed, it's loadable via
tmuxp load configfilename
without needing to type the full filepath. Thank you @pythops! -
{issue}
480
Fix typo, thanks @jstoja -
{issue}
578
Fix typo, thanks @mauroporras -
{issue}
519
Fix typo, thanks @timgates42 -
{issue}
506
Fix Makefile typo, thanks @wolfgangpfnuer -
{issue}
619
Update isort to 5.x -
Travis: Only run on master and PRs one time
-
Travis: Add caching for tmux builds
-
Travis: Test 2.9 and 3.0a
-
{issue}
613
: Move from Pipenv to Poetry
- {issue}
500
: Fix window focus - Fix travis CI builds for python 3.7
- {issue}
377
: Include examples in source distribution package
- Loosen libtmux version constraint to >0.8 and <0.9 (libtmux 0.8.2 released today)
- {issue}
484
CHANGES converted to plain reStructuredText - {issue}
491
tmuxp freeze
will now infer active session with freezing - {issue}
490
Fix XDG's$XDG_CONFIG_HOME
behavior - {issue}
483
, {issue}482
, {issue}480
Doc fixes - {issue}
487
Simplifying handling of configs with no panes (Fixes {issue}470
)
- Add tests/*.sh scripts to MANIFEST.in to include them in Pypi package.
- Include twine to dev packages on requirements and Pipfile files.
-
Support Click 7.0
-
Remove unused
__future__
imports -
{issue}
471
Update libtmux 0.8.0 -> 0.8.1 -
{issue}
404
from @anddam, support XDG base directory -
Sort imports
-
Add configuration and make command for isort.
-
Add sphinxcontrib-napoleon.
-
Assure requirements/dev.txt dependencies are in Pipfile
-
Update sphinx, releases to latest version
-
Sync requirements/.txt* dependencies with *Pipfile*.
-
Update docstring style to use numpy-style documentation. This enhances readability and plays nicely with sphinx documentation.
-
Documentation overhaul.
- Areas like {meth}
tmuxp.cli.load_workspace
are now documented verbosely. This is so contributors helping on the project can more quickly gain situational awareness in this tricky area of code.
- Areas like {meth}
- {issue}
431
Include tests in source distribution
- Loosen click restraint to <7
-
Bump libtmux to 0.8.0
-
{issue}
264
Update license from BSD to MIT -
{issue}
348
Continuous integration updates and fixes for Travis CI- Update builds to use trusty
- Remove older python 3 versions (before 3.6)
- Update pypy versions
-
{issue}
349
flake8 via continuous integration -
Improve reliability of time-sensitive tests by using
while True
with a timeout. -
Update sphinx to 1.7.1
-
Update alagitpull (sphinx theme) to 0.0.19. External websites open in new window.
-
Update pytest to 3.4.1
-
{issue}
312
Support for tmux 2.6 layout setting (via hooks) in the following scenarios:- loading outside tmux
- loading inside tmux, via switch-client
- loading inside tmux, with session in background (with -d), and reattaching/switching to after
- loading session outside tmux in background with -d, and reattaching/switching after
-
{issue}
308
Fix bug where layouts don't correctly set on tmux 2.6 -
Upgrade libtmux to 0.7.7
- {}
before_script
now respects {}start_directory
in the session root. This makes it easier to run things like {}pipenv install
as a {}before_script
.
- Update libtmux to 0.7.5 for tmux 2.6 hotfix
- {issue}
184
- update libtmux to fix environmental variables in the session scope - Update libtmux to 0.7.4
- Updates to pytest and pytest-rerunfailures
- {issue}
252
Fix bug where loading a session with a name matching a subset of current session causes undesired behavior. - Update libtmux to 0.7.3
- Switch theme to alagitpull (alabaster subtheme)
- Remove unneeded doc dependency packages
- {issue}
239
Improve support for formatted options when freezing and using configs with them. - {issue}
236
Support for symlinked directories, thanks @rafi. - {issue}
235
Support foroptions_after
, for setting options likesynchronize-panes
. Thanks @sebastianst. - {issue}
248
Drop python 2.6 support - {issue}
248
Upgrade libtmux to 0.7.1 - Upgrade colorama from 0.3.7 to 0.3.9
- {issue}
229
More helpful error message on systems missing tmux. - Update libtmux from 0.6.4 to 0.6.5.
- Support for OpenBSD.
- {issue}
218
Fix pane ordering by runningselect-layout
before splits.
- {issue}
207
add custom tmuxp config directory viaTMUXP_CONFIGDIR
variable. - {issue}
199
support for running tmuxp on tmuxmaster
. - update libtmux from 0.6.2 to 0.6.3.
- {issue}
198
bump click from 6.6 to 6.7 - {issue}
195
pin packages for colorama and doc requirements
- bump libtmux 0.6.0 to 0.6.1
- {issue}
193
improve suppress history test, courtesy of @abeyer. - {issue}
191
documentation typo from @modille - {issue}
186
documentation typo from @joelwallis
- {issue}
181
Support tmux 2.3
- {issue}
132
Handle cases with invalid session names - update libtmux from 0.5.0 to 0.6.0
-
{issue}
65
Ability to specifyoptions
andglobal_options
via configuration. Also you can specify environment variables via that.Include tests and add example.
- {issue}
167
fix attaching multiple sessions - {issue}
165
fix typo in error output, thanks @fpietka - {issue}
166
add new docs on zsh/bash completion - Add back
tmuxp -V
for version info
- {issue}
160
load tmuxp configs by name - {issue}
134
Useclick
for command-line completion, Rewrite command line functionality for importing, config finding, conversion and prompts. - Remove
-l
fromtmuxp import tmuxinator|teamocil
- {issue}
158
argparse bug overcome by switch to click
- {issue}
163
fix issue re-attaching sessions that are already loaded - {issue}
159
improved support for tmuxinator imports, from @fpietka. - {issue}
161
readme link fixes from @Omeryl.
- switch to readthedocs.io for docs
- {issue}
157
bump libtmux to 0.4.1
- version jump 0.11.1 to 1.0
- tests moved to py.test framework
- libtmux core split into its own project
- {issue}
145
Add new-window command functionality, @ikirudennis - {issue}
146
Optionally disable shell history suppression, @kmactavish - {issue}
147
Patching unittest timing for shell history suppression - move doc building, tests and watcher to Makefile
- update .tmuxp.yaml and .tmuxp.json for Makefile change
- overhaul README
- {issue}
137
Support for environment settings in configs, thanks {}@tasdomas
- Spelling correction, thanks @sehe.
- {issue}
135
Load multiple tmux sessions at once, thanks @madprog. - {issue}
131
{issue}133
README and Documentation fixes
- switch to
.venv
for virtualenv directory to not conflict with.env
(used by autoenv). - {issue}
130
move to entr(1) for file watching in tests. update docs. - [compatibility] Support Anaconda Python 2 and 3
- {issue}
122
Update to support tmux 2.1, thank you @estin. - use travis container infrastructure for faster tests
- change test in workspace builder test to use
top(1)
instead ofman(1)
.man(1)
caused errors on some systems wherePAGER
is set.
- {issue}
119
Add fix python 3 for sysutils/pytmuxp on FreeBSD ports. See GH issue 119 and #201564 @ FreeBSD Bugzilla. Thanks Ruslan Makhmatkhanov.
- Renamed
config.expandpath
toconfig.expandshell
. - compat 2.7/3.3 wrapper for
EnvironmentVarGuard
for testing. - You can now use environment variables inside of
start_directory
,before_script
,shell_command_before
,session_name
andwindow_name
. - [examples]: add example for environmental variables,
examples/env-variables.json
andexamples/env-variables.yaml
. - {issue}
110
de-vendorize colorama. Thanks @marbu. - {issue}
109
fix failure of test_pane_order on fedora machines from @marbu - {issue}
105
append.txt
extension to manuals (repo ony) from @yegortimoshenko. - {issue}
107
Fix Server.attached_sessions return type by @thomasballinger. - update travis to use new tmux git repository.
- [testing]: fix sniffer test runner in python 3
- new animated image demo for RTD and README
-
version bump 0.1.13 -> 0.8.0
-
tmux 2.0 support
-
Fix documentation for :meth:
Session.switch_client()
. -
Add
--log-level
argument. -
Refactor
{Server,Session,Window,Pane}.tmux
into:- {meth}
Server.cmd()
- {meth}
Session.cmd()
- {meth}
Window.cmd()
- {meth}
Pane.cmd()
(See conversation at https://github.com/bitprophet/dotfiles/issues/5)
- {meth}
-
Refactor
util.tmux
into {meth}util.tmux_cmd
.
- Remove
package_metadata.py
in favor of__about__.py
. scent.py
for building docs- docutils from 0.11 to 0.12
bootstrap_env.py
will check for linux, darwin (OS X) and windows and install the correct sniffer file watcher plugin.- testsuite for cli uses {py:func}
tempfile.mkdtemp()
insteadTMP_DIR
(which resolved to.tmuxp
in the testsuite directory. - replace watchingtestrunner with sniffer in examples.
.tmuxp.conf
and.tmux.json
updated - updates to doc links
make checkbuild
for verifying internal / intersphinx doc references.- Add Warning tmux versions less than 1.4 from @techtonik.
- Add documentation on leading space in
send_keys
from @thomasballinger. - Update about page from teamocil and erb support from @raine.
-
[config] {meth}
config.expand
now resolves directories in configuration via {py:func}os.path.expanduser
and {py:func}os.path.expandvars
. -
[config] {meth}
config.expandpath
for helping resolve paths. -
improved support for loading tmuxp project files from outside current working directory. e.g.
$ tmuxp load /path/to/my/project/.tmuxp.yaml
Will behave better with relative directories.
before_script
now loads relative to project directory with./
.- Use
bootstrap_env.py
in tmuxp's.tmuxp.yaml
and.tmuxp.json
project files. - Improvements to {meth}
util.run_before_script()
, {class}exc.BeforeLoadScriptFailed
behavior to printstdout
and returnstderr
is a non-zero exit is returned. run_script_before
has moved toutil
.BeforeLoadScriptFailed
andBeforeLoadScriptNotExists
has moved to theexc
module.- Tests for
run_script_before
refactored.
- 2 bug fixes and allow panes with no shell commands to accept options, thanks for these 3 patches, @ThiefMaster:
- {issue}
73
Fix an error caused by spaces instart_directory
. - {issue}
77
Fix bug where having a-
in ashell_command
would cauesd a build error. - {issue}
76
Don't requireshell_command
to pass options to panes (likefocus: true
).
- The
--force
was not with us.
- {issue}
72
Create destination directory if it doesn't exist. Thanks @ThiefMaster. - New context manager for tests,
temp_session
. - New testsuite,
testsuite.test_utils
for testing testsuite tools. - New command,
before_script
, which is a file to be executed with a return code. It can be a bash, perl, python etc. script. - {issue}
56
{ref}python_api_quickstart <libtmux:quickstart>
- {issue}
55
where tmuxp would crash with letter numbers in version. Write tests.
-
{meth}
Window.split_window()
now allows-c start_directory
. -
{issue}
35
Builder will now use-c start_directory
to create new windows and panes.This removes a hack where
default-path
would be set for new pane and window creations. This would bleed into tmux user sessions after creations.
- {issue}
49
bug wherepackage_manifest.py
missing fromMANIFEST.in
would cause error installing.
- section heading normalization.
- tao of tmux section now treated as a chatper. tao of tmux may be split off into its own project.
- use conventions from tony/cookiecutter-pypackage.
- Fix
$ tmuxp freeze
CLI output. - Update
_compat
support module. - Fix extra space in PEP 263.
- {issue}
48
Fix Python 3 CLI issue. - {issue}
48
$ tmuxp
without option raises an error. - Add space before send-keys to not populate bash and zsh history.
- now using werkzeug / flask style testsuites.
- {issue}
43
Mergetmuxp -d
for loading in detached mode. Thanks roxit.
- {issue}
32
Fix bug where special characters caused unicode caused unexpected outcomes loading and freezing sessions.
- fix duplicate print out of filename with using
tmuxp load .
. - version to 0.1. No
--pre
needed. Future versions will not use rc.
unicode_literals
- Move py2/py3 compliancy code to
_compat
.
- {issue}
33
Partial rewrite of {meth}config.expand
. - tmuxp will exit silently with
Ctrl-c
.
- {issue}
31
[examples] from stratoukos addwindow_index
option, and example.
- {issue}
28
shell_command_before in session scope of config causing duplication. New test. - {issue}
26
{issue}29
for OS X tests. Thanks stratoukos. - {issue}
27
$ tmuxp freeze
raises unhelpful message if session doesn't exist.
- fix bug were
focus: true
would not launch sessions when using$ tmuxp load
in a tmux session.
- {issue}
25
focus: true
not working in panes. Add tests for focusing panes in config. - {meth}
Pane.select_pane()
. - add new example for
focus: true
.
- {issue}
23
fix bug where workspace would not build with pane-base-index set to 1. Update tests to fix ifpane-base-index
is not 0. - removed
$ tmuxp load --list
functionality. Update {ref}quickstart
accordingly.
- pep8 and pep257 in unit tests.
- Changelog will now be updated on a version basis, use pep440 versioning.
- {meth}
Session.show_options
, {meth}Session.show_option
now acceptg
to pass in-g
.
- {meth}
Window.show_window_options
, {meth}Window.show_window_option
now acceptg
to pass in-g
. - {issue}
15
Behavioral changes in the WorkspaceBuilder to fix pane ordering. - {issue}
21
Error with unit testing python 2.6 python configuration tests. Use {py:mod}tempfile
instead. - WorkspaceBuilder tests have been improved to use async better.
- fix a bug where missing tmux didn't show correct warning.
- Travis now tests python 2.6 as requirement and not allowed to fail.
- {issue}
19
accept-y
argument to answer yes to questions. - {meth}
cli.SessionCompleter
no longer allows a duplicate session after one is added. - ongoing work on {ref}
about-tmux
.
- [translation] documentation in Chinese from wrongwaycn.
- More work done on the {ref}
about-tmux
page. - {meth}
Pane.split_window()
for splitting {class}Window
attarget-pane
location.
-
[freeze] -
$ tmuxp freeze
will now freeze a window with astart_directory
when all panes in a window are inside the same directory. -
[config] {meth}
config.inline
will now turn panes with no other attributes and 1 command into a single item value.- panes: - shell_command: top # will now inline to: - panes - top This will improve ``$ tmuxp freeze``
- Remove old logger (based on tornado's log.py), replace with new, simpler one.
- fix teamocil import.
- support import teamocil
root
tostart_directory
.
- tagged v0.0.37. Many fixes. Python 2.6 support. Will switch to per-version changelog after 0.1 release.
- support for blank panes (null,
pane
,blank
) and panes with empty strings. - tmuxp freeze supports exporting to blank panes.
- tmuxp freeze will now return a blank pane for panes that would previously return a duplicate shell command, or generic python, node interpreter.
- Support for
[-L socket-name]
and[-S socket-path]
in autocompletion and when loading. Note, switching client into another socket may cause an error. - Documentation tweaking to {ref}
API
, {ref}about-tmux
. - pep257, pep8.
- Many documentation, pep257, pep8 fixes
- move old {class}
Server
methods__list_panes()
,__list_windows
and__list_sessions
into the single underscore. - {issue}
12
fix for$ tmuxp freeze
by @finder. - Support for spaces in
$ tmuxp attach-session
and$ tmuxp kill-session
, and$ tmuxp freeze
. - [config] support for relative paths of
start_directory
. Add an update config in Start Directory on {ref}examples
.
- New servers for {class}
Server
argumentssocket_name
,socket_path
,config_file
. - {class}
Server
support for-2
withcolors=256
andcolors=8
. $ tmuxp -2
for forcing 256 colors andtmuxp -8
for forcing 88.- [config] Concatenation with
start_directory
via {meth}config.trickle()
if windowstart_directory
is alphanumeric / relative (doesn't start with/
). See {ref}Examples
in start directory. - Fix bug with import teamocil and tmuxinator
- Improve quality of tmuxinator imports. Especially
session_name
andstart_directory
. - Allow saving with
~
in file destination.
- {meth}
util.is_version()
- correctly {meth}
config.trickle()
thestart_directory
. - get
start_directory
working for configs - fix :meth:
Window.kill_window()
target tosession_id:window_index
for compatibility and pass tests. - [examples]: Example for
start_directory
. - fix bug where first and second window would load in mixed order
- {class}
Window.move_window()
for moving window. - doc overhaul. front page, renamed orm_al.rst to internals.rst.
- fix bug where if inside tmux, loading a workspace via switch_client wouldn't work.
- fix bug where
tmuxp load .
would return an error instead of a notice. tmuxp freeze <filename>
experimental- tmuxp now has experimental support for freezing live sessions.
- {meth}
Window.kill_window()
- support for
start_directory
(work in progress)
- {meth}
Window.select_pane
now accepts-l
,-U
,-D
,-L
,-R
. - support for
automatic-rename
option. - 3 new {ref}
examples
, 'main-pane-height', 'automatic-rename', and 'shorthands'. - enhancements to prompts
tmuxp import
for teamocil and tmuxinator now has a wizard and offers to save in JSON or YAML format.- [b6c2e84] Fix bug where tmuxp load w/ session already loaded would switch/attach even if no was entered
- when workspace loader crashes, give option to kill session, attach it or detach it.
- tmux 1.8
set-option
/set-window-options
commandtarget-window
fix. - {class}
WorkspaceBuilder
now has.session
attribute accessible publicly. - tmux will now use {meth}
Session.switch_client
and {meth}Session.attach_session
to open new sessions instead ofos.exec
. - [config] tmuxp now allows a new shorter form for panes. Panes can just be a
string. See the shorthand form in the {ref}
examples
section. - [config] support loading
.yml
.
- fix
tmuxp load .
fixed - fix
tmuxp convert <file>
fixed. - pep257 fixes.
- {class}
Pane
now has {meth}Pane.set_width
and {meth}Pane.set_height
. ./run_tests.py --tests
now automatically prependstmuxp.testsuite
to names.- {meth}
Window.tmux
and {meth}Pane.tmux
will automatically add their{window/pane}_id
if one isn't specific.
- argcomplete overhaul for CLI bash completion.
tmuxp load
,tmuxp convert
andtmuxp import
now support relative and full filenames in addition to searching the config directory.
- initial version of tmuxinator and teamocil config importer. it does not support all options and it not guaranteed to fully convert window/pane size and state.
- {meth}
config.in_dir
supports a list ofextensions
for filetypes to search, i.e.['.yaml', '.json']
. - {meth}
config.is_config_file
now supportsextensions
argument as a string also. - fix
$ tmuxp load -l
to work correctly alongside$ tmuxp load filename
.
- fix bug where
-v
and--version
wouldn't print version. - property handle case where no tmux server exists when
attach-session
orkill-session
is used. - test fixtures and inital work for importing tmuxinator and teamocil configs
- clean out old code for
automatic-rename
option. it will be reimplemented fresh. - check for
oh-my-zsh
when using$SHELL
zsh
. Prompt ifDISABLE_AUTO_TITLE
is unset or set totrue
. - tmuxp can now
$ tmuxp convert <file>
from JSON <=> YAML, back and forth. - New examples in JSON. Update the {ref}
examples
page in the docs. - [dev]
.tmuxp.json
now exists as a config for tmuxp development and as an example. - Fix bug where
tmuxp kill-session
would give bad output - Fix bug in tab completion for listing sessions with no tmux server is active.
- zsh/bash/tcsh completion improvements for tab-completion options
- tmuxp
kill-session
with tab-completion. - tmuxp
attach-session
with tab-completion. Attach session willswitch-client
for you if you are inside of of a tmux client. - tmuxp
load
for loading configs. - unit test fixes.
- Make 1.8 the official minimym version, give warning notice to upgrade tmux if out of date
- Fix regression causing unexpected build behavior due to unremoved code supporting old tmux versions.
- Added 2 new examples to the {ref}
examples
page. - Examples now have graphics
$ tmuxp -v
will print the version info.
-
tmuxp will now give warning and sys.exit() with a message if
tmux
not found in system PATH -
internal overhaul of {class}
Server
, {class}Session
, {class}Window
, and {class}Pane
continues.- {class}
Server
has @property {meth}Server.sessions
, which is forward to {meth}Server.list_sessions()
(kept to keep tmux commands in serendipty with api), {meth}Server._list_sessions()
returns dict object from {meth}Server.__list_sessions()
tmux command. {meth}Server.__list_sessions()
exists to keep the command layered so it can be tested against in a matrix with travis and compatibility methods can be made. - {class}
Session
now has @proprety {meth}Session.windows
returning a list of {class}Window
objects via {meth}Session.list_windows()
. @property {meth}Session._windows
to {meth}Session._list_windows()
to return a list of dicts without making objects. - {class}
Window
now has @proprety {meth}Window.panes
returning a list of {class}Pane
objects via {meth}Window.list_panes()
. @property {meth}Window._panes
to {meth}Window._list_panes()
to return a list of dicts without making objects.
- {class}
-
internal overhaul of {class}
Server
, {class}Session
, {class}Window
, and {class}Pane
.Session
,Window
andPane
now refer to a data object in {class}Server
internally and always pull the freshest data.- A lot of code and complexity regarding setting new data for objects
has been reduced since objects use their unique key identifier to
filter their objects through the windows and panes in
Server
object. Server
object is what does the updating now.
-
[project] some research into supporting legacy tmux versions. tmux 1.6 and 1.7 support seem likely eventually if there is enough demand.
-
python 3 support
- updated README docs with new project details, screenshots
- new example
.tmuxp.yaml
file updated to include development workflow. Removed nodemon as the tool for checking files for now. - Support for switching sessions from within tmux. In both cases after the the session is built and if session already exists.
- use {meth}
util.which()
from salt.util to find tmux binary. - add MANIFEST.in, fix issue where package would not install because missing file
- bash / zsh completion.
- New page on {ref}
internals
. - Updates to {ref}
about-tmux
page. - add vim modeline for rst to bottom of this page
- Server is now a subclass of
util.TmuxObject
. - subclasses of {class}
util.TmuxRelationalObject
, {class}Server
, {class}Session
, {class}Window
, {class}Pane
now have {meth}util.TmuxRelationalObject.getById
(similar to .get() in backbone.js collection), {meth}util.TmuxRelationalObject.where
and {meth}util.TmuxRelationalObject.findWhere
(.where() and .findWhere() in underscore.js), to easily find child objects. - tmux object mapping has been split into
{class}
util.TmuxMappingObject
. The mapping and the relational has been decoupled to allow {class}Server
to have children while not being a dict-like object. - {class}
Server
, {class}Session
, {class}Window
, {class}Pane
now explicitly mixin subclasses.
-
new theme
-
initial examples, misc. updates, front page update.
-
support for
$ tmux .
to load.tmuxp.{yaml/json/py}
in current working directory. -
support for
socket-name
(-L
) andsocket-path
(socket-path
) -
[config] Support for 1-command pane items.
session_name: my session windows: - window_name: hi panes: - bash - htop
-
If session name is already exists, prompt to attach.
- can now -l to list configs in current directory and $HOME/.tmuxp
- tmuxp can now launch configs and build sessions
- new exceptions
- {meth}
config.check_consistency()
to verify and diagnose issues with config files. - {meth}
cli.startup()
- {meth}
config.is_config_file()
- {meth}
config.in_dir()
- {meth}
config.in_cwd()
- {meth}
config.inline()
to produce far far better looking config exports and tests. - {meth}
Pane.resize_pane()
and tests - documentation fixes and updates
- {meth}
Session.refresh()
, {meth}Window.refresh()
, {meth}Pane.refresh()
. - {meth}
Server.find()
, {meth}Session.find()
, {meth}Window.find()
.
- Test documentation updates
- Builder is now {class}
WorkspaceBuilder
+ tests.- WorkspaceBuilder can build panes
- WorkspaceBuilder can build windows and set options
- {meth}
Window.show_window_options()
, {meth}Window.show_window_option()
, {meth}Window.set_window_option()
- {meth}
Session.show_options()
, {meth}Session.show_option()
, {meth}Session.set_option()
- More preparation for builder / session maker utility.
- test runner and test suite overhaul.
- Documentation for development environment and test runner updated.
- Travis now tests against tmux 1.8 and latest source. Door open for future testing against python 3 and earlier tmux versions in the future.
- Quiet logger down in some areas
- future imports for future python 3 compatibility
- setup.py import version via regex from tmuxp package
- move beginnings of cli to
tmuxp.cli
- New logging module
- Removed dependency logutils
- Removed dependency sh
- switch to semver