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 \
|
|
|
|
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-list.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 \
|
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 \
|
|
|
|
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 \
|
2015-12-08 01:10:31 +00:00
|
|
|
cmd-set-hook.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
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-string.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 \
|
|
|
|
grid-view.c \
|
|
|
|
grid.c \
|
2015-12-08 01:10:31 +00:00
|
|
|
hooks.c \
|
2012-07-08 15:24:08 +00:00
|
|
|
input-keys.c \
|
|
|
|
input.c \
|
|
|
|
job.c \
|
|
|
|
key-bindings.c \
|
|
|
|
key-string.c \
|
|
|
|
layout-custom.c \
|
|
|
|
layout-set.c \
|
|
|
|
layout.c \
|
|
|
|
log.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 \
|
|
|
|
resize.c \
|
|
|
|
screen-redraw.c \
|
|
|
|
screen-write.c \
|
|
|
|
screen.c \
|
|
|
|
server-client.c \
|
|
|
|
server-fn.c \
|
|
|
|
server.c \
|
|
|
|
session.c \
|
|
|
|
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
|
|
|
|
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>
|