Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Don't miss the last line off the screen when writing after resize, from | nicm | 2020-04-16 |
| | | | | Anindya Mukherjee. | ||
* | Clear the selection and repeat the search on refresh same as resize. | nicm | 2020-04-15 |
| | |||
* | Instead of fixing with the cursor position when the copied screen is | nicm | 2020-04-15 |
| | | | | | | created, resize it and let the resize/reflow code fix it up and return it. Solves various problems with cursor position and resizing when in copy mode. With Anindya Mukherjee. | ||
* | Leave the cursor above empty lines. | nicm | 2020-04-14 |
| | |||
* | Adjust cursor and scroll positions when entering copy mode so that the | nicm | 2020-04-14 |
| | | | | | cursor line is still visible even if the source and target panes are different heights. | ||
* | Make client -c and -t handling common in cmd-queue.c and try to be | nicm | 2020-04-13 |
| | | | | | clearer about whether the client is the target client (must have a session) or not. | ||
* | Now that copy mode copies the pane content rather than keeping a | nicm | 2020-04-10 |
| | | | | | | | | | | reference to it, it isn't necessary that the pane in copy mode is the same as the one copying from. Add a -s flag to copy-mode to specify a different pane for the source content. This means it is possible to view two places in a pane's history at the same time in different panes, or copy from a pane's history into an editor or shell in the same pane. From Anindya Mukherjee. | ||
* | Fix history-bottom to use the right line when working out the length. | nicm | 2020-04-09 |
| | |||
* | Some minor style nits. | nicm | 2020-04-09 |
| | |||
* | Some unnecessary assignments and unused variables. | nicm | 2020-04-09 |
| | |||
* | Change copy mode to make copy of the pane history so it does not need to | nicm | 2020-04-06 |
| | | | | | | freeze updates (which does not play nicely with some applications, a longstanding problem) and will allow some other changes later. From Anindya Mukherjee. | ||
* | Check previous line rather than an extra line, from Anindya Mukherjee. | nicm | 2020-04-03 |
| | |||
* | Only search the visible part of the history when marking (highlighting) | nicm | 2020-04-02 |
| | | | | search terms, much faster than searching the whole history. | ||
* | Add a 10 second timeout to prevent searches taking too much time, from | nicm | 2020-04-01 |
| | | | | Anindya Mukherjee. | ||
* | Do not go down the regex search path (which is expensive because we need | nicm | 2020-04-01 |
| | | | | | | to convert the grid data into a string for regexec and reverse it to find the grid position) if the search string does not contain any regex special characters. | ||
* | Use a comparison to check for wrap and avoid an expensive modulus. | nicm | 2020-04-01 |
| | |||
* | Performance improvements for regex searching, most notably: | nicm | 2020-04-01 |
| | | | | | | | | | | | | | - Use the grid data directly instead of copying it. - Special case the most typical one byte character cells and use memcmp for multiple bytes instead of a handrolled loop. - Hoist regcomp out of the loop into the calling functions. GitHub issue 2143. Also a man page from from jmc@. | ||
* | Do not go down the regex search path (which is expensive because we need | nicm | 2020-04-01 |
| | | | | | | to convert the grid data into a string for regexec and reverse it to find the grid position) if the search string does not contain any regex special characters. | ||
* | Use a comparison to check for wrap and avoid an expensive modulus. | nicm | 2020-04-01 |
| | |||
* | Performance improvements for regex searching, most notably: | nicm | 2020-04-01 |
| | | | | | | | | | | | | | - Use the grid data directly instead of copying it. - Special case the most typical one byte character cells and use memcmp for multiple bytes instead of a handrolled loop. - Hoist regcomp out of the loop into the calling functions. GitHub issue 2143. Also a man page from from jmc@. | ||
* | Add non-regex search variants to avoid the performance cost for people | nicm | 2020-03-31 |
| | | | | with large histories or long lines. | ||
* | Set end position correctly, GitHub issue 2129 from Anindya Mukherjee. | nicm | 2020-03-21 |
| | |||
* | Fix select-word when not on a word, from Anindya Mukherjee. | nicm | 2020-03-20 |
| | |||
* | Make the mouse_word and mouse_line formats work in copy mode and enable | nicm | 2020-03-20 |
| | | | | the default pane menu in copy mode. | ||
* | select_word_end needs to forward no_reset flag or select-word selects | nicm | 2020-03-20 |
| | | | | too much. | ||
* | Another fix to make other-end forget the selection mode, from Anindya Mukherjee. | nicm | 2020-03-20 |
| | |||
* | Add a flag to run a background process in a pty as well, not used for | nicm | 2020-03-19 |
| | | | | anything yet. | ||
* | Various fixes to copying with select-word and select-line, including | nicm | 2020-03-19 |
| | | | | | making it consistent with keys and with the mouse, and using other-end. From Anindya Mukherjee. | ||
* | Adjust selection correctly when scrolling, from Anindya Mukherjee. | nicm | 2020-03-16 |
| | |||
* | Reset selection flag when clearing or stopping selection, from Mark | nicm | 2020-03-15 |
| | | | | Kelly. | ||
* | Add a copy-mode -H flag to hide the position marker in the top right. | nicm | 2020-03-12 |
| | |||
* | Start a new selection if outside the existing selection after a word has | nicm | 2020-03-11 |
| | | | | been selected. From Anindya Mukherjee. | ||
* | Change mouse selection so that after selecting a word, dragging selects | nicm | 2020-02-24 |
| | | | | only words and similar for lines. From Anindya Mukherjee. | ||
* | Add selection_active format for when the selection is present but not | nicm | 2020-02-20 |
| | | | | moving with the cursor, from Mark Kelly. | ||
* | Do not jump to next word end if already on a word end when selecting a | nicm | 2020-02-13 |
| | | | | | word. Fixes select-word with single character words and vi(1) keys. From Mark Kelly. | ||
* | Support regex search in copy mode, from Anindya Mukherjee in GitHub | nicm | 2019-12-27 |
| | | | | issue 2038. | ||
* | Tweak previous to check the wrapped flag and stop if not set. | nicm | 2019-12-11 |
| | |||
* | Allow search across wrapped lines and fix some inconsistencies in how th | nicm | 2019-12-11 |
| | | | | position is represented, GitHub issue 2014 from Anindya Mukherjee. | ||
* | Don't use motion flag uninitialized. | nicm | 2019-11-25 |
| | |||
* | Fix a warning in previous. | nicm | 2019-11-25 |
| | |||
* | Do not clear search marks on cursor movement with vi(1) keys, from Eric | nicm | 2019-11-25 |
| | | | | Pruitt in GitHub issue 1985. | ||
* | Add -F flag to send-keys to expand formats in search-backward and | nicm | 2019-11-07 |
| | | | | | forward copy mode commands, this makes it easier to use the cursor_word and cursor_line formats. From Anindya Mukherjee in GitHub issue 1964. | ||
* | Use the existing code in format.c to add foramts for word and line at | nicm | 2019-10-23 |
| | | | | cursor position in copy mode, from Anindya Mukherjee. | ||
* | Add formats for cursor and selection position in copy mode, from Jason Felice. | nicm | 2019-10-19 |
| | |||
* | Set up format tree for %if, GitHub issue 1896. | nicm | 2019-09-10 |
| | |||
* | Add cursor-down-and-cancel, from Mark Kelly. | nicm | 2019-09-09 |
| | |||
* | Default to previous search string for search-forward and | nicm | 2019-08-14 |
| | | | | search-backward, from Leah Neukirchen. | ||
* | Correctly wrap search in copy mode even if at the very top left, GitHub | nicm | 2019-08-01 |
| | | | | issue 1845. | ||
* | Select the correct word for select-word when already at the start of a | nicm | 2019-08-01 |
| | | | | word, GitHub issue 1820. | ||
* | Clear search marks before resize, GitHub issue 1823. | nicm | 2019-07-08 |
| |