summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tmux.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* A couple of minor cosmetic changes.nicm2009-11-041-2/+1
* Initial changes to move tmux to libevent.nicm2009-11-041-167/+136
* Change declaration and use of malloc_options to be more standard, from Tim vannicm2009-11-041-2/+6
* tabs are better; ok nicmderaadt2009-10-261-6/+6
* Remove the -d flag to tmux and just use op/AX to detect default colours.nicm2009-10-251-5/+2
* Merge prepare_cmd into main as it is short and only called once.nicm2009-10-221-37/+29
* Client tidying: get rid of client_ctx struct in favour of two variables innicm2009-10-211-30/+65
* New option, mouse-select-pane. If on, the mouse may be used to select thenicm2009-10-101-1/+2
* Support for individual session idle time locking. May be enabled by turning offnicm2009-10-101-3/+2
* Add a simple synchronize-panes window option: when set, all input to any panenicm2009-10-091-1/+2
* Support -c like sh(1) to execute a command, useful when tmux is a loginnicm2009-09-231-11/+57
* Remove the internal tmux locking and instead detach each client and run thenicm2009-09-231-52/+8
* Permit multiple prefix keys to be defined, separated by commas, for example:nicm2009-09-221-2/+7
* New option, set-titles-string, to allow the window title to be specified (asnicm2009-09-181-1/+2
* Tidy main and make it a bit easier to read.nicm2009-09-041-90/+91
* Accept -l to make it easier for people who use tmux as a login shell to usenicm2009-09-021-5/+10
* When incorrect passwords are entered, behave similarly to login(1) and backoffnicm2009-09-021-1/+3
* When using tmux as a login shell, there is currently no way to specify a shellnicm2009-09-011-1/+47
* Use "Password:" with no space for password prompts and don't display a *s fornicm2009-09-011-2/+2
* Sort cases same as getopt argument, from martynas.nicm2009-09-011-7/+7
* Add a new display-panes command, with two options (display-panes-colour andnicm2009-08-311-1/+3
* Add some other obvious variables to update-environment (WINDOWID SSH_ASKPASSnicm2009-08-231-2/+3
* Disable mode-mouse (mouse in copy/choice mode) by default as it isn't verynicm2009-08-131-2/+2
* Add a base-index session option to specify the first index checked when lookingnicm2009-08-131-1/+2
* When started as the shell, __progname contains a leading -, so hardcode "tmux"nicm2009-08-121-4/+3
* Switch tmux to use imsg. This is the last major change to make thenicm2009-08-111-35/+69
* No arguments are the same as new-session and this requires the environment tonicm2009-08-101-2/+2
* Infrastructure and commands to manage the environment for processes startednicm2009-08-081-5/+11
* Options to set the colours and attributes for status-left/-right. From Thomasnicm2009-08-081-3/+9
* If colours are not supported by the terminal, try to emulate a colourednicm2009-08-051-4/+4
* Check for "UTF8" as well as "UTF-8" in LANG etc as it seems this may alsonicm2009-08-041-2/+3
* Add a terminal-overrides session option allowing individual terminfo(5) entriesnicm2009-08-031-1/+3
* Add a mode-mouse option to prevent tmux taking over the mouse in choice or copynicm2009-07-301-2/+3
* Rename struct hdrtype to msgtype which is a better name and can be used evennicm2009-07-291-6/+6
* Taking account of the "s, 22 not 24 is the maximum length of #T in status-rightnicm2009-07-291-2/+2
* Make all messages sent between the client and server fixed size.nicm2009-07-261-44/+84
* Pass a set of flags into client_init rather than just a start_servernicm2009-07-221-6/+5
* Display the number of failed password attempts (if any) when the server isnicm2009-07-201-1/+2
* Add a status-justify option to allow the window list in the status line to benicm2009-07-201-1/+2
* New options, window-status-current-{fg,bg,attr}, to set the fg, bg andnicm2009-07-201-1/+4
* Add three new session options: visual-activity, visual-bell, visual-content. Ifnicm2009-07-181-1/+4
* If -u is specified or UTF-8 is otherwise detected when the server is started,nicm2009-07-171-19/+25
* Add a default-terminal option to set the starting value of $TERM in newnicm2009-07-101-1/+2
* Just appending -l to $SHELL to create a login shell is wrong: -l is not POSIX,nicm2009-07-081-13/+2
* Rename the global options variables to be shorter and to make session optionsnicm2009-07-071-54/+53
* If getcwd() fails, use the user's home directory, or /, instead of failing withnicm2009-06-251-3/+6
* Remove error about using -L and -S together which was never displayed asnicm2009-06-251-9/+1
* LC_ALL overrides LC_CTYPE and LANG. Comment was correct but the codenicm2009-06-231-3/+3
* Check the first of LC_CTYPE, LC_ALL and LANG, rather than just the last, whennicm2009-06-051-3/+8
* Zero the password given to -U in the client as well.nicm2009-06-041-1/+2