aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * Memory leak in error path, from Tiago Cunha.Nicholas Marriott2011-05-25
| |
| * Nuke a redundant if statement, from Tiago Cunha.Nicholas Marriott2011-05-25
| |
| * tweak the TERMINFO section; ok nicmJason McIntyre2011-05-21
| |
| * Pass prompts through status_replace so that they can be more helpfulNicholas Marriott2011-05-20
| | | | | | | | | | (such as showing the previous session name when renaming). From Tiago Cunha.
| * Support DECSCUSR sequence to set the cursor style with two newNicholas Marriott2011-05-20
| | | | | | | | terminfo(5) extensions, Cs and Csr. Written by Ailin Nemui.
| * Support xterm(1) cursor colour change sequences through terminfo(5) CcNicholas Marriott2011-05-20
| | | | | | | | | | (set) and Cr (reset) extensions. Originally by Sean Estabrooks, tweaked by me and Ailin Nemui.
| * Support setting the xterm clipboard when copying from copy mode usingNicholas Marriott2011-05-18
| | | | | | | | | | | | | | | | the xterm escape sequence for the purpose (if xterm is configured to allow it). Written by and much discussed Ailin Nemui, guidance on xterm/termcap/terminfo from Thomas Dickey.
| * Add three new copy-mode commands - select-line, copy-line,Nicholas Marriott2011-05-18
| | | | | | | | copy-end-of-line. From Dave Disser and Randy Stauner a while back.
| * Use xfree not free, from Tiago Cunha.Nicholas Marriott2011-05-18
| |
| * Use button mouse mode not any for copy mode, fixes issues withNicholas Marriott2011-05-18
| | | | | | | | putty. From Ailin Nemui.
| * Reset last pane properly when using break-pane as well, fixes a problemNicholas Marriott2011-05-08
| | | | | | | | reported to Debian by Hannes von Haugwitz (bug 622677).
| * Reset last pane on swap-pane across windows, fixes crash noticed by hsimNicholas Marriott2011-05-08
| | | | | | | | at gmx.li.
| * Only select pane on click, not drag. From hsim at gmx.li.Nicholas Marriott2011-05-08
| |
| * Fix a couple of memory leaks, from Tiago Cunha.Nicholas Marriott2011-05-08
| |
| * Fix a memory leak if cmd_pane_session succeeds, from Tiago Cunha.Nicholas Marriott2011-05-08
| |
| * Add a new option, mouse-resize-pane. When on, panes may be resized byNicholas Marriott2011-05-08
| | | | | | | | dragging their borders. From hsim at gmx.li.
| * Use the tsl and fsl terminfo(5) capabilities to update terminal titleNicholas Marriott2011-05-08
| | | | | | | | | | | | and automatically fill them in on terminals with the XT capability (which means their title setting is xterm-compatible). From hsim at gmx.li.
| * Change window with mouse wheel over status line if mouse-select-windowNicholas Marriott2011-05-04
| | | | | | | | is on, from marcel partap.
| * Don't need vis.h anymore.Nicholas Marriott2011-05-04
| |
| * Don't use strnvis for the title as it breaks UTF-8. set-titles is nowNicholas Marriott2011-05-04
| | | | | | | | | | off by default and we have to trust the terminal can understand what we send it anyway so there isn't any harm.
| * Check if mouse-select-pane is ON not off when setting mouse flags,Nicholas Marriott2011-05-04
| | | | | | | | reported by oga.
| * Only redraw the status line on command update, not the entire clientNicholas Marriott2011-04-29
| | | | | | | | (big DOH).
| * Provide #h for short hostname (no domain) from Michal Mazurek.Nicholas Marriott2011-04-24
| |
| * Tweak copy behaviour slightly in vi mode to be closer to real vi. FromNicholas Marriott2011-04-24
| | | | | | | | Tiago Resende.
| * When mode-mouse is on (it is off by default), automatically enter copyNicholas Marriott2011-04-19
| | | | | | | | | | | | mode when the mouse is dragged or the mouse wheel is used. Also exit copy mode when the mouse wheel is scrolled off the bottom. Discussed with and written by hsim at gmx dot li.
| * POSIX only guarantees uname() will return a non-negative value onMatthew Dempsky2011-04-19
| | | | | | | | | | | | success. ok nicm@
| * The mouse should only work in copy mode if mode-mouse is set, not justNicholas Marriott2011-04-18
| | | | | | | | mouse-select-pane.
| * Add an option (mouse-select-window) which allows the mouse to be used byNicholas Marriott2011-04-18
| | | | | | | | clicking on the status line, written by hsim at gmx dot li.
| * new sentence, new line;Jason McIntyre2011-04-17
| |
| * Add -t to list-clients, based on a diff from Zac Sprackett.Nicholas Marriott2011-04-17
| |
| * Fix character position check, from Tiago Resende.Nicholas Marriott2011-04-17
| |
| * -s comes before -t and also add -s to command syntax. Prompted by jmc.Nicholas Marriott2011-04-11
| |
| * Add -s option to detach all clients attached to a session, from ZacNicholas Marriott2011-04-11
| | | | | | | | Sprackett.
| * Switch back from KERN_PROC2/kinfo_proc2 to KERN_PROC/kinfo_proc nowPhilip Guenther2011-04-10
| | | | | | | | | | | | that we've got name we want for the API we want "ZAP!" deraadt@
| * Since buffers are now global, bump the default buffer-limit a bit higherNicholas Marriott2011-04-09
| | | | | | | | to 20 rather than 9.
| * If the terminal supports sitm for italics, use it instead of standoutNicholas Marriott2011-04-09
| | | | | | | | (smso). From Tiago Resende.
| * Change so that an empty session name always means the current sessionsNicholas Marriott2011-04-06
| | | | | | | | | | even if given with, for example, -t '', and explicitly forbid empty session names and those containing a : when they are created.
| * Avoid using NULL in non-pointer contexts: use 0 for integer values and '\0'Miod Vallat2011-04-06
| | | | | | | | for chars.
| * Add a flag to cmd_find_session so that attach-session can preferNicholas Marriott2011-04-05
| | | | | | | | | | unattached sessions when choosing the most recently used (if -t is not given). Suggested by claudio@.
| * Bind C-u to delete-line in vi mode like ksh does, suggested by thib.Nicholas Marriott2011-04-05
| |
| * "or" should be on a line on its own here so it is not emphasised asNicholas Marriott2011-04-01
| | | | | | | | well.
| * For convenience, work out what type of option is being set by nameNicholas Marriott2011-03-29
| | | | | | | | regardless of the -s or -w flags (these remain documented however).
| * Checking for particular options and redrawing is not necessary as weNicholas Marriott2011-03-29
| | | | | | | | already redraw unconditionally.
| * Update an out-of-date and inaccurate comment.Nicholas Marriott2011-03-29
| |
| * Change -t on display-message to be target-pane for the #[A-Z]Nicholas Marriott2011-03-29
| | | | | | | | replacements and add -c as target-client.
| * Add -a and -s options to lsp to list all panes in the server or sessionNicholas Marriott2011-03-28
| | | | | | | | respectively. Likewise add -s to lsw. From Ben Boeckel.
| * Allow a start and end line to be specified for capture-pane which may beNicholas Marriott2011-03-28
| | | | | | | | | | negative to capture part of the history. Prompted by request from Victor J Orlikowski.
| * Style: uint -> u_int and a missing else.Nicholas Marriott2011-03-28
| |
| * Set the terminal blocking again earlier, before sending the resetNicholas Marriott2011-03-27
| | | | | | | | sequences.
| * Don't include meta twice when working out the flags to output forNicholas Marriott2011-03-27
| | | | | | | | | | xterm-style keys - bit 3 is accepted on input but not on output. Also a style nit in the header.