aboutsummaryrefslogtreecommitdiff
path: root/window-copy.c
Commit message (Expand)AuthorAge
* Add a mark in copy mode. Set with set-mark command (bound to 'X') by defaultNicholas Marriott2020-05-13
* Do not loop forever when search finds an empty match, GitHub issue 2203.Nicholas Marriott2020-05-10
* Fix next-matching-bracket logic, from Chris Barber.Nicholas Marriott2020-05-09
* Store and restore cursor position when copy mode is resized, from AnindyaNicholas Marriott2020-05-05
* Try to search the entire history first for up to 200 ms so a search count canNicholas Marriott2020-05-03
* Use the cursor position not the current position when working out which marksNicholas Marriott2020-05-03
* Do not hoke into struct window_pane from the tty code and instead setNicholas Marriott2020-05-01
* Copy mode search improvements:Nicholas Marriott2020-04-29
* Drop having a separate type for style options and make them all strings, whichNicholas Marriott2020-04-28
* time.h is needed.Nicholas Marriott2020-04-23
* Only trim blank lines when the source pane is not the target pane,nicm2020-04-20
* Make sure the cursor position is still on screen after we have trimmednicm2020-04-17
* Add a copy-command option and change copy-pipe and friends to pipe to itnicm2020-04-17
* Don't miss the last line off the screen when writing after resize, fromnicm2020-04-16
* Clear the selection and repeat the search on refresh same as resize.nicm2020-04-15
* Instead of fixing with the cursor position when the copied screen isnicm2020-04-15
* Leave the cursor above empty lines.nicm2020-04-14
* Adjust cursor and scroll positions when entering copy mode so that thenicm2020-04-14
* Make client -c and -t handling common in cmd-queue.c and try to benicm2020-04-13
* Now that copy mode copies the pane content rather than keeping anicm2020-04-10
* Fix history-bottom to use the right line when working out the length.nicm2020-04-09
* Some minor style nits.nicm2020-04-09
* Some unnecessary assignments and unused variables.nicm2020-04-09
* Change copy mode to make copy of the pane history so it does not need tonicm2020-04-06
* Check previous line rather than an extra line, from Anindya Mukherjee.nicm2020-04-03
* Only search the visible part of the history when marking (highlighting)nicm2020-04-02
* Add a 10 second timeout to prevent searches taking too much time, fromnicm2020-04-01
* Do not go down the regex search path (which is expensive because we neednicm2020-04-01
* Use a comparison to check for wrap and avoid an expensive modulus.nicm2020-04-01
* Performance improvements for regex searching, most notably:nicm2020-04-01
* Do not go down the regex search path (which is expensive because we neednicm2020-04-01
* Use a comparison to check for wrap and avoid an expensive modulus.nicm2020-04-01
* Performance improvements for regex searching, most notably:nicm2020-04-01
* Add non-regex search variants to avoid the performance cost for peoplenicm2020-03-31
* Set end position correctly, GitHub issue 2129 from Anindya Mukherjee.nicm2020-03-21
* Fix select-word when not on a word, from Anindya Mukherjee.nicm2020-03-20
* Make the mouse_word and mouse_line formats work in copy mode and enablenicm2020-03-20
* select_word_end needs to forward no_reset flag or select-word selectsnicm2020-03-20
* Another fix to make other-end forget the selection mode, from Anindya Mukherjee.nicm2020-03-20
* Add a flag to run a background process in a pty as well, not used fornicm2020-03-19
* Various fixes to copying with select-word and select-line, includingnicm2020-03-19
* Adjust selection correctly when scrolling, from Anindya Mukherjee.nicm2020-03-16
* Reset selection flag when clearing or stopping selection, from Marknicm2020-03-15
* Add a copy-mode -H flag to hide the position marker in the top right.nicm2020-03-12
* Start a new selection if outside the existing selection after a word hasnicm2020-03-11
* Change mouse selection so that after selecting a word, dragging selectsnicm2020-02-24
* Add selection_active format for when the selection is present but notnicm2020-02-20
* Do not jump to next word end if already on a word end when selecting anicm2020-02-13
* Support regex search in copy mode, from Anindya Mukherjee in GitHubnicm2019-12-27
* Tweak previous to check the wrapped flag and stop if not set.nicm2019-12-11