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