| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | A couple of minor cosmetic changes. |  nicm | 2009-11-04 | 1 | -2/+1 |
* | Initial changes to move tmux to libevent. |  nicm | 2009-11-04 | 1 | -167/+136 |
* | Change declaration and use of malloc_options to be more standard, from Tim van |  nicm | 2009-11-04 | 1 | -2/+6 |
* | tabs are better; ok nicm |  deraadt | 2009-10-26 | 1 | -6/+6 |
* | Remove the -d flag to tmux and just use op/AX to detect default colours. |  nicm | 2009-10-25 | 1 | -5/+2 |
* | Merge prepare_cmd into main as it is short and only called once. |  nicm | 2009-10-22 | 1 | -37/+29 |
* | Client tidying: get rid of client_ctx struct in favour of two variables in |  nicm | 2009-10-21 | 1 | -30/+65 |
* | New option, mouse-select-pane. If on, the mouse may be used to select the |  nicm | 2009-10-10 | 1 | -1/+2 |
* | Support for individual session idle time locking. May be enabled by turning off |  nicm | 2009-10-10 | 1 | -3/+2 |
* | Add a simple synchronize-panes window option: when set, all input to any pane |  nicm | 2009-10-09 | 1 | -1/+2 |
* | Support -c like sh(1) to execute a command, useful when tmux is a login |  nicm | 2009-09-23 | 1 | -11/+57 |
* | Remove the internal tmux locking and instead detach each client and run the |  nicm | 2009-09-23 | 1 | -52/+8 |
* | Permit multiple prefix keys to be defined, separated by commas, for example: |  nicm | 2009-09-22 | 1 | -2/+7 |
* | New option, set-titles-string, to allow the window title to be specified (as |  nicm | 2009-09-18 | 1 | -1/+2 |
* | Tidy main and make it a bit easier to read. |  nicm | 2009-09-04 | 1 | -90/+91 |
* | Accept -l to make it easier for people who use tmux as a login shell to use |  nicm | 2009-09-02 | 1 | -5/+10 |
* | When incorrect passwords are entered, behave similarly to login(1) and backoff |  nicm | 2009-09-02 | 1 | -1/+3 |
* | When using tmux as a login shell, there is currently no way to specify a shell |  nicm | 2009-09-01 | 1 | -1/+47 |
* | Use "Password:" with no space for password prompts and don't display a *s for |  nicm | 2009-09-01 | 1 | -2/+2 |
* | Sort cases same as getopt argument, from martynas. |  nicm | 2009-09-01 | 1 | -7/+7 |
* | Add a new display-panes command, with two options (display-panes-colour and |  nicm | 2009-08-31 | 1 | -1/+3 |
* | Add some other obvious variables to update-environment (WINDOWID SSH_ASKPASS |  nicm | 2009-08-23 | 1 | -2/+3 |
* | Disable mode-mouse (mouse in copy/choice mode) by default as it isn't very |  nicm | 2009-08-13 | 1 | -2/+2 |
* | Add a base-index session option to specify the first index checked when looking |  nicm | 2009-08-13 | 1 | -1/+2 |
* | When started as the shell, __progname contains a leading -, so hardcode "tmux" |  nicm | 2009-08-12 | 1 | -4/+3 |
* | Switch tmux to use imsg. This is the last major change to make the |  nicm | 2009-08-11 | 1 | -35/+69 |
* | No arguments are the same as new-session and this requires the environment to |  nicm | 2009-08-10 | 1 | -2/+2 |
* | Infrastructure and commands to manage the environment for processes started |  nicm | 2009-08-08 | 1 | -5/+11 |
* | Options to set the colours and attributes for status-left/-right. From Thomas |  nicm | 2009-08-08 | 1 | -3/+9 |
* | If colours are not supported by the terminal, try to emulate a coloured |  nicm | 2009-08-05 | 1 | -4/+4 |
* | Check for "UTF8" as well as "UTF-8" in LANG etc as it seems this may also |  nicm | 2009-08-04 | 1 | -2/+3 |
* | Add a terminal-overrides session option allowing individual terminfo(5) entries |  nicm | 2009-08-03 | 1 | -1/+3 |
* | Add a mode-mouse option to prevent tmux taking over the mouse in choice or copy |  nicm | 2009-07-30 | 1 | -2/+3 |
* | Rename struct hdrtype to msgtype which is a better name and can be used even |  nicm | 2009-07-29 | 1 | -6/+6 |
* | Taking account of the "s, 22 not 24 is the maximum length of #T in status-right |  nicm | 2009-07-29 | 1 | -2/+2 |
* | Make all messages sent between the client and server fixed size. |  nicm | 2009-07-26 | 1 | -44/+84 |
* | Pass a set of flags into client_init rather than just a start_server |  nicm | 2009-07-22 | 1 | -6/+5 |
* | Display the number of failed password attempts (if any) when the server is |  nicm | 2009-07-20 | 1 | -1/+2 |
* | Add a status-justify option to allow the window list in the status line to be |  nicm | 2009-07-20 | 1 | -1/+2 |
* | New options, window-status-current-{fg,bg,attr}, to set the fg, bg and |  nicm | 2009-07-20 | 1 | -1/+4 |
* | Add three new session options: visual-activity, visual-bell, visual-content. If |  nicm | 2009-07-18 | 1 | -1/+4 |
* | If -u is specified or UTF-8 is otherwise detected when the server is started, |  nicm | 2009-07-17 | 1 | -19/+25 |
* | Add a default-terminal option to set the starting value of $TERM in new |  nicm | 2009-07-10 | 1 | -1/+2 |
* | Just appending -l to $SHELL to create a login shell is wrong: -l is not POSIX, |  nicm | 2009-07-08 | 1 | -13/+2 |
* | Rename the global options variables to be shorter and to make session options |  nicm | 2009-07-07 | 1 | -54/+53 |
* | If getcwd() fails, use the user's home directory, or /, instead of failing with |  nicm | 2009-06-25 | 1 | -3/+6 |
* | Remove error about using -L and -S together which was never displayed as |  nicm | 2009-06-25 | 1 | -9/+1 |
* | LC_ALL overrides LC_CTYPE and LANG. Comment was correct but the code |  nicm | 2009-06-23 | 1 | -3/+3 |
* | Check the first of LC_CTYPE, LC_ALL and LANG, rather than just the last, when |  nicm | 2009-06-05 | 1 | -3/+8 |
* | Zero the password given to -U in the client as well. |  nicm | 2009-06-04 | 1 | -1/+2 |