summaryrefslogtreecommitdiff
path: root/usr.bin/tmux
AgeCommit message (Collapse)Author
2010-05-05Identical behaviour to select-prompt can now be obtained withNicholas Marriott
command-prompt, so remove select-prompt and change ' to be bound to command-prompt -p index "select-window -t :%%".
2010-05-04Put this back in with the initialisation in the right order.Nicholas Marriott
2010-05-04Revert last change, it appears to be broken somehow.Nicholas Marriott
2010-05-03Make signal handler setup/teardown two common functions instead of six,Nicholas Marriott
and reset SIGCHLD after fork to fix problems with some shells. From Romain Francois.
2010-05-03Make C-] and other punctuation-based control key combinations work again.Ryan Thomas McBride
ok nicm
2010-05-02sort options.Igor Sobrado
2010-04-28Make the active pane border have a green foreground instead ofNicholas Marriott
background by default.
2010-04-28Fix crash when resizing in copy mode, when cursor can end up outside screen.Nicholas Marriott
Reported by Romain Francois, fixed by Micah Cowan.
2010-04-27imsg.h does not need sys/tree.h.Nicholas Marriott
ok eric
2010-04-25Add a tiled layout, originally from Liam Bedford a while ago, fixed upNicholas Marriott
by me.
2010-04-23When converting A-Z into a control character, want to subtract 64 notNicholas Marriott
65... whoops.
2010-04-21Mark zombie windows as dead in choose-window list, from Romain Francoise.Nicholas Marriott
2010-04-21Rewrite key string conversions to be readable and to work properly forNicholas Marriott
multiple modifiers.
2010-04-18Catch SIGCHLD to avoid a zombie, from patrick keshishian.Nicholas Marriott
2010-04-17Fix typo in escape state table leading to fatal() when \033} or \033~Nicholas Marriott
was entered, from Chris Johnsen.
2010-04-17If remain-on-exit is set, both the error callback and a SIGCHLD couldNicholas Marriott
destroy the same pane (because the first one doesn't remove it from the list of panes), causing the pane bufferevent to be freed twice. So don't free it if the fd has already been set to -1, from Romain Francoise.
2010-04-17Fix use-after-free of the window link when it is part of a groupedNicholas Marriott
session (and hence could have been recreated), from Micah Cowan.
2010-04-07Remove XXX comment and just close received fd if calloc() fails.Nicholas Marriott
If this happens the imsg may no longer be usable as there may be queued messages, but this is a) already the case with the code now, and b) would be the case if recvmsg() fails anyway, so we can document that -1 from imsg_read() invalidates the struct imsgbuf. discussed with and ok eric
2010-04-06Merge copy mode and output mode, dropping the latter. Idea and code fromNicholas Marriott
Micah Cowan.
2010-04-05Mention title setting, and the new default.Nicholas Marriott
2010-04-04rather than using an empty "" as the default window title, put the hostnameBob Beck
of the machine we are running on in there. makes my many green lines easier to deal with without using fiddly options to set it. ok nicm@
2010-04-04tweak;Jason McIntyre
2010-04-04Should be -s for src pane.Nicholas Marriott
2010-04-04Dead assignment, found with clang.Nicholas Marriott
2010-04-04Run job commands explicitly in the global enviroment (which can beNicholas Marriott
modified with setenv -g) rather than with the environment tmux started with.
2010-04-04Squash a function that is only called in a callback into the callbackNicholas Marriott
function.
2010-03-31Don't accept keys with modifiers as input. Fixes crash reported by BrianNicholas Marriott
R Landy.
2010-03-27Don't leak job command in #().Nicholas Marriott
2010-03-27-a flag to insert a window after an existing one, moving other windowsNicholas Marriott
up necessary.
2010-03-26dispense with some wacky escape sequences;Jason McIntyre
2010-03-22Dead functions, lint.Nicholas Marriott
2010-03-22Reset output functions too when changing client after attaching, toNicholas Marriott
avoid crash if a command in a sequence after new/attach causes output.
2010-03-22paste-buffer should be per pane, from C. Coutinho.Nicholas Marriott
2010-03-22Nuke unused variable.Nicholas Marriott
2010-03-22Add vi-style "jump" commands for copy mode, from Micah Cowan.Nicholas Marriott
2010-03-22Support up, down, left, right movement through panes with -UDLR flags toNicholas Marriott
select-pane. Also REMOVE the up- and down-pane commands: equivalent behaviour is now available using -t :.+ and -t :.-.
2010-03-22Accept a full key match (not a partial) even if there is data left inNicholas Marriott
the buffer.
2010-03-22New input parser based on http://vt100.net/emu/dec_ansi_parser.Nicholas Marriott
2010-03-14Fix a use-after-free when cancelling copy mode, or trying to repeat cancel.Nicholas Marriott
ok kettenis
2010-03-02Permit keys in copy mode to be prefixed by a repeat count, entered withNicholas Marriott
[1-9] in vi mode, or M-[1-9] in emacs mode. From Micah Cowan, tweaked a little by me.
2010-03-01Extend the end-of-line key so that in normal mode a second press movesNicholas Marriott
the cursor to the end of a wrapped line (if present) and in rectangle mode it toggles between the end of the text and the last cell on the line. From Micah Cowan.
2010-03-01Check for colour and attribute modifications early so the translatedNicholas Marriott
values can be stored in the cached terminal attributes rather than the requested (untranslated) values. Prevents tmux clearing and setting the attributes for every character when using aixterm colours.
2010-02-24Typo fix from Tim van der Molen.Nicholas Marriott
2010-02-24Don't set the terminal to nonblocking on detach until we have finished with itNicholas Marriott
entirely.
2010-02-22Option to set the characters considered word separators in copy mode, fromNicholas Marriott
Micah Cowan.
2010-02-22In load-buffer, read until EOF rather than using stat() and reading a fixedNicholas Marriott
size. Allows use of FIFOs and whatnot. From Tiago Cunha, idea from Fulvio Ciriaco.
2010-02-22Another copy mode fix from Micah Cowan: in rectangle copy mode, the cursorNicholas Marriott
should not wrap at the end of the text on the line but should be allowed to move freely.
2010-02-22Display -t argument to new-session, from Tiago Cunha.Nicholas Marriott
2010-02-19have_arg matches buf so it is no longer necessary, spotted by Tim van derNicholas Marriott
Molen.
2010-02-19copy mode uses the real screen as backing and if it is updated while copying,Nicholas Marriott
strange things can happen. So, freeze reading from the pty while in copy mode.