aboutsummaryrefslogtreecommitdiff
path: root/window-copy.c
Commit message (Expand)AuthorAge
* Style: uint -> u_int and a missing else.Nicholas Marriott2011-03-28
* Change from a per-session stack of buffers to one global stack which isNicholas Marriott2010-12-30
* Support all four of the xterm mouse modes. Based on a diff from hsim atNicholas Marriott2010-12-29
* Fix rectangle copy to behave like emacs - the cursor is not part of theNicholas Marriott2010-12-11
* When resizing the copy mode screen, don't allow it to end up with theNicholas Marriott2010-09-11
* Do not crash if the screen size is too small for the indicator in copy mode.Nicholas Marriott2010-09-08
* Fix a crash: if remain-on-exit is set and the pane has exited, theNicholas Marriott2010-07-22
* replace some magic mouse constants with defines for clarity. ok nicmTed Unangst2010-06-29
* Use a macro-based mask for obtaining a key or modifier-set from theNicholas Marriott2010-06-06
* Make start-of-line work the same as end-of-line on wrapped lines (jumpNicholas Marriott2010-06-05
* When the mode-mouse option is on, support dragging to make a selectionNicholas Marriott2010-05-31
* Pass in the session, rather than the client, to window modes' key()Nicholas Marriott2010-05-23
* Fix crash when resizing in copy mode, when cursor can end up outside screen.Nicholas Marriott2010-04-28
* Merge copy mode and output mode, dropping the latter. Idea and code fromNicholas Marriott2010-04-06
* paste-buffer should be per pane, from C. Coutinho.Nicholas Marriott2010-03-22
* Add vi-style "jump" commands for copy mode, from Micah Cowan.Nicholas Marriott2010-03-22
* Fix a use-after-free when cancelling copy mode, or trying to repeat cancel.Nicholas Marriott2010-03-14
* Permit keys in copy mode to be prefixed by a repeat count, entered withNicholas Marriott2010-03-02
* Extend the end-of-line key so that in normal mode a second press movesNicholas Marriott2010-03-01
* Option to set the characters considered word separators in copy mode, fromNicholas Marriott2010-02-22
* Another copy mode fix from Micah Cowan: in rectangle copy mode, the cursorNicholas Marriott2010-02-22
* copy mode uses the real screen as backing and if it is updated while copying,Nicholas Marriott2010-02-19
* Make next-word stop at beginning of word even if it is at the start of theNicholas Marriott2010-02-17
* Don't strip add newline if only copying part of wrapped line. Problem spottedNicholas Marriott2010-02-17
* Add "N" key to search the opposite way from the last search (reverse of "n"),Nicholas Marriott2010-02-11
* Rectangle copy support, from Robin Lee Powell.Nicholas Marriott2010-02-06
* vi-style B, W and E keys in copy mode to navigate between words treating onlyNicholas Marriott2010-02-04
* Alter next-word to have vi-like movement behaviour, and add next-word-end withNicholas Marriott2010-01-27
* Hugely simplify window_copy_cursor_next_word, which was way overcomplicated.Nicholas Marriott2010-01-25
* Update the selection properly after goto line or searching.Nicholas Marriott2010-01-25
* Top/bottom of history mode keys, diff from Micah Cowan, tweaked by me.Nicholas Marriott2010-01-25
* Redraw properly when scrolling backward and the cursor is on the lastNicholas Marriott2010-01-24
* Massive spaces->tabs and trailing whitespace cleanup, hopefully for the lastNicholas Marriott2009-12-03
* Remove a couple of unused arguments where possible, and add /* ARGSUSED */ toNicholas Marriott2009-11-26
* Missed an unused variable :-/.Nicholas Marriott2009-11-18
* Cleanup by moving various (mostly horrible) little bits handling UTF-8 gridNicholas Marriott2009-11-18
* Correctly nuke the EOL $ marker when scrolling, reported by martynas@, thanks.Nicholas Marriott2009-10-20
* Add mode keys to move the cursor to the top, middle and bottom of the screen.Nicholas Marriott2009-10-13
* Clean up by introducing a wrapper struct for mouse clicks rather than passingNicholas Marriott2009-10-11
* Make C-Up and C-Down in copy mode scroll the screen up and down one lineNicholas Marriott2009-10-06
* Permit options such as status-bg to be configured using the entire 256 colourNicholas Marriott2009-09-10
* Give each paste buffer a size member instead of requiring them to beNicholas Marriott2009-09-07
* When moving up or down in copy mode, save the cursor position and size of theNicholas Marriott2009-08-21
* Don't read beyond the edge of the screen when searching (dies with debugNicholas Marriott2009-08-19
* Nuke unnecessary assignment.Nicholas Marriott2009-08-18
* Add a "delete line" key when editing in the status line or the search up/downNicholas Marriott2009-08-18
* Add (naive) searching and goto line in copy mode. Searching is C-r and C-s withNicholas Marriott2009-08-18
* vi(1)-style half page scroll in copy and scroll modes. Move the vi full pageNicholas Marriott2009-08-13
* Scroll by two less than the number of lines in the screen, like emacs, ratherNicholas Marriott2009-08-13
* Allowing copy mode to scroll left and right is annoying, so limit it to theNicholas Marriott2009-08-13