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