Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Missing \. | Nicholas Marriott | 2009-03-31 | |
| | ||||
* | AIX forkpty. | Nicholas Marriott | 2009-03-31 | |
| | ||||
* | Most of AIX support. | Nicholas Marriott | 2009-03-31 | |
| | ||||
* | Draw vertical line on the right when window size is limited. | Nicholas Marriott | 2009-03-31 | |
| | ||||
* | Er, i should be j and c should be u. | Nicholas Marriott | 2009-03-31 | |
| | ||||
* | UTF8_SIZE. | Nicholas Marriott | 2009-03-31 | |
| | ||||
* | Copy columns correctly. | Nicholas Marriott | 2009-03-30 | |
| | ||||
* | Only need to print this once... | Nicholas Marriott | 2009-03-30 | |
| | ||||
* | $Id$ | Nicholas Marriott | 2009-03-30 | |
| | ||||
* | - Unbreak selection colouring. | Nicholas Marriott | 2009-03-30 | |
| | | | | | - Get UTF-8 check the right way round... | |||
* | Fix UTF-8 in c&p mode. | Nicholas Marriott | 2009-03-30 | |
| | ||||
* | Add UTF-8 to grid_compare.. | Nicholas Marriott | 2009-03-30 | |
| | ||||
* | Include protocol version. | Nicholas Marriott | 2009-03-29 | |
| | ||||
* | 8 -> UTF8_SIZE. | Nicholas Marriott | 2009-03-29 | |
| | ||||
* | - Ignore padding when writing so copying the screen for copy-mode doesn't ↵ | Nicholas Marriott | 2009-03-29 | |
| | | | | | | | include extra characters. - Handle combined characters properly when the previous character is not UTF-8. | |||
* | Add some more to server-info. | Nicholas Marriott | 2009-03-29 | |
| | ||||
* | Update/reorganise. | Nicholas Marriott | 2009-03-28 | |
| | ||||
* | Better UTF-8 support, including combined characters. Unicode data is now stored | Nicholas Marriott | 2009-03-28 | |
| | | | | | | | | | | | as UTF-8 in a separate array, the code does a lookup into this every time it gets to a UTF-8 cell. Zero width characters are just appended onto the UTF-8 data for the previous cell. This also means that almost no bytes extra are wasted non-Unicode data (yay). Still some oddities, such as copy mode skips over wide characters in a strange way, and the code could do with some tidying. | |||
* | _fill functions are no longer needed. Nuke them. | Nicholas Marriott | 2009-03-28 | |
| | ||||
* | Whoops. Missed a few changes. | Nicholas Marriott | 2009-03-28 | |
| | ||||
* | Step 2 of the Grand Plan To Make UTF-8 Better. | Nicholas Marriott | 2009-03-28 | |
| | | | | | | | | | | | | | | | | | | | Split grid into two arrays, one containing grid attributes/flags/colours (keeps the name grid_cell for now) and a separate with the character data (called text). The text is stored as a u_short but is treated as a uint64_t elsewhere; eventually the grid will have two arrays. I'm not happy with the naming so that might change. Still need to decide where to go from here. I'm not sure whether to combine the peek/set functions together, and also whether to continue to treat the text as a uint64_t (and convert to/from Unicode) or make it a char array (of size one when UTF-8 disabled, eight when enabled) and keep everything as UTF-8. Also since UTF-8 will eventually become an attribute of the grid itself it might be nice to move all the padding crap into grid.c. | |||
* | Now unused variable. | Nicholas Marriott | 2009-03-28 | |
| | ||||
* | struct grid_data -> struct grid. Stage 1 of the Grand Plan To Make UTF-8 Better. | Nicholas Marriott | 2009-03-28 | |
| | ||||
* | +. | Nicholas Marriott | 2009-03-28 | |
| | ||||
* | Key repeating is now a property of the key binding not of the command. Repeat | Nicholas Marriott | 2009-03-28 | |
| | | | | | | is turned on when the key is bound with the -r flag to bind-key. next/previous- window no longer repeat by default as it turned out to annoy me. | |||
* | Clear using ED when redrawing the screen. I foolishly assumed using spaces | Nicholas Marriott | 2009-03-28 | |
| | | | | | | would be equivalent and terminals would pick up on this, but apparently not. This fixes copy and paste in xterm/rxvt. | |||
* | Not const. | Nicholas Marriott | 2009-03-27 | |
| | ||||
* | const. | Nicholas Marriott | 2009-03-27 | |
| | ||||
* | Whoops. Didn't mean to commit this yet. | Nicholas Marriott | 2009-03-27 | |
| | ||||
* | Update TODO. | Nicholas Marriott | 2009-03-27 | |
| | ||||
* | Sockets in /tmp are now created in a subdirectory named, tmux-UID, eg | Nicholas Marriott | 2009-03-27 | |
| | | | | | | | | | | tmux-1000. The default socket is thus /tmp/tmux-UID/default. To start a separate server, the new -L command line option should be used: this creates a socket in the same directory with a different name ("-L main" will create socket called "main"). -S should only be used to place the socket outside /tmp. This makes sockets a little more secure and a bit more convenient to use multiple servers. | |||
* | Use lstat. No change yet due to realpath call in tmux.c. | Nicholas Marriott | 2009-03-27 | |
| | ||||
* | Clear pollfds first. | Nicholas Marriott | 2009-03-27 | |
| | ||||
* | Update. | Nicholas Marriott | 2009-03-27 | |
| | ||||
* | Typo. | Nicholas Marriott | 2009-03-27 | |
| | ||||
* | * New session flag "set-remain-on-exit" to set remain-on-exit flag for new ↵ | Nicholas Marriott | 2009-03-21 | |
| | | | | windows created in that session (like "remain-by-default" used to do). Not perfectly happy about this, but until I can think of a good way to introduce it generically (maybe a set of options in the session) this will do. Fixes SF request 2527847. | |||
* | Done. | Nicholas Marriott | 2009-03-07 | |
| | ||||
* | Support for 88 colour terminals. | Nicholas Marriott | 2009-03-07 | |
| | ||||
* | Unused variable. | Nicholas Marriott | 2009-03-07 | |
| | ||||
* | char not char *... | Nicholas Marriott | 2009-03-07 | |
| | ||||
* | break-pane command to split a pane off into a new window; bound to ! by default. | Nicholas Marriott | 2009-03-07 | |
| | ||||
* | CSR resets the cursor to the top-left. Reported by merdely. | Nicholas Marriott | 2009-03-05 | |
| | ||||
* | Log socket path so I can tell which tmux log is which. | Nicholas Marriott | 2009-03-05 | |
| | ||||
* | Initialise socket_path before parsing configuration file. | Nicholas Marriott | 2009-03-04 | |
| | ||||
* | Put socket path in $TMUX. | Nicholas Marriott | 2009-03-04 | |
| | ||||
* | Extra function keys from Dashing dashing at hushmail dot com | Nicholas Marriott | 2009-03-02 | |
| | ||||
* | Fix window choice mode, again. | Nicholas Marriott | 2009-03-02 | |
| | ||||
* | Sort out escape key handling so it works. | Nicholas Marriott | 2009-03-02 | |
| | ||||
* | Doh. Set a message when pane is too small rather than dying... | Nicholas Marriott | 2009-03-01 | |
| | ||||
* | This is now fixed. | Nicholas Marriott | 2009-02-28 | |
| |