#
b2f25228 |
| 14-May-2024 |
nicm <nicm@openbsd.org> |
Restore previous behaviour or writing to stdout if available.
|
#
f853135f |
| 23-Aug-2023 |
nicm <nicm@openbsd.org> |
Add -c to run-shell to set working directory, from someone in GitHub issue 3661.
|
#
2c14992e |
| 02-Jun-2022 |
nicm <nicm@openbsd.org> |
Do not attempt to use client in config file (it will be NULL), GitHub issue 3206.
|
#
16be08e6 |
| 30-May-2022 |
nicm <nicm@openbsd.org> |
Add a way for lines added to copy mode to be passed through the parser to handle escape sequences and use it for run-shell, GitHub issue 3156.
|
#
03a1f8dd |
| 11-Oct-2021 |
nicm <nicm@openbsd.org> |
Add -e flag to set environment for popup, from Alexis Hildebrandt in GitHub issue 2924.
|
#
2d792bf3 |
| 16-Sep-2021 |
nicm <nicm@openbsd.org> |
Fix run-shell -d with no command, GitHub issue 2885.
|
#
67a3a2b6 |
| 15-Sep-2021 |
nicm <nicm@openbsd.org> |
For the moment, restore if-shell and run-shell to parsing at the last moment (when the shell command completes) rather than when first invoked, GitHub issue 2872.
|
#
0b5b9347 |
| 09-Sep-2021 |
nicm <nicm@openbsd.org> |
Expand argument to run-shell again.
|
#
e4c0b811 |
| 25-Aug-2021 |
nicm <nicm@openbsd.org> |
Validate command argument types (string or command list) and give more useful error messages.
|
#
2db6a388 |
| 23-Aug-2021 |
nicm <nicm@openbsd.org> |
Move command argument parsing common functions and don't bother to parse again if given a command rather than a string.
|
#
a51dead1 |
| 21-Aug-2021 |
nicm <nicm@openbsd.org> |
Add args parsing callback for some future work, currently unused.
|
#
1693b10b |
| 20-Aug-2021 |
nicm <nicm@openbsd.org> |
Hide struct args behind a couple of accessor functions.
|
#
d530b597 |
| 13-Aug-2021 |
nicm <nicm@openbsd.org> |
Set return code for confirm-before and make command-prompt also block, GitHub issue 2822.
|
#
e7e79d0a |
| 12-Apr-2021 |
nicm <nicm@openbsd.org> |
Add a flag to disable keys to close a message, GitHub issue 2625.
|
#
5d57355a |
| 15-Mar-2021 |
nicm <nicm@openbsd.org> |
Do not crash if there is no item to show command error, from Anindya Mukherjee.
|
#
309e6403 |
| 02-Mar-2021 |
nicm <nicm@openbsd.org> |
Drop support for popups where the content is provided directly to tmux (which does not have many practical uses) and only support running a program in the popup. display-popup is now simpler and can
Drop support for popups where the content is provided directly to tmux (which does not have many practical uses) and only support running a program in the popup. display-popup is now simpler and can accept multiple arguments to avoid escaping problems (like the other commands).
show more ...
|
#
caf1a96f |
| 01-Jan-2021 |
nicm <nicm@openbsd.org> |
Add a -C flag to run-shell to use a tmux command rather than a shell command.
|
#
dc0b8f77 |
| 12-Jun-2020 |
nicm <nicm@openbsd.org> |
Do not wait on shutdown for commands started with run -b.
|
#
67c16a7c |
| 16-May-2020 |
nicm <nicm@openbsd.org> |
Add a customize mode where keys and options may be browsed and changed, includes adding a brief description of each option. Bound to "C" by default.
|
#
035dc73d |
| 13-Apr-2020 |
nicm <nicm@openbsd.org> |
Make client -c and -t handling common in cmd-queue.c and try to be clearer about whether the client is the target client (must have a session) or not.
|
#
040343ae |
| 13-Apr-2020 |
nicm <nicm@openbsd.org> |
Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make its use more clearly defined and preparation for some future work).
|
#
90d7ba38 |
| 13-Apr-2020 |
nicm <nicm@openbsd.org> |
Make struct cmd local to cmd.c and move it out of tmux.h.
|
#
cdfe74ad |
| 10-Apr-2020 |
nicm <nicm@openbsd.org> |
Now that copy mode copies the pane content rather than keeping a reference to it, it isn't necessary that the pane in copy mode is the same as the one copying from. Add a -s flag to copy-mode to spec
Now that copy mode copies the pane content rather than keeping a reference to it, it isn't necessary that the pane in copy mode is the same as the one copying from. Add a -s flag to copy-mode to specify a different pane for the source content. This means it is possible to view two places in a pane's history at the same time in different panes, or copy from a pane's history into an editor or shell in the same pane.
From Anindya Mukherjee.
show more ...
|
#
b372330d |
| 21-Mar-2020 |
nicm <nicm@openbsd.org> |
Preserve exit status from run-shell and pass to the client.
|
#
a6396ca2 |
| 19-Mar-2020 |
nicm <nicm@openbsd.org> |
Add a flag to run a background process in a pty as well, not used for anything yet.
|