1. 1eaefbf Add a minor optimisatin: if the character being printed is space, don't worry by Nicholas Marriott · 15 years ago
  2. 5730cbf Twaek this slightly to avoid confusing use of flags variable. by Nicholas Marriott · 15 years ago
  3. eb5f446 Setting SGR0 when setting the fg and bg has problems if only one of the two is by Nicholas Marriott · 15 years ago
  4. ed62d12 tabs are better; ok nicm by Theo Deraadt · 15 years ago
  5. 3a7636f Remove the -d flag to tmux and just use op/AX to detect default colours. by Nicholas Marriott · 15 years ago
  6. 59e6679 Unused variable. by Nicholas Marriott · 15 years ago
  7. dd46f63 Now we are correctly not redrawing the whole pane on linefeed, redo the by Nicholas Marriott · 15 years ago
  8. 9b5da97 Don't redraw the scroll region on linefeed/reverse index unless it is necessary by Nicholas Marriott · 15 years ago
  9. 683ddbc Some terminals don't correctly clear their let's-wrap flag after changing the by Nicholas Marriott · 15 years ago
  10. 1af09d6 Try to reduce the UTF-8 mess. by Nicholas Marriott · 15 years ago
  11. 62f234c UTF-8 combined character fixes. by Nicholas Marriott · 15 years ago
  12. 387f4d4 Move the check for whether to force a line wrapper lower down into the tty code by Nicholas Marriott · 15 years ago
  13. daa2607 Always move the cursor position on !xenl terminals, since there is no invisible by Nicholas Marriott · 15 years ago
  14. 43d62c1 Instead of having a complicated check to see if the cursor is in the last by Nicholas Marriott · 15 years ago
  15. 7035502 When checking whether the region will scroll and the cursor position is thus by Nicholas Marriott · 15 years ago
  16. 5d78371 Don't try to use \n across scroll region when doing \r\n either. by Nicholas Marriott · 15 years ago
  17. 4dcb504 Instead of using something sort of similar for both newline checks, use by Nicholas Marriott · 15 years ago
  18. d7626cd When drawing lines that have wrapped naturally, don't force a newline but by Nicholas Marriott · 15 years ago
  19. 693b3d0 Don't run through the column unchanged case if the row was unchanged but there by Nicholas Marriott · 15 years ago
  20. eb9826f If the vertical cursor movement crosses the scroll region, CUU and CUD by Nicholas Marriott · 15 years ago
  21. 0aab581 Use absolute movement if right at the end of the line as it isn't a reliable by Nicholas Marriott · 15 years ago
  22. 687c4a9 Use relative cursor movement instead of absolute when possible and when by Nicholas Marriott · 15 years ago
  23. 7624599 Similarly add a tty_cursor_pane function to tidy up most of the calls. by Nicholas Marriott · 15 years ago
  24. 972a6f5 _absolute is redundant, just use tty_region. by Nicholas Marriott · 15 years ago
  25. f05b32f Cleanup: use two functions for region setting, one for absolute and one inside by Nicholas Marriott · 15 years ago
  26. 0a2a354 Like linefeed, don't set the scroll region for reverse index unless it will be by Nicholas Marriott · 15 years ago
  27. 3a20a05 There is no point setting the scroll region up for line feeds unless scrolling by Nicholas Marriott · 15 years ago
  28. bf38a31 The UTF-8 detection idea doesn't work and I am reasonably happy with the by Nicholas Marriott · 15 years ago
  29. d528184 Be less aggressive about turning the cursor off, only explicitly turn it off by Nicholas Marriott · 15 years ago
  30. 9200a0b Support -c like sh(1) to execute a command, useful when tmux is a login by Nicholas Marriott · 15 years ago
  31. 631a618 Don't die if the client is detaching (the tty has been closed) after waking up by Nicholas Marriott · 15 years ago
  32. b01dcd7 Remove the internal tmux locking and instead detach each client and run the by Nicholas Marriott · 15 years ago
  33. 962fa20 Trim some code by moving the ioctl(TIOCGWINSZ) after SIGWINCH from the client by Nicholas Marriott · 15 years ago
  34. 64caf59 Don't attempt to open() the tty path, rely on the client sending its stdin fd by Nicholas Marriott · 15 years ago
  35. 0a90056 Be more careful about what flags are cleared when opening the terminal, by Nicholas Marriott · 15 years ago
  36. 372a8cb Permit options such as status-bg to be configured using the entire 256 colour by Nicholas Marriott · 15 years ago
  37. 0431996 Add a new display-panes command, with two options (display-panes-colour and by Nicholas Marriott · 15 years ago
  38. 926b52b Emulate dch/dch1 if missing by redrawing the entire line. by Nicholas Marriott · 15 years ago
  39. 5cf9948 Send SGR0 when initialising the screen. Fixes problems on terminals with BCE by Nicholas Marriott · 15 years ago
  40. bc497db A tty context must not be modified as it may be reused to update multiple by Nicholas Marriott · 15 years ago
  41. e0a19ab Initialise log_fd to -1, prevents spurious disconnection of the client when it by Nicholas Marriott · 15 years ago
  42. 4310282 Have the client pass its stdin fd to the server when identifying itself and by Nicholas Marriott · 15 years ago
  43. 4ec8ade Add a TTY_OPENED flag and tidy a little. by Nicholas Marriott · 15 years ago
  44. ff65e37 Drop the no_stop argument to tty_close and tty_free in favour of a flag in the by Nicholas Marriott · 15 years ago
  45. 5e01b6d Change the way the grid is stored, previously it was: by Nicholas Marriott · 15 years ago
  46. bcddddf If colours are not supported by the terminal, try to emulate a coloured by Nicholas Marriott · 15 years ago
  47. 1673735 Add a terminal-overrides session option allowing individual terminfo(5) entries by Nicholas Marriott · 15 years ago
  48. fc65da1 Draw UTF-8 characters under the selection correctly. by Nicholas Marriott · 15 years ago
  49. dd4a3b2 tty_write is relatively short and the only function left in tty-write.c so move by Nicholas Marriott · 15 years ago
  50. ddad0be More tty code tidying: move the saved cursor/region position (from before the by Nicholas Marriott · 15 years ago
  51. 2ec2837 enum tty_cmd is only used as an index into the array of command function by Nicholas Marriott · 15 years ago
  52. 6a309c5 There are relatively few arguments to tty_cmd_* functions now, so tidy them up by Nicholas Marriott · 15 years ago
  53. 5bd72ec tty_cmd_raw is only used once, for raw UTF-8 output, so rename it to by Nicholas Marriott · 15 years ago
  54. 4a6d62e Don't send initialisation strings is1/2/3 (barely anything else does) and move by Nicholas Marriott · 15 years ago
  55. 474fdeb Handle empty or unset TERM correctly; also fix a fatal() message while here. by Nicholas Marriott · 15 years ago
  56. 2660692 Copy the 256-colour flag into the tty saved cell as well as the actual colour, by Nicholas Marriott · 15 years ago
  57. 1675ddb Miscellaneous unused functions, including one which was basically a by Nicholas Marriott · 15 years ago
  58. 83078bd Unused variables. Found by lint, no binary change. by Nicholas Marriott · 15 years ago
  59. 2de599a Trying to predict the cursor position for UTF-8 output in the same way as for by Nicholas Marriott · 15 years ago
  60. 52ec9b9 Implement the DEC alignment test. With the last change this is enough for the by Nicholas Marriott · 15 years ago
  61. ebe07c2 Fix some miscalculations when clearing to start of screen: the number of lines by Nicholas Marriott · 15 years ago
  62. 3f76a97 Recent code to try and detect if a terminal supports UTF-8 by printing to it by Nicholas Marriott · 15 years ago
  63. 35876ea Import tmux, a terminal multiplexor allowing (among other things) a single by Nicholas Marriott · 15 years ago