Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-07 | Remove 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-06 | Merge copy mode and output mode, dropping the latter. Idea and code from | Nicholas Marriott | |
Micah Cowan. | |||
2010-04-05 | Mention title setting, and the new default. | Nicholas Marriott | |
2010-04-04 | rather than using an empty "" as the default window title, put the hostname | Bob 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-04 | tweak; | Jason McIntyre | |
2010-04-04 | Should be -s for src pane. | Nicholas Marriott | |
2010-04-04 | Dead assignment, found with clang. | Nicholas Marriott | |
2010-04-04 | Run job commands explicitly in the global enviroment (which can be | Nicholas Marriott | |
modified with setenv -g) rather than with the environment tmux started with. | |||
2010-04-04 | Squash a function that is only called in a callback into the callback | Nicholas Marriott | |
function. | |||
2010-03-31 | Don't accept keys with modifiers as input. Fixes crash reported by Brian | Nicholas Marriott | |
R Landy. | |||
2010-03-27 | Don't leak job command in #(). | Nicholas Marriott | |
2010-03-27 | -a flag to insert a window after an existing one, moving other windows | Nicholas Marriott | |
up necessary. | |||
2010-03-26 | dispense with some wacky escape sequences; | Jason McIntyre | |
2010-03-22 | Dead functions, lint. | Nicholas Marriott | |
2010-03-22 | Reset output functions too when changing client after attaching, to | Nicholas Marriott | |
avoid crash if a command in a sequence after new/attach causes output. | |||
2010-03-22 | paste-buffer should be per pane, from C. Coutinho. | Nicholas Marriott | |
2010-03-22 | Nuke unused variable. | Nicholas Marriott | |
2010-03-22 | Add vi-style "jump" commands for copy mode, from Micah Cowan. | Nicholas Marriott | |
2010-03-22 | Support up, down, left, right movement through panes with -UDLR flags to | Nicholas Marriott | |
select-pane. Also REMOVE the up- and down-pane commands: equivalent behaviour is now available using -t :.+ and -t :.-. | |||
2010-03-22 | Accept a full key match (not a partial) even if there is data left in | Nicholas Marriott | |
the buffer. | |||
2010-03-22 | New input parser based on http://vt100.net/emu/dec_ansi_parser. | Nicholas Marriott | |
2010-03-14 | Fix a use-after-free when cancelling copy mode, or trying to repeat cancel. | Nicholas Marriott | |
ok kettenis | |||
2010-03-02 | Permit keys in copy mode to be prefixed by a repeat count, entered with | Nicholas Marriott | |
[1-9] in vi mode, or M-[1-9] in emacs mode. From Micah Cowan, tweaked a little by me. | |||
2010-03-01 | Extend the end-of-line key so that in normal mode a second press moves | Nicholas 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-01 | Check for colour and attribute modifications early so the translated | Nicholas 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-24 | Typo fix from Tim van der Molen. | Nicholas Marriott | |
2010-02-24 | Don't set the terminal to nonblocking on detach until we have finished with it | Nicholas Marriott | |
entirely. | |||
2010-02-22 | Option to set the characters considered word separators in copy mode, from | Nicholas Marriott | |
Micah Cowan. | |||
2010-02-22 | In load-buffer, read until EOF rather than using stat() and reading a fixed | Nicholas Marriott | |
size. Allows use of FIFOs and whatnot. From Tiago Cunha, idea from Fulvio Ciriaco. | |||
2010-02-22 | Another copy mode fix from Micah Cowan: in rectangle copy mode, the cursor | Nicholas Marriott | |
should not wrap at the end of the text on the line but should be allowed to move freely. | |||
2010-02-22 | Display -t argument to new-session, from Tiago Cunha. | Nicholas Marriott | |
2010-02-19 | have_arg matches buf so it is no longer necessary, spotted by Tim van der | Nicholas Marriott | |
Molen. | |||
2010-02-19 | copy 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. | |||
2010-02-17 | Make next-word stop at beginning of word even if it is at the start of the | Nicholas Marriott | |
line, from Micah Cowan. | |||
2010-02-17 | Man page additions/improvements, thanks to Robin Lee Powell. | Nicholas Marriott | |
2010-02-17 | Don't strip add newline if only copying part of wrapped line. Problem spotted | Nicholas Marriott | |
by and fix from Micah Cowan. | |||
2010-02-11 | Add "N" key to search the opposite way from the last search (reverse of "n"), | Nicholas Marriott | |
from Micah Cowan. | |||
2010-02-10 | Clarify default status-right, from Seth Wright. | Nicholas Marriott | |
2010-02-08 | Add an option to disable the smcup/rmcup alternate screen behaviour inside | Nicholas Marriott | |
tmux. From clemens fischer. | |||
2010-02-07 | next-layout is bound to Space not C-Space. | Nicholas Marriott | |
2010-02-06 | Use the array.h code for the causes list. | Nicholas Marriott | |
2010-02-06 | Support attaching a client read-only with a new -r flag to the attach-session | Nicholas Marriott | |
command. | |||
2010-02-06 | Change nested check to compare server socket path rather than just assuming | Nicholas Marriott | |
that if $TMUX is set it is nested. From Micah Cowan. | |||
2010-02-06 | Clean up $TMUX parsing, from Micah Cowan, tweaked by me. | Nicholas Marriott | |
2010-02-06 | Rectangle copy support, from Robin Lee Powell. | Nicholas Marriott | |
2010-02-06 | Instead of bailing out on the first configuration file error, carry on, | Nicholas Marriott | |
collecting all the errors, then start with the active window in more mode displaying them. | |||
2010-02-04 | vi-style B, W and E keys in copy mode to navigate between words treating only | Nicholas Marriott | |
spaces as word separators. Also add . to the list of word separators for standard word navigation. From Micah Cowan, tweaked slightly by me. | |||
2010-02-04 | Read the path from $TMUX if it is present and -L and -S are not given. Based on | Nicholas Marriott | |
a diff from Micah Cowan. | |||
2010-02-04 | Option to display the active pane in a different colour with the display-panes | Nicholas Marriott | |
command. From Paul Hoffman, thanks. | |||
2010-02-03 | Fix divide by zero on small windows with main-* layouts. | Nicholas Marriott | |