mirror of
https://github.com/tmux/tmux.git
synced 2024-11-18 02:18:53 +00:00
Update.
This commit is contained in:
parent
70c418c048
commit
b25ac6fd75
@ -1,4 +1,4 @@
|
|||||||
# $Id: GNUmakefile,v 1.13 2008-06-03 05:10:38 nicm Exp $
|
# $Id: GNUmakefile,v 1.14 2008-06-04 18:27:33 nicm Exp $
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
|
|
||||||
@ -24,8 +24,8 @@ SRCS= tmux.c server.c server-msg.c server-fn.c buffer.c buffer-poll.c status.c \
|
|||||||
cmd-swap-window.c cmd-rename-session.c cmd-kill-session.c \
|
cmd-swap-window.c cmd-rename-session.c cmd-kill-session.c \
|
||||||
cmd-switch-client.c cmd-has-session.c cmd-scroll-mode.c cmd-copy-mode.c \
|
cmd-switch-client.c cmd-has-session.c cmd-scroll-mode.c cmd-copy-mode.c \
|
||||||
cmd-paste-buffer.c cmd-new-session.c cmd-start-server.c \
|
cmd-paste-buffer.c cmd-new-session.c cmd-start-server.c \
|
||||||
cmd-kill-server.c \
|
cmd-kill-server.c cmd-set-window-option.c \
|
||||||
window-scroll.c window-more.c window-copy.c \
|
window-scroll.c window-more.c window-copy.c options.c \
|
||||||
tty.c tty-keys.c tty-write.c screen-write.c screen-redraw.c
|
tty.c tty-keys.c tty-write.c screen-write.c screen-redraw.c
|
||||||
|
|
||||||
CC?= gcc
|
CC?= gcc
|
||||||
|
13
TODO
13
TODO
@ -14,7 +14,6 @@
|
|||||||
- could use bsearch all over the place or get rid of smaller tables (clientmsg)
|
- could use bsearch all over the place or get rid of smaller tables (clientmsg)
|
||||||
- better errors when creating new windows/sessions (how?)
|
- better errors when creating new windows/sessions (how?)
|
||||||
- session with CMD_NOSESSION should be an error
|
- session with CMD_NOSESSION should be an error
|
||||||
- each command should have a print op as well for list keys
|
|
||||||
- Implicitly add exec to the commands for new windows (switch to disable it)
|
- Implicitly add exec to the commands for new windows (switch to disable it)
|
||||||
- nested sessions, ie session as window - moving to it moves into session
|
- nested sessions, ie session as window - moving to it moves into session
|
||||||
(remembering parent)
|
(remembering parent)
|
||||||
@ -64,12 +63,7 @@
|
|||||||
- poll(2) is broken on OS X/Darwin, a workaround for this would be nice
|
- poll(2) is broken on OS X/Darwin, a workaround for this would be nice
|
||||||
- different screen model? layers perhaps? hmm
|
- different screen model? layers perhaps? hmm
|
||||||
- cfg file improvements
|
- cfg file improvements
|
||||||
- select-window can become windowonly (what about default?)
|
- proper per-window options (per-session list of window ranges?)
|
||||||
- monitor for activity in windows as well as bell
|
|
||||||
- status bar customisation variables, date/time, show-activity, show-last-window
|
|
||||||
string-left, string-right - pass through strptime and print...
|
|
||||||
- per-window options (per-session list of window ranges?)
|
|
||||||
- show-options
|
|
||||||
|
|
||||||
---
|
---
|
||||||
[18:20] *priteau* i found something in tmux that could be tweaked to be better
|
[18:20] *priteau* i found something in tmux that could be tweaked to be better
|
||||||
@ -82,3 +76,8 @@
|
|||||||
- chmod +x socket when any client is attached (upd in lost/accept)
|
- chmod +x socket when any client is attached (upd in lost/accept)
|
||||||
- clear EOL etc CANNOT rely on term using the current colour/attr and probably
|
- clear EOL etc CANNOT rely on term using the current colour/attr and probably
|
||||||
should not emulate it doing so
|
should not emulate it doing so
|
||||||
|
- status bar customisation variables, date/time, show-activity, show-last-window
|
||||||
|
string-left, string-right - pass through strptime and print...
|
||||||
|
- show-options
|
||||||
|
- let server die when last session does
|
||||||
|
- each command should have a print op as well for list keys
|
||||||
|
Loading…
Reference in New Issue
Block a user