summaryrefslogtreecommitdiffstats
path: root/window-copy.c
AgeCommit message (Expand)Author
2020-05-16Do not loop forever when search finds an empty match, GitHub issue 2203.nicm
2020-05-16Fix next-matching-bracket logic, from Chris Barber.nicm
2020-05-16Store and restore cursor position when copy mode is resized, fromnicm
2020-05-16Try to search the entire history first for up to 200 ms so a searchnicm
2020-05-16Do not hoke into struct window_pane from the tty code and instead setnicm
2020-05-16Copy mode search improvements:nicm
2020-05-16Drop having a separate type for style options and make them all strings,nicm
2020-05-16Add extension terminfo(5) capabilities for margins.nicm
2020-04-20Only trim blank lines when the source pane is not the target pane,nicm
2020-04-17Make sure the cursor position is still on screen after we have trimmednicm
2020-04-17Add a copy-command option and change copy-pipe and friends to pipe to itnicm
2020-04-16Don't miss the last line off the screen when writing after resize, fromnicm
2020-04-15Clear the selection and repeat the search on refresh same as resize.nicm
2020-04-15Instead of fixing with the cursor position when the copied screen isnicm
2020-04-14Leave the cursor above empty lines.nicm
2020-04-14Adjust cursor and scroll positions when entering copy mode so that thenicm
2020-04-13Make client -c and -t handling common in cmd-queue.c and try to benicm
2020-04-10Now that copy mode copies the pane content rather than keeping anicm
2020-04-09Fix history-bottom to use the right line when working out the length.nicm
2020-04-09Some minor style nits.nicm
2020-04-09Some unnecessary assignments and unused variables.nicm
2020-04-06Change copy mode to make copy of the pane history so it does not need tonicm
2020-04-03Check previous line rather than an extra line, from Anindya Mukherjee.nicm
2020-04-02Only search the visible part of the history when marking (highlighting)nicm
2020-04-01Add a 10 second timeout to prevent searches taking too much time, fromnicm
2020-04-01Do not go down the regex search path (which is expensive because we neednicm
2020-04-01Use a comparison to check for wrap and avoid an expensive modulus.nicm
2020-04-01Performance improvements for regex searching, most notably:nicm
2020-04-01Do not go down the regex search path (which is expensive because we neednicm
2020-04-01Use a comparison to check for wrap and avoid an expensive modulus.nicm
2020-04-01Performance improvements for regex searching, most notably:nicm
2020-03-31Add non-regex search variants to avoid the performance cost for peoplenicm
2020-03-21Set end position correctly, GitHub issue 2129 from Anindya Mukherjee.nicm
2020-03-20Fix select-word when not on a word, from Anindya Mukherjee.nicm
2020-03-20Make the mouse_word and mouse_line formats work in copy mode and enablenicm
2020-03-20select_word_end needs to forward no_reset flag or select-word selectsnicm
2020-03-20Another fix to make other-end forget the selection mode, from Anindya Mukherjee.nicm
2020-03-19Add a flag to run a background process in a pty as well, not used fornicm
2020-03-19Various fixes to copying with select-word and select-line, includingnicm
2020-03-16Adjust selection correctly when scrolling, from Anindya Mukherjee.nicm
2020-03-15Reset selection flag when clearing or stopping selection, from Marknicm
2020-03-12Add a copy-mode -H flag to hide the position marker in the top right.nicm
2020-03-11Start a new selection if outside the existing selection after a word hasnicm
2020-02-24Change mouse selection so that after selecting a word, dragging selectsnicm
2020-02-20Add selection_active format for when the selection is present but notnicm
2020-02-13Do not jump to next word end if already on a word end when selecting anicm
2019-12-27Support regex search in copy mode, from Anindya Mukherjee in GitHubnicm
2019-12-11Tweak previous to check the wrapped flag and stop if not set.nicm
2019-12-11Allow search across wrapped lines and fix some inconsistencies in how thnicm
2019-11-25Don't use motion flag uninitialized.nicm