2009-06-01 22:58:49 +00:00
|
|
|
# $OpenBSD$
|
|
|
|
|
|
|
|
PROG= tmux
|
2015-08-29 08:30:54 +00:00
|
|
|
SRCS= alerts.c \
|
|
|
|
arguments.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
attributes.c \
|
|
|
|
cfg.c \
|
|
|
|
client.c \
|
|
|
|
cmd-attach-session.c \
|
|
|
|
cmd-bind-key.c \
|
|
|
|
cmd-break-pane.c \
|
|
|
|
cmd-capture-pane.c \
|
2012-07-08 16:04:38 +00:00
|
|
|
cmd-choose-tree.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
cmd-command-prompt.c \
|
|
|
|
cmd-confirm-before.c \
|
|
|
|
cmd-copy-mode.c \
|
|
|
|
cmd-detach-client.c \
|
2019-05-10 18:04:06 +00:00
|
|
|
cmd-display-menu.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
cmd-display-message.c \
|
|
|
|
cmd-display-panes.c \
|
|
|
|
cmd-find-window.c \
|
Rewrite of choose mode, both to simplify and tidy the code and to add
some modern features.
Now the common code is in mode-tree.c, which provides an API used by the
three modes now separated into window-{buffer,client,tree}.c. Buffer
mode shows buffers, client mode clients and tree mode a tree of
sessions, windows and panes.
Each mode has a common set of key bindings plus a few that are specific
to the mode. Other changes are:
- each mode has a preview pane: for buffers this is the buffer content
(very useful), for others it is a preview of the pane;
- items may be sorted in different ways ('O' key);
- multiple items may be tagged and an operation applied to all of them
(for example, to delete multiple buffers at once);
- in tree mode a command may be run on the selected item (session,
window, pane) or on tagged items (key ':');
- displayed items may be filtered in tree mode by using a format (this
is used to implement find-window) (key 'f');
- the custom format (-F) for the display is no longer available;
- shortcut keys change from 0-9, a-z, A-Z which was always a bit weird
with keys used for other uses to 0-9, M-a to M-z.
Now that the code is simpler, other improvements will come later.
Primary key bindings for each mode are documented under the commands in
the man page (choose-buffer, choose-client, choose-tree).
Parts written by Thomas Adam.
2017-05-30 21:44:59 +00:00
|
|
|
cmd-find.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
cmd-if-shell.c \
|
|
|
|
cmd-join-pane.c \
|
|
|
|
cmd-kill-pane.c \
|
|
|
|
cmd-kill-server.c \
|
|
|
|
cmd-kill-session.c \
|
|
|
|
cmd-kill-window.c \
|
|
|
|
cmd-list-buffers.c \
|
|
|
|
cmd-list-clients.c \
|
|
|
|
cmd-list-keys.c \
|
|
|
|
cmd-list-panes.c \
|
|
|
|
cmd-list-sessions.c \
|
|
|
|
cmd-list-windows.c \
|
|
|
|
cmd-load-buffer.c \
|
2011-01-04 02:03:41 +00:00
|
|
|
cmd-lock-server.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
cmd-move-window.c \
|
|
|
|
cmd-new-session.c \
|
|
|
|
cmd-new-window.c \
|
2019-05-23 11:13:30 +00:00
|
|
|
cmd-parse.y \
|
2011-01-04 02:03:41 +00:00
|
|
|
cmd-paste-buffer.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
cmd-pipe-pane.c \
|
Rewrite of choose mode, both to simplify and tidy the code and to add
some modern features.
Now the common code is in mode-tree.c, which provides an API used by the
three modes now separated into window-{buffer,client,tree}.c. Buffer
mode shows buffers, client mode clients and tree mode a tree of
sessions, windows and panes.
Each mode has a common set of key bindings plus a few that are specific
to the mode. Other changes are:
- each mode has a preview pane: for buffers this is the buffer content
(very useful), for others it is a preview of the pane;
- items may be sorted in different ways ('O' key);
- multiple items may be tagged and an operation applied to all of them
(for example, to delete multiple buffers at once);
- in tree mode a command may be run on the selected item (session,
window, pane) or on tagged items (key ':');
- displayed items may be filtered in tree mode by using a format (this
is used to implement find-window) (key 'f');
- the custom format (-F) for the display is no longer available;
- shortcut keys change from 0-9, a-z, A-Z which was always a bit weird
with keys used for other uses to 0-9, M-a to M-z.
Now that the code is simpler, other improvements will come later.
Primary key bindings for each mode are documented under the commands in
the man page (choose-buffer, choose-client, choose-tree).
Parts written by Thomas Adam.
2017-05-30 21:44:59 +00:00
|
|
|
cmd-queue.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
cmd-refresh-client.c \
|
|
|
|
cmd-rename-session.c \
|
|
|
|
cmd-rename-window.c \
|
|
|
|
cmd-resize-pane.c \
|
Support for windows larger than visible on the attached client. This has
been a limitation for a long time.
There are two new options, window-size and default-size, and a new
command, resize-window. The force-width and force-height options and the
session_width and session_height formats have been removed.
The new window-size option tells tmux how to work out the size of
windows: largest means it picks the size of the largest session,
smallest the smallest session (similar to the old behaviour) and manual
means that it does not automatically resize windows. The default is
currently largest but this may change. aggressive-resize modifies the
choice of session for largest and smallest as it did before.
If a window is in a session attached to a client that is too small, only
part of the window is shown. tmux attempts to keep the cursor visible,
so the part of the window displayed is changed as the cursor moves (with
a small delay, to try and avoid excess redrawing when applications
redraw status lines or similar that are not currently visible). The
offset of the visible portion of the window is shown in status-right.
Drawing windows which are larger than the client is not as efficient as
those which fit, particularly when the cursor moves, so it is
recommended to avoid using this on slow machines or networks (set
window-size to smallest or manual).
The resize-window command can be used to resize a window manually. If it
is used, the window-size option is automatically set to manual for the
window (undo this with "setw -u window-size"). resize-window works in a
similar way to resize-pane (-U -D -L -R -x -y flags) but also has -a and
-A flags. -a sets the window to the size of the smallest client (what it
would be if window-size was smallest) and -A the largest.
For the same behaviour as force-width or force-height, use resize-window
-x or -y, and "setw -u window-size" to revert to automatic sizing..
If the global window-size option is set to manual, the default-size
option is used for new windows. If -x or -y is used with new-session,
that sets the default-size option for the new session.
The maximum size of a window is 10000x10000. But expect applications to
complain and much higher memory use if making a window excessively
big. The minimum size is the size required for the current layout
including borders.
The refresh-client command can be used to pan around a window, -U -D -L
-R moves up, down, left or right and -c returns to automatic cursor
tracking. The position is reset when the current window is changed.
2018-10-18 08:38:01 +00:00
|
|
|
cmd-resize-window.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
cmd-respawn-pane.c \
|
|
|
|
cmd-respawn-window.c \
|
|
|
|
cmd-rotate-window.c \
|
|
|
|
cmd-run-shell.c \
|
|
|
|
cmd-save-buffer.c \
|
|
|
|
cmd-select-layout.c \
|
|
|
|
cmd-select-pane.c \
|
|
|
|
cmd-select-window.c \
|
|
|
|
cmd-send-keys.c \
|
|
|
|
cmd-set-buffer.c \
|
|
|
|
cmd-set-environment.c \
|
|
|
|
cmd-set-option.c \
|
|
|
|
cmd-show-environment.c \
|
|
|
|
cmd-show-messages.c \
|
|
|
|
cmd-show-options.c \
|
|
|
|
cmd-source-file.c \
|
|
|
|
cmd-split-window.c \
|
|
|
|
cmd-swap-pane.c \
|
|
|
|
cmd-swap-window.c \
|
|
|
|
cmd-switch-client.c \
|
|
|
|
cmd-unbind-key.c \
|
2013-03-25 10:09:05 +00:00
|
|
|
cmd-wait-for.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
cmd.c \
|
|
|
|
colour.c \
|
2012-09-03 09:32:38 +00:00
|
|
|
control-notify.c \
|
Rewrite of choose mode, both to simplify and tidy the code and to add
some modern features.
Now the common code is in mode-tree.c, which provides an API used by the
three modes now separated into window-{buffer,client,tree}.c. Buffer
mode shows buffers, client mode clients and tree mode a tree of
sessions, windows and panes.
Each mode has a common set of key bindings plus a few that are specific
to the mode. Other changes are:
- each mode has a preview pane: for buffers this is the buffer content
(very useful), for others it is a preview of the pane;
- items may be sorted in different ways ('O' key);
- multiple items may be tagged and an operation applied to all of them
(for example, to delete multiple buffers at once);
- in tree mode a command may be run on the selected item (session,
window, pane) or on tagged items (key ':');
- displayed items may be filtered in tree mode by using a format (this
is used to implement find-window) (key 'f');
- the custom format (-F) for the display is no longer available;
- shortcut keys change from 0-9, a-z, A-Z which was always a bit weird
with keys used for other uses to 0-9, M-a to M-z.
Now that the code is simpler, other improvements will come later.
Primary key bindings for each mode are documented under the commands in
the man page (choose-buffer, choose-client, choose-tree).
Parts written by Thomas Adam.
2017-05-30 21:44:59 +00:00
|
|
|
control.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
environ.c \
|
|
|
|
format.c \
|
2019-03-18 20:53:33 +00:00
|
|
|
format-draw.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
grid-view.c \
|
|
|
|
grid.c \
|
|
|
|
input-keys.c \
|
|
|
|
input.c \
|
|
|
|
job.c \
|
|
|
|
key-bindings.c \
|
|
|
|
key-string.c \
|
|
|
|
layout-custom.c \
|
|
|
|
layout-set.c \
|
|
|
|
layout.c \
|
|
|
|
log.c \
|
2019-05-10 18:04:06 +00:00
|
|
|
menu.c \
|
Rewrite of choose mode, both to simplify and tidy the code and to add
some modern features.
Now the common code is in mode-tree.c, which provides an API used by the
three modes now separated into window-{buffer,client,tree}.c. Buffer
mode shows buffers, client mode clients and tree mode a tree of
sessions, windows and panes.
Each mode has a common set of key bindings plus a few that are specific
to the mode. Other changes are:
- each mode has a preview pane: for buffers this is the buffer content
(very useful), for others it is a preview of the pane;
- items may be sorted in different ways ('O' key);
- multiple items may be tagged and an operation applied to all of them
(for example, to delete multiple buffers at once);
- in tree mode a command may be run on the selected item (session,
window, pane) or on tagged items (key ':');
- displayed items may be filtered in tree mode by using a format (this
is used to implement find-window) (key 'f');
- the custom format (-F) for the display is no longer available;
- shortcut keys change from 0-9, a-z, A-Z which was always a bit weird
with keys used for other uses to 0-9, M-a to M-z.
Now that the code is simpler, other improvements will come later.
Primary key bindings for each mode are documented under the commands in
the man page (choose-buffer, choose-client, choose-tree).
Parts written by Thomas Adam.
2017-05-30 21:44:59 +00:00
|
|
|
mode-tree.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
names.c \
|
|
|
|
notify.c \
|
|
|
|
options-table.c \
|
|
|
|
options.c \
|
|
|
|
paste.c \
|
2015-10-27 13:23:24 +00:00
|
|
|
proc.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
procname.c \
|
2019-06-13 19:46:00 +00:00
|
|
|
regsub.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
resize.c \
|
|
|
|
screen-redraw.c \
|
|
|
|
screen-write.c \
|
|
|
|
screen.c \
|
|
|
|
server-client.c \
|
|
|
|
server-fn.c \
|
|
|
|
server.c \
|
|
|
|
session.c \
|
2019-04-17 14:37:48 +00:00
|
|
|
spawn.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
status.c \
|
2014-01-28 23:07:09 +00:00
|
|
|
style.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
tmux.c \
|
|
|
|
tty-acs.c \
|
|
|
|
tty-keys.c \
|
|
|
|
tty-term.c \
|
|
|
|
tty.c \
|
|
|
|
utf8.c \
|
Rewrite of choose mode, both to simplify and tidy the code and to add
some modern features.
Now the common code is in mode-tree.c, which provides an API used by the
three modes now separated into window-{buffer,client,tree}.c. Buffer
mode shows buffers, client mode clients and tree mode a tree of
sessions, windows and panes.
Each mode has a common set of key bindings plus a few that are specific
to the mode. Other changes are:
- each mode has a preview pane: for buffers this is the buffer content
(very useful), for others it is a preview of the pane;
- items may be sorted in different ways ('O' key);
- multiple items may be tagged and an operation applied to all of them
(for example, to delete multiple buffers at once);
- in tree mode a command may be run on the selected item (session,
window, pane) or on tagged items (key ':');
- displayed items may be filtered in tree mode by using a format (this
is used to implement find-window) (key 'f');
- the custom format (-F) for the display is no longer available;
- shortcut keys change from 0-9, a-z, A-Z which was always a bit weird
with keys used for other uses to 0-9, M-a to M-z.
Now that the code is simpler, other improvements will come later.
Primary key bindings for each mode are documented under the commands in
the man page (choose-buffer, choose-client, choose-tree).
Parts written by Thomas Adam.
2017-05-30 21:44:59 +00:00
|
|
|
window-buffer.c \
|
|
|
|
window-client.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
window-clock.c \
|
|
|
|
window-copy.c \
|
Rewrite of choose mode, both to simplify and tidy the code and to add
some modern features.
Now the common code is in mode-tree.c, which provides an API used by the
three modes now separated into window-{buffer,client,tree}.c. Buffer
mode shows buffers, client mode clients and tree mode a tree of
sessions, windows and panes.
Each mode has a common set of key bindings plus a few that are specific
to the mode. Other changes are:
- each mode has a preview pane: for buffers this is the buffer content
(very useful), for others it is a preview of the pane;
- items may be sorted in different ways ('O' key);
- multiple items may be tagged and an operation applied to all of them
(for example, to delete multiple buffers at once);
- in tree mode a command may be run on the selected item (session,
window, pane) or on tagged items (key ':');
- displayed items may be filtered in tree mode by using a format (this
is used to implement find-window) (key 'f');
- the custom format (-F) for the display is no longer available;
- shortcut keys change from 0-9, a-z, A-Z which was always a bit weird
with keys used for other uses to 0-9, M-a to M-z.
Now that the code is simpler, other improvements will come later.
Primary key bindings for each mode are documented under the commands in
the man page (choose-buffer, choose-client, choose-tree).
Parts written by Thomas Adam.
2017-05-30 21:44:59 +00:00
|
|
|
window-tree.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
window.c \
|
|
|
|
xmalloc.c \
|
|
|
|
xterm-keys.c
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-06-25 07:42:41 +00:00
|
|
|
CDIAGFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2
|
|
|
|
CDIAGFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
|
|
|
|
CDIAGFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare
|
|
|
|
CDIAGFLAGS+= -Wundef -Wbad-function-cast -Winline -Wcast-align
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2019-05-23 21:36:42 +00:00
|
|
|
CFLAGS += -I${.CURDIR}
|
|
|
|
|
2011-08-25 10:52:23 +00:00
|
|
|
LDADD= -lutil -lcurses -levent
|
|
|
|
DPADD= ${LIBUTIL} ${LIBCURSES} ${LIBEVENT}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|