Age | Commit message (Expand) | Author |
2009-07-23 | Tidy client message return slightly: convert flags into an enum, and merge | Nicholas Marriott |
2009-07-23 | Both of cmdclient and curclient CAN be NULL - if the command is executed from | Nicholas Marriott |
2009-07-22 | window_add_pane cannot fail, so remove the unused cause argument and don't | Nicholas Marriott |
2009-07-22 | tty_write is relatively short and the only function left in tty-write.c so move | Nicholas Marriott |
2009-07-22 | More tty code tidying: move the saved cursor/region position (from before the | Nicholas Marriott |
2009-07-22 | log_debug3 no longer exists, change the sole use in GRID_DEBUG to log_debug2. | Nicholas Marriott |
2009-07-22 | enum tty_cmd is only used as an index into the array of command function | Nicholas Marriott |
2009-07-22 | There are relatively few arguments to tty_cmd_* functions now, so tidy them up | Nicholas Marriott |
2009-07-22 | tty_cmd_raw is only used once, for raw UTF-8 output, so rename it to | Nicholas Marriott |
2009-07-21 | Make some functions which return unused values void (mostly found by lint) and | Nicholas Marriott |
2009-07-21 | Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found by | Nicholas Marriott |
2009-07-21 | __progname is not const, pointed out by deraadt. | Nicholas Marriott |
2009-07-21 | Tidy up keys: use an enum for the key codes, and remove the macros which just | Nicholas Marriott |
2009-07-20 | Display the number of failed password attempts (if any) when the server is | Nicholas Marriott |
2009-07-19 | Improved layout code. | Nicholas Marriott |
2009-07-18 | Add three new session options: visual-activity, visual-bell, visual-content. If | Nicholas Marriott |
2009-07-17 | Make it so using kill-pane to destroy the last pane in a window destroys the | Nicholas Marriott |
2009-07-17 | - New command display-message (alias display) to display a message in the | Nicholas Marriott |
2009-07-17 | Tidy up new-session and attach-session and change them to work from inside | Nicholas Marriott |
2009-07-17 | A similar for fix for window_choose: don't rely on the callback always being | Nicholas Marriott |
2009-07-17 | Memory could be leaked if a second prompt or message appeared while another was | Nicholas Marriott |
2009-07-15 | Make status_message_set a variadic printf-like function. No functional change - | Nicholas Marriott |
2009-07-15 | Having to update NSETOPTION/NSETWINDOWOPTION when adding new options is a bit | Nicholas Marriott |
2009-07-14 | Add main-pane-height to the options list (was missed before). | Nicholas Marriott |
2009-07-14 | Instead of faking up a status line in status_redraw, use the same code to | Nicholas Marriott |
2009-07-14 | Get rid of the PANE_HIDDEN flag in favour of a function, and moving the | Nicholas Marriott |
2009-07-13 | Having fixed flags for single-character getopt options is a bit hard to | Nicholas Marriott |
2009-07-13 | Tidy up and improve target (-t) argument parsing: | Nicholas Marriott |
2009-07-13 | Support "alternate screen" mode (terminfo smcup/rmcup) typically used by full | Nicholas Marriott |
2009-07-12 | Missed this declaration in key bindings change. Whoops. | Nicholas Marriott |
2009-07-12 | Add a "back to indentation" key in copy mode to move the cursor to the first | Nicholas Marriott |
2009-07-12 | If it exist, load a system-wide configuration file /etc/tmux.conf before any | Nicholas Marriott |
2009-07-11 | When pasting, translate \n into \r. This matches xterm and putty's behaviour, | Nicholas Marriott |
2009-07-10 | Add a default-terminal option to set the starting value of $TERM in new | Nicholas Marriott |
2009-07-09 | New command, if-shell (alias if). Executes the tmux command in the second | Nicholas Marriott |
2009-07-09 | Tidy by removing unused argument from grid_view_{insert,delete}_line_region | Nicholas Marriott |
2009-07-08 | Just appending -l to $SHELL to create a login shell is wrong: -l is not POSIX, | Nicholas Marriott |
2009-07-07 | Rename the global options variables to be shorter and to make session options | Nicholas Marriott |
2009-06-26 | Remove some unused function declarations; no binary change. | Nicholas Marriott |
2009-06-25 | #ifndef nitems to avoid redefining it if it is already in a header. | Nicholas Marriott |
2009-06-25 | tmux doesn't and won't need syslog logging, so remove it and some other unused | Nicholas Marriott |
2009-06-25 | Miscellaneous unused functions, including one which was basically a | Nicholas Marriott |
2009-06-25 | Nuke unused buffer functions. Found by lint. | Nicholas Marriott |
2009-06-24 | Change find-window and monitor-content to use fnmatch(3). For convenience and | Nicholas Marriott |
2009-06-24 | Add a dedicated function to convert a line into a string and use it to simpli... | Nicholas Marriott |
2009-06-24 | Trying to predict the cursor position for UTF-8 output in the same way as for | Nicholas Marriott |
2009-06-24 | Constify utf8_width() function argument. | Nicholas Marriott |
2009-06-04 | Proper support for tab stops (\033H etc), using a bitstring(3). Makes another | Nicholas Marriott |
2009-06-03 | Implement the DEC alignment test. With the last change this is enough for the | Nicholas Marriott |
2009-06-03 | New session option, status-utf8, to control the interpretation of top-bit-set | Nicholas Marriott |