| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
substitute modifiers.
|
|
|
|
|
|
| |
to start, otherwise commands like lsk which start the server again can
end up looping infinitely. Also make the first client exit
correctly. Problem reported by Wael M Nasreddine.
|
| |
|
|
|
|
|
| |
detaching (like detach-client -P). From Colin Watson in GitHub issue
1773.
|
|
|
|
| |
which is much easier to work with. Based on a diff from Avi Halachmi.
|
|
|
|
| |
items to the pane menu.
|
|
|
|
| |
processing code.
|
| |
|
|
|
|
| |
escape key bindings in list-keys. Also escape ~ and ; and $ properly.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
parser using yacc(1). This is a major change but is clearer and simpler
and allows some edge cases to be made more consistent, as well as
tidying up how aliases are handled. It will also allow some further
improvements later.
Entirely the same parser is now used for parsing the configuration file
and for string commands. This means that constructs previously only
available in .tmux.conf, such as %if, can now be used in string commands
(for example, those given to if-shell - not commands invoked from the
shell, they are still parsed by the shell itself).
The only syntax change I am aware of is that #{} outside quotes or a
comment is now considered a format and not a comment, so #{ is now a
syntax error (notably, if it is at the start of a line).
This also adds two new sections to the man page documenting the syntax
and outlining how parsing and command execution works.
Thanks to everyone who sent me test configs (they still all parse
without errors - but this doesn't mean they still work as intended!).
Thanks to Avi Halachmi for testing and man page improvements, also to
jmc@ for reviewing the man page changes.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
work but I don't need it.
|
|
|
|
|
| |
display-menu shows a menu (bound to the mouse on status line by default)
and a couple of extra formats for the default menus.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
generic and hide the display-panes specific bits into
cmd-display-panes.c.
|
|
|
|
|
|
| |
immediately rather than queuing them (the command can block the queue
which means they were not being seen until it finished which was too
late). Reported by denis@ and solene@, ok solene@.
|
|
|
|
| |
work in newer libevent.
|
|
|
|
| |
split-window or display-message -I.
|
| |
|
|
|
|
|
| |
command queue so they are ordered correctly with the commands that they
execute.
|
|
|
|
|
|
| |
flag -e to new-window, split-window, respawn-window, respawn-pane to
pass environment variables into the newly created process. From Steffen
Christgau in GitHub issue 1697.
|
|
|
|
|
|
|
| |
multiple commands to be easily bound to one hook. set-hook and
show-hooks remain but they are now variants of set-option and
show-options. show-options now has a -H flag to show hooks (by default
they are not shown).
|
|
|
|
| |
buffer (needed for something in the future).
|
|
|
|
| |
in future will not have to be strings.
|
|
|
|
| |
window.c into a separate file spawn.c.
|
|
|
|
| |
allows buffers for different sessions to be named separately.
|
|
|
|
|
| |
on unwrapped lines, rather than a grid offset. Fixes problems reported
by Thomas Sattler and Paul de Weerd.
|
|
|
|
| |
parts of the status line, from Avi Halachmi.
|
|
|
|
| |
offset into the entire history before reflow and restoring it aftewards.
|
|
|
|
|
| |
favour of -style), undocumented and hidden from show-options since
2014. Remove them, except for status-fg and status-bg.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
changes to allow the status line to be entirely configured with a single
option.
Now that it is possible to configure their content, enable the existing
code that lets the status line be multiple lines in height. The status
option can now take a value of 2, 3, 4 or 5 (as well as the previous on
or off) to configure more than one line. The new status-format array
option configures the format of each line, the default just references
the existing status-* options, although some of the more obscure status
options may be eliminated in time.
Additions to the #[] syntax are: "align" to specify alignment (left,
centre, right), "list" for the window list and "range" to configure
ranges of text for the mouse bindings.
The "align" keyword can also be used to specify alignment of entries in
tree mode and the pane status lines.
|
|
|
|
|
| |
(tree_mode_format and so on) and add a -a flag to display-message to
list variables with values.
|
|
|
|
| |
remove the size limit.
|
|
|
|
| |
copying them around all the time.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
is parsed, this gives the user a way to debug problems with formats
rather than just being confronted with (for example) a blank status
line.
|
| |
|
|
|
|
| |
grid_cell directly. There will be some non-cell members soon.
|
|
|
|
| |
is worth.
|
|
|
|
|
|
| |
and use tty_clear_line (which will choose the best escape sequence) to
clear any batches of cells with that flag when redrawing a line from the
stored screen.
|