1. 9b6aeac aixterm colours can be used if -2 is given, as well as if TERM tells us by nicm · 8 years ago
  2. 9e78603 Fix setting the palette of aixterm colours (90-97). by nicm · 8 years ago
  3. 74c40d0 Be less aggressive about turning margins off. by nicm · 8 years ago
  4. 3bb1400 Add some missing special keys to key_string_lookup_key, fix a mouse by nicm · 8 years ago
  5. bf6a5c0 Add a format for terminal type. by nicm · 8 years ago
  6. 314e933 Add support for the OSC 4 and OSC 104 palette setting escape sequences, by nicm · 8 years ago
  7. 5ea143f Only skip moving the cursor if it is already in the last position _on by nicm · 8 years ago
  8. 1a6156d Fix check for cursor at end of line. by nicm · 8 years ago
  9. 9fc925a When comparing ocy to orlower in tty_cmd_cell, there is no need to add by nicm · 8 years ago
  10. ddf7ac5 Fix calculation of whether we need a region for drawing a cell (only if by nicm · 8 years ago
  11. c34a79b Turn on margins, with a couple of fixes (only limit to the pane for line by nicm · 8 years ago
  12. d81a5c6 And of course I just find a bug, disable previous for now. by nicm · 8 years ago
  13. 0ace779 Initial attempt to make use of left and right margins if the terminal by nicm · 8 years ago
  14. d413a94 Don't make assumptions about line wrap on !xenl terminals, means that by nicm · 8 years ago
  15. 4179b42 Add support for BCE (background colour erase). This makes various escape by nicm · 8 years ago
  16. 4160df4 Redraw selection in tty_draw_line, so it appears when redrawing whole by nicm · 8 years ago
  17. e454018 Add static in window-*.c and move some internal functions out of tmux.h. by nicm · 8 years ago
  18. c426e48 Loads more static, except for cmd-*.c and window-*.c. by nicm · 8 years ago
  19. 61dfbe7 Remove some redundant checks and make ich/dch consistent. by nicm · 8 years ago
  20. 0f73af8 Don't update cells in each block of data read from a pane immediately, by nicm · 8 years ago
  21. 1921fac Cache the window styles and do not look up the window-style options by nicm · 8 years ago
  22. 7d10573 Send two cub1 instead of using cub for moving the cursor two left. This by nicm · 8 years ago
  23. 88bd5b1 tty_client_ready can not be internal to tty.c again. by nicm · 8 years ago
  24. bcb41a0 RGB colours shouldn't be mixed up with aixterm colours, return before by nicm · 9 years ago
  25. 427b820 Support for RGB colour, using the extended cell mechanism to avoid by nicm · 9 years ago
  26. 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
  27. 2a1f27e Couple of trivial style nits. by nicm · 9 years ago
  28. 88bc8f3 Style nits and line wrapping of function declarations. by nicm · 9 years ago
  29. 32e510b Remove support for the UTF-8 mouse extension. This was a briefly used, by nicm · 9 years ago
  30. 577c0e3 Use __unused rather than rolling our own. by nicm · 9 years ago
  31. c5689a5 Long overdue change to the way we store cells in the grid: now, instead by nicm · 9 years ago
  32. abb4e9e The output log is only useful once and it means creating a file, so open by nicm · 9 years ago
  33. 44657bf Move struct options into options.c. by nicm · 9 years ago
  34. 26a55dd Remove some unnecessary checks before free(). by nicm · 9 years ago
  35. 63a3fd3 Use tty_term_flag not _has for XT, and make -2 force direct use of by nicm · 9 years ago
  36. 03d7dba If the terminal has colors=256, only try to use setaf/setab if they by nicm · 9 years ago
  37. 38e3baa A one line helper function is a little silly. by nicm · 9 years ago
  38. 8121127 We no longer need the terminal service class, so don't bother asking for it. by nicm · 9 years ago
  39. e45d624 Fix line endings. by nicm · 9 years ago
  40. c7374c3 Initialize cwd fd to -1 so that we don't close fd 0 if the client is by nicm · 9 years ago
  41. 2c53b23 In terminfo, sometimes cvvis implies cnorm and sometimes it doesn't, so by nicm · 9 years ago
  42. 3f4ee98 To replace c0-*, add a high watermark to the pty event, and also backoff by nicm · 9 years ago
  43. 33a585c Turn cursor off during redraw, pointed out by George Nachman. by nicm · 9 years ago
  44. 7382ba8 If default-terminal is set to "screen" or "screen-*", emulate screen's by nicm · 9 years ago
  45. d23af6c Explicitly cancel mouse "button" mode, this happens implicitly with some by nicm · 9 years ago
  46. aeedb46 Convert clients list into a TAILQ. by nicm · 9 years ago
  47. bf635e7 Rewrite of tmux mouse support which was a mess. Instead of having by nicm · 10 years ago
  48. ee123c2 Support setting the default window and pane background colours (window by nicm · 10 years ago
  49. 4a75879 Fix some issues in bright colour handling. Bold background doesn't exist by nicm · 10 years ago
  50. eec27f9 Use tty_term_flag not _has for flags, also fix a typo (position not permission). by nicm · 10 years ago
  51. 90bf702 Reset bracket paste mode on detach. by nicm · 10 years ago
  52. 144025e Focus off needs to be sent with tty_raw, reported by Geoff Nixon. by nicm · 10 years ago
  53. 16bdd97 Support blinking cursor mode, both the xterm CSI ?12 h/l and (the by nicm · 10 years ago
  54. 1ac9620 Remove support for the continuous reporting "any" mouse mode which never by nicm · 10 years ago
  55. 40cb4cb specifying ECHOCTL once is enough ok nicm@ by jsg · 10 years ago
  56. a5d4b7f Some more long lines. by nicm · 11 years ago
  57. c3b2e5e Wrap some long lines. by nicm · 11 years ago
  58. f182892 Change terminal-overrides to a server option (now that we have them), it by nicm · 11 years ago
  59. f2e54e1 If the terminfo entry has colors#256, assume that setaf and setab work by nicm · 11 years ago
  60. 945339b Allow replacing each of the many sets of separate foo-{fg,bg,attr} by nicm · 11 years ago
  61. f52eac6 Don't turn on modifyOtherKeys by default, it is annoying if tmux is by nicm · 11 years ago
  62. 3977dba Focus events can cause trouble if left on and they can't be turned off by Nicholas Marriott · 11 years ago
  63. d6debc2 revert r1.156 "Add support for focus notifications when tmux pane changes" by Stuart Henderson · 11 years ago
  64. 13441e8 The actual terminfo entries we ended up with for cursor changes are Cs, by Nicholas Marriott · 11 years ago
  65. cbee283 Send an SGR0 after turning on modifyOtherKeys to fix Terminal.app which by Nicholas Marriott · 12 years ago
  66. 9823547 Remove tmux's (already minimal) 88 colour support. Such terminals are by Nicholas Marriott · 12 years ago
  67. a60687f Handle focus events from the terminal, from Aaron Jensen. by Nicholas Marriott · 12 years ago
  68. 79f5fe6 Use tty_raw on stop, not tty_puts. by Nicholas Marriott · 12 years ago
  69. 22a2949 Correctly handle UTF8 mouse option being toggled, from Egmont Koblinger. by Nicholas Marriott · 12 years ago
  70. 3d24c75 Include the \033 in the key tree and adjust key matching for this change. by Nicholas Marriott · 12 years ago
  71. 3665be7 Tidy by splitting default key tables into two. by Nicholas Marriott · 12 years ago
  72. fdbfc7e Rather than having two grids for each pane, one for ASCII and one for by Nicholas Marriott · 12 years ago
  73. 44f8e1c Implement ECH (erase character, CSI X). Reported by Christian Neukirchen. by Nicholas Marriott · 12 years ago
  74. 260419f Put helper function back, will be needed in a bit. by Nicholas Marriott · 12 years ago
  75. 44dccf7 Do not test client flags against TTY_FREEZE bit, reported by Tom Ryder. by Nicholas Marriott · 12 years ago
  76. b433886 We can't tell what the terminal has done with a DCS string, so reset the by Nicholas Marriott · 12 years ago
  77. 6307d63 Remove xterm CRA support - support is patchy and it will be done better by Nicholas Marriott · 12 years ago
  78. f61fc57 Tidy up tty_write, from Sean Estabrooks. by Nicholas Marriott · 12 years ago
  79. df912e3 xfree is not particularly helpful, remove it. From Thomas Adam. by Nicholas Marriott · 12 years ago
  80. a791743 Remove a couple of unused variables from redbrain at gcc dot gnu dot org. by Nicholas Marriott · 12 years ago
  81. 84c708f Store client in tty struct directly instead of using a callback function by Nicholas Marriott · 12 years ago
  82. 82b053a Use tty_pane_full_width macro in some more places. by Nicholas Marriott · 12 years ago
  83. 2f93aff If there are any terminals with insert mode but not ich1, they can go by Nicholas Marriott · 12 years ago
  84. 243d127 Move some common code to repeat spaces into a function. by Nicholas Marriott · 12 years ago
  85. 96a34a0 Tidy up by adding a macro for the pane being the full screen width, from by Nicholas Marriott · 12 years ago
  86. 132403b Missing ()s in macros. by Nicholas Marriott · 12 years ago
  87. 3e6454f Pull CRA out into a separate function and add ERA, from Ailin Nemui. by Nicholas Marriott · 12 years ago
  88. f599712 Add a simple form of output rate limiting by counting the number of by Nicholas Marriott · 13 years ago
  89. d8805af On xterm 271 and later, put the terminal into SCL 5 and use DECCRA for by Nicholas Marriott · 13 years ago
  90. 889fe42 Break out termios initialization into a separate function, from George Nachman. by Nicholas Marriott · 13 years ago
  91. 164e85c Do not clear to end of line if the line is full, fixes missing last by Nicholas Marriott · 13 years ago
  92. 0b34fef Use the region lower not the pane size to work out where the bottom line is. by Nicholas Marriott · 13 years ago
  93. 928f406 Tweak last fix to actually hit the right end of pane. by Nicholas Marriott · 13 years ago
  94. d3c842d Check event_initialized before event_del if event may not have been set by Nicholas Marriott · 13 years ago
  95. 0489213 Revert screen-write.c r1.54 and fix the bug properly. After wrapping a by Nicholas Marriott · 13 years ago
  96. c8c0d68 Send secondary DA to terminals with XT in terminfo when starting up and by Nicholas Marriott · 13 years ago
  97. 005566f Fix a warning. Doh. by Nicholas Marriott · 13 years ago
  98. 698361c Add a helper function for enabling an optimization to make some code clearer. by Nicholas Marriott · 13 years ago
  99. 575bfa4 Erm, use EL in a way that actually works... by Nicholas Marriott · 13 years ago
  100. 31ddae7 Use EL to clear to end of line if possible. by Nicholas Marriott · 13 years ago