Age | Commit message (Expand) | Author |
2009-08-11 | Switch tmux to use imsg. This is the last major change to make the | Nicholas Marriott |
2009-08-11 | Add flags for 1+2 and 2 arguments to the generic target code, use it for | Nicholas Marriott |
2009-08-08 | Infrastructure and commands to manage the environment for processes started | Nicholas Marriott |
2009-08-08 | Add a flags member to the grid_line struct and use it to differentiate lines | Nicholas Marriott |
2009-08-08 | Change the way the grid is stored, previously it was: | Nicholas Marriott |
2009-08-07 | If there is an error in the configuration file, don't just exit(1) as this can | Nicholas Marriott |
2009-08-07 | Using the alternative screen (smcup/rmcup) should also preserve the current | Nicholas Marriott |
2009-08-04 | Add a -a flag to set-option and set-window-option to append to an existing | Nicholas Marriott |
2009-08-03 | Add a terminal-overrides session option allowing individual terminfo(5) entries | Nicholas Marriott |
2009-07-30 | There aren't many client message types or code to handle them so get rid of the | Nicholas Marriott |
2009-07-30 | Merge pane number into the target specification for pane commands. Instead of | Nicholas Marriott |
2009-07-29 | Rename struct hdrtype to msgtype which is a better name and can be used even | Nicholas Marriott |
2009-07-28 | Final pieces of mode key rebinding: bind-key and unbind-key now accept a -t | Nicholas Marriott |
2009-07-28 | Next step towards customisable mode keys: build each default table of keys into | Nicholas Marriott |
2009-07-28 | If select-layout is not given an argument, repply the last layout used in the | Nicholas Marriott |
2009-07-27 | Remove an unused entry in the mode keys command enum and rename | Nicholas Marriott |
2009-07-27 | Change mode key bindings from big switches into a set of tables. Rather than | Nicholas Marriott |
2009-07-27 | Get rid of empty mode_key_free function. | Nicholas Marriott |
2009-07-27 | Add a key to delete to end of line at the prompt (^K in emacs mode, C/D in vi). | Nicholas Marriott |
2009-07-26 | Detect backspace by looking at termios VERASE and translate it into \177 (which | Nicholas Marriott |
2009-07-26 | Make all messages sent between the client and server fixed size. | Nicholas Marriott |
2009-07-24 | Permit commands to be bound to key presses without the prefix key first. The | Nicholas Marriott |
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 |