aboutsummaryrefslogtreecommitdiff
path: root/window-copy.c
Commit message (Collapse)AuthorAge
...
| * Stop in the right place so all the lines selected are copied. Reported by KalleNicholas Marriott2009-07-09
| | | | | | | | Olavi Niemitalo, thanks.
| * Fix two copy/paste bugs: forbid zero-length buffers to prevent a fatal errorNicholas Marriott2009-07-02
| | | | | | | | | | | | | | when trying to paste them, found by me, and miscalculation of the start/end causing random fatal errors when copying in copy-mode, reported by sthen. ok sthen "put it in" deraadt
| * Import tmux, a terminal multiplexor allowing (among other things) a singleNicholas Marriott2009-06-01
| | | | | | | terminal to be switched between several different windows and programs displayed on one terminal be detached from one terminal and moved to another. ok deraadt pirofti
* Sync OpenBSD patchset 1156:Tiago Cunha2012-08-12
| | | | | | | Instead of numbering choose mode items 0-9a-z and then nothing, number them all and if there are more than 10 use a prompt when 0-9 is pressed. From Thomas Adam.
* Sync OpenBSD patchset 1150:Tiago Cunha2012-07-11
| | | | | xfree is not particularly helpful, remove it. From Thomas Adam.
* Sync OpenBSD patchset 1087:Tiago Cunha2012-04-10
| | | | | Minor style nits - return ().
* Sync OpenBSD patchset 1082:Tiago Cunha2012-04-10
| | | | | | Only exit mouse mode on scroll wheel when actually reaching the end of the history, from James Nylen.
* Sync OpenBSD patchset 1066:Tiago Cunha2012-03-18
| | | | | | Add a wrap-search option to turn off wrapping of searches in copy mode. From Jacobo de Vera.
* Sync OpenBSD patchset 1046:Tiago Cunha2012-03-18
| | | | | | Always remember last cursor position when moving up or down, not just for if crossing zero length lines. From Itay Perl.
* Sync OpenBSD patchset 986:Tiago Cunha2011-12-06
| | | | | | | | Support "jump to" like vi in copy mode using t and T keys. Also add x and X for delete in edit mode. From Ben Boeckel, thanks.
* Sync OpenBSD patchset 981:Tiago Cunha2011-11-25
| | | | | | Move word-separators to be a session rather than window option, from Ben Boeckel.
* Sync OpenBSD patchset 971:Tiago Cunha2011-10-31
| | | | | When copying, make repeat count indicate buffer to replace if used.
* Sync OpenBSD patchset 926:Tiago Cunha2011-07-03
| | | | | PANE_FREEZE doesn't do anything anymore, so remove it.
* Sync OpenBSD patchset 914:Tiago Cunha2011-05-22
| | | | | | | | | | Support setting the xterm clipboard when copying from copy mode using 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.
* Sync OpenBSD patchset 913:Tiago Cunha2011-05-18
| | | | | | Add three new copy-mode commands - select-line, copy-line, copy-end-of-line. From Dave Disser and Randy Stauner a while back.
* Sync OpenBSD patchset 911:Tiago Cunha2011-05-18
| | | | | | Use button mouse mode not any for copy mode, fixes issues with putty. From Ailin Nemui.
* Sync OpenBSD patchset 897:Tiago Cunha2011-04-25
| | | | | | Tweak copy behaviour slightly in vi mode to be closer to real vi. From Tiago Resende.
* Sync OpenBSD patchset 896:Tiago Cunha2011-04-25
| | | | | | | | When mode-mouse is on (it is off by default), automatically enter copy 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.
* |PatchSet 873Nicholas Marriott2011-04-06
| | | | | | | | | | |Date: 2011/03/28 20:44:31 |Author: nicm |Branch: HEAD |Tag: (none) |Log: |Style: uint -> u_int and a missing else.
* Global paste buffers instead of per-session which renders copy-buffer useless.Tiago Cunha2010-12-30
| | | | | As a consequence buffer-limit is now a server option.
* Sync OpenBSD patchset 812:Tiago Cunha2010-12-30
| | | | | | Support all four of the xterm mouse modes. Based on a diff from hsim at gmx.li.
* Fix rectangle copy to behave like emacs - the cursor is not part of theNicholas Marriott2010-12-11
| | | | | selection on the right edge but on the left it is.
* Sync OpenBSD patchset 760:Tiago Cunha2010-09-18
| | | | | | When resizing the copy mode screen, don't allow it to end up with the viewable position beyond the size of the history.
* Sync OpenBSD patchset 758:Tiago Cunha2010-09-10
| | | | | Do not crash if the screen size is too small for the indicator in copy mode.
* Don't enable/disable invalid event pointers. Fixes SF #3033119.Micah Cowan2010-07-22
|
* Sync OpenBSD patchset 733:Tiago Cunha2010-07-02
| | | | | replace some magic mouse constants with defines for clarity. ok nicm
* Sync OpenBSD patchset 710:Tiago Cunha2010-06-06
| | | | | | | | | | When the mode-mouse option is on, support dragging to make a selection in copy mode. Also support the scroll wheel, although xterm strangely does not ignore it in application mouse mode, causing redraw artifacts when scrolling up (other terminals appear to be better behaved).
* Use a macro-based mask for obtaining a key or modifier-set from the combination.Micah Cowan2010-06-05
| | | | | Display C-@, etc, as C-Space, in list-keys.
* Make double start-of-line do what double end-of-line does, on wrapped lines.Micah Cowan2010-06-05
|
* Pass in the session, rather than the client, to window modes' key() function.Micah Cowan2010-05-22
| | | | | We were only ever using the client to find the session anyway.
* Avoid crashing in copy-mode during resize, when our history-viewing offset ↵Micah Cowan2010-04-28
| | | | is larger than the new total number of history lines.
* Unbreak. Whoops.Nicholas Marriott2010-04-06
|
* Stupid style nits.Nicholas Marriott2010-04-06
|
* Merge output (more) and copy modes into one single mode (called copy).Micah Cowan2010-04-05
|
* Minor Nazi style tweaks to previous, and man page rephrasery.Nicholas Marriott2010-03-16
|
* Jump-forward, jump-backward in copy mode, based on vi's F and f commands.Micah Cowan2010-03-16
|
* Avoid use-after-free when cancelling copy mode.Nicholas Marriott2010-03-14
|
* Sync OpenBSD patchset 658:Tiago Cunha2010-03-08
| | | | | | | | Permit keys in copy mode to be prefixed by a repeat count, entered with [1-9] in vi mode, or M-[1-9] in emacs mode. From Micah Cowan, tweaked a little by me.
* Sync OpenBSD patchset 657:Tiago Cunha2010-03-08
| | | | | | | | | | Extend the end-of-line key so that in normal mode a second press moves the cursor to the end of a wrapped line (if present) and in rectangle mode it toggles between the end of the text and the last cell on the line. From Micah Cowan.
* Sync OpenBSD patchset 653:Tiago Cunha2010-02-26
| | | | | | Option to set the characters considered word separators in copy mode, from Micah Cowan.
* Sync OpenBSD patchset 651:Tiago Cunha2010-02-26
| | | | | | | Another copy mode fix from Micah Cowan: in rectangle copy mode, the cursor should not wrap at the end of the text on the line but should be allowed to move freely.
* Sync OpenBSD patchset 648:Tiago Cunha2010-02-26
| | | | | | copy mode uses the real screen as backing and if it is updated while copying, strange things can happen. So, freeze reading from the pty while in copy mode.
* Sync OpenBSD patchset 647:Tiago Cunha2010-02-18
| | | | | | Make next-word stop at beginning of word even if it is at the start of the line, from Micah Cowan.
* Sync OpenBSD patchset 645:Tiago Cunha2010-02-18
| | | | | | Don't strip add newline if only copying part of wrapped line. Problem spotted by and fix from Micah Cowan.
* Sync OpenBSD patchset 644:Tiago Cunha2010-02-18
| | | | | | Add "N" key to search the opposite way from the last search (reverse of "n"), from Micah Cowan.
* Sync OpenBSD patchset 636:Tiago Cunha2010-02-08
| | | | | Rectangle copy support, from Robin Lee Powell.
* Sync OpenBSD patchset 634:Tiago Cunha2010-02-05
| | | | | | | | | vi-style B, W and E keys in copy mode to navigate between words treating only spaces as word separators. Also add . to the list of word separators for standard word navigation. From Micah Cowan, tweaked slightly by me.
* Sync OpenBSD patchset 621:Tiago Cunha2010-01-28
| | | | | | Alter next-word to have vi-like movement behaviour, and add next-word-end with the existing emacs behaviour. From Micah Cowan.
* Sync OpenBSD patchset 619:Tiago Cunha2010-01-28
| | | | | Hugely simplify window_copy_cursor_next_word, which was way overcomplicated.
* Sync OpenBSD patchset 618:Tiago Cunha2010-01-28
| | | | | Update the selection properly after goto line or searching.