summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/window-copy.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Correctly move to previous line when looking for previous word, fromnicm2020-06-161-5/+5
* Add some formats for search in copy mode (search_present, search_match).nicm2020-06-111-20/+43
* Now that we mostly only search visible text, the rate limit on repeatingnicm2020-06-051-13/+1
* Search marks outside the visible text are not useful, so there is nonicm2020-06-041-17/+35
* Some improvements to performance of searching:nicm2020-06-041-53/+87
* Make the -no-clear command variants not clear the search marks either.nicm2020-06-041-73/+83
* Missing ; in previous.nicm2020-06-021-2/+2
* Fire copy-pipe command even if there is no text, means it works if itnicm2020-06-021-5/+6
* Use CLOCK_MONOTONIC for timer measurement and add a timestamp to controlnicm2020-06-021-13/+4
* Tidy up new UTF-8 code and make it more generic.nicm2020-05-251-2/+2
* Do not attempt to divide by zero when working out copy position.nicm2020-05-251-2/+2
* Instead of storing all UTF-8 characters in the extended cell which meansnicm2020-05-251-6/+24
* Add a mark in copy mode. Set with set-mark command (bound to 'X') bynicm2020-05-161-10/+99
* Do not loop forever when search finds an empty match, GitHub issue 2203.nicm2020-05-161-2/+5
* Fix next-matching-bracket logic, from Chris Barber.nicm2020-05-161-4/+4
* Store and restore cursor position when copy mode is resized, fromnicm2020-05-161-14/+43
* Try to search the entire history first for up to 200 ms so a searchnicm2020-05-161-38/+87
* Do not hoke into struct window_pane from the tty code and instead setnicm2020-05-161-13/+13
* Copy mode search improvements:nicm2020-05-161-16/+134
* Drop having a separate type for style options and make them all strings,nicm2020-05-161-3/+3
* Add extension terminfo(5) capabilities for margins.nicm2020-05-161-1/+2
* Only trim blank lines when the source pane is not the target pane,nicm2020-04-201-9/+12
* Make sure the cursor position is still on screen after we have trimmednicm2020-04-171-3/+11
* Add a copy-command option and change copy-pipe and friends to pipe to itnicm2020-04-171-10/+14
* Don't miss the last line off the screen when writing after resize, fromnicm2020-04-161-2/+2
* Clear the selection and repeat the search on refresh same as resize.nicm2020-04-151-15/+23
* Instead of fixing with the cursor position when the copied screen isnicm2020-04-151-32/+36
* Leave the cursor above empty lines.nicm2020-04-141-4/+2
* Adjust cursor and scroll positions when entering copy mode so that thenicm2020-04-141-4/+12
* Make client -c and -t handling common in cmd-queue.c and try to benicm2020-04-131-2/+3
* Now that copy mode copies the pane content rather than keeping anicm2020-04-101-23/+28
* Fix history-bottom to use the right line when working out the length.nicm2020-04-091-3/+4
* Some minor style nits.nicm2020-04-091-2/+2
* Some unnecessary assignments and unused variables.nicm2020-04-091-2/+1
* Change copy mode to make copy of the pane history so it does not need tonicm2020-04-061-20/+51
* Check previous line rather than an extra line, from Anindya Mukherjee.nicm2020-04-031-6/+3
* Only search the visible part of the history when marking (highlighting)nicm2020-04-021-2/+25
* Add a 10 second timeout to prevent searches taking too much time, fromnicm2020-04-011-6/+40
* Do not go down the regex search path (which is expensive because we neednicm2020-04-011-5/+9
* Use a comparison to check for wrap and avoid an expensive modulus.nicm2020-04-011-3/+4
* Performance improvements for regex searching, most notably:nicm2020-04-011-103/+141
* Add non-regex search variants to avoid the performance cost for peoplenicm2020-03-311-45/+92
* Set end position correctly, GitHub issue 2129 from Anindya Mukherjee.nicm2020-03-211-3/+3
* Fix select-word when not on a word, from Anindya Mukherjee.nicm2020-03-201-6/+7
* Make the mouse_word and mouse_line formats work in copy mode and enablenicm2020-03-201-3/+24
* select_word_end needs to forward no_reset flag or select-word selectsnicm2020-03-201-9/+10
* Another fix to make other-end forget the selection mode, from Anindya Mukherjee.nicm2020-03-201-1/+3
* Add a flag to run a background process in a pty as well, not used fornicm2020-03-191-3/+3
* Various fixes to copying with select-word and select-line, includingnicm2020-03-191-52/+59
* Adjust selection correctly when scrolling, from Anindya Mukherjee.nicm2020-03-161-6/+6