summaryrefslogtreecommitdiffstats
path: root/CHANGES
AgeCommit message (Collapse)Author
2010-07-18Changes for 1.3.Tiago Cunha
2010-03-10Update CHANGES, and NOTES for the 1.2 release.Tiago Cunha
2009-11-05Update CHANGES, and NOTES for the 1.1 release.Tiago Cunha
2009-09-201.0.Nicholas Marriott
2009-07-01Try to make a bit more sense here.Nicholas Marriott
2009-07-01Changes for 0.9.Nicholas Marriott
2009-07-01This file is not going to be used as much any longer, make a note.Nicholas Marriott
2009-05-21stat(2) files before trying to load them to avoid problems, for example with ↵Nicholas Marriott
"source-file /dev/zero". This commit dedicated to Tom: protecting idiots from their own stupidity for more than 20 years.
2009-05-19Try to guess if the window is UTF-8 by outputting a three-byte UTF-8 wide ↵Nicholas Marriott
character and seeing how much the cursor moves. Currently tries to figure out if this works by some stupid checks on the terminal, these need to be rethought. Also might be better using a width 1 character rather than width 2.
2009-05-19If LANG contains "UTF-8", assume the terminal supports UTF-8, on the grounds ↵Nicholas Marriott
that anyone who configures it probably wants UTF-8. Not certain if this is a perfect idea but let's see if it causes any problems.
2009-05-19- New window option monitor-content to search for a string in a window, andTiago Cunha
highlight the status line if it matches. - To make this possible, the function cmd_find_window_search from cmd-find-window.c had to be moved to window.c and renamed window_pane_search. - While there use three new functions in server.c to check for bell, activity, and content, to avoid too much nesting.
2009-05-18main-horizontal layout and main-pane-height option to match vertical.Nicholas Marriott
2009-05-18left-vertical -> main-vertical.Nicholas Marriott
Also update CHANGES/TODO.
2009-05-16select-layout command and some key bindings.Nicholas Marriott
2009-05-16Recreate server socket on SIGUSR1, per SF feature request 2792533.Nicholas Marriott
2009-05-14Keys in status line (p in vi mode, M-y in emacs) to paste the first line of ↵Nicholas Marriott
the upper paste buffer. Suggested by Dan Colish.
2009-05-14clear-history command.Nicholas Marriott
2009-05-14Don't force wrapping with \n when asked, let the cursor code figure it out. ↵Nicholas Marriott
Should fix terminals which use this to detect line breaks.
2009-05-13Add a changes entry.Nicholas Marriott
2009-05-04Space trimmage mega-diff.Nicholas Marriott
2009-05-04Use ACS for line drawing characters.Nicholas Marriott
2009-04-30Support "neww; neww" as well "neww ; neww".Nicholas Marriott
2009-04-30previous-layout command.Nicholas Marriott
2009-04-30Use a (pre)randomised binary tree for UTF-8 character widths. Probably overkillNicholas Marriott
but meh.
2009-04-30Merge resize-pane-{up,down} into resize-pane.Nicholas Marriott
2009-04-29Some tweaks for Solaris.Nicholas Marriott
Get rid of vis.* in favour of a small replacement function.
2009-04-27Avoid using the prompt history when the server is locked, and prevent anyTiago Cunha
input entered from being added to the client's prompt history. From nicm.
2009-04-27- confirm-before command.Tiago Cunha
- Bound "&" and "x" by default to confirm-before "kill-window" and confirm-before "kill-pane", respectively.
2009-04-23Support NEL.Nicholas Marriott
2009-04-23Use the xenl terminfo flag to detect early-wrap terminals like the FreeBSDNicholas Marriott
console. Many thanks for a very informative email from Christian Weisgerber.
2009-04-23Note it.Nicholas Marriott
2009-04-17Remove the right number of characters from the buffer when escape then a cursorNicholas Marriott
key (or other key prefixed by \033) is pressed. Reported by Stuart Henderson.
2009-04-03rotate-window command.Nicholas Marriott
2009-04-02Change scroll/pane redraws to only redraw the single pane affected rather thanNicholas Marriott
the entire window.
2009-04-02If redrawing the region would mean redrawing > half the pane, just schedule toNicholas Marriott
redraw the entire window. Also add a flag to skip updating the window any further if it is scheduled to be redrawn. This has the effect of batching multiple redraws together.
2009-04-01Tweak to CHANGES.Nicholas Marriott
2009-04-01Basic horizontal splitting and layout management. Still some redraw and otherNicholas Marriott
issues - particularly, don't mix with manual pane resizing and be careful when viewing from multiple clients; generally cycling the layout a few times will fix most problems. Getting this in for testing while I think about how to deal with manual mode. Split window as normal and cycle the layouts with C-b space. Some of the layouts will work better when swap-pane comes along.
2009-03-31+UTF-8 fixed to CHANGES.Nicholas Marriott
2009-03-31Update CHANGES.Nicholas Marriott
2009-03-31Draw vertical line on the right when window size is limited.Nicholas Marriott
2009-03-28Better UTF-8 support, including combined characters. Unicode data is now storedNicholas Marriott
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.
2009-03-28Key repeating is now a property of the key binding not of the command. RepeatNicholas Marriott
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.
2009-03-28Clear using ED when redrawing the screen. I foolishly assumed using spacesNicholas Marriott
would be equivalent and terminals would pick up on this, but apparently not. This fixes copy and paste in xterm/rxvt.
2009-03-27Sockets in /tmp are now created in a subdirectory named, tmux-UID, egNicholas Marriott
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.
2009-03-21* New session flag "set-remain-on-exit" to set remain-on-exit flag for new ↵Nicholas Marriott
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.
2009-03-07Support for 88 colour terminals.Nicholas Marriott
2009-03-07break-pane command to split a pane off into a new window; bound to ! by default.Nicholas Marriott
2009-03-02Sort out escape key handling so it works.Nicholas Marriott
2009-02-13Redo mode keys slightly more cleanly and apply them to command prompt ↵Nicholas Marriott
editing. vi or emacs mode is controlled by the session option status-keys.
2009-02-13Looking up argv[0] is expensive, so just use p_comm for the window name ↵Nicholas Marriott
which is good enough. Also increase name update time to 500 ms.