| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Reset selection flag when clearing or stopping selection, from Mark | 2020-03-15 | 1 | -1/+4 | ||
| | | | | | Kelly. | |||||
| * | Add a copy-mode -H flag to hide the position marker in the top right. | 2020-03-12 | 1 | -2/+4 | ||
| | | ||||||
| * | Start a new selection if outside the existing selection after a word has | 2020-03-11 | 1 | -2/+5 | ||
| | | | | | been selected. From Anindya Mukherjee. | |||||
| * | Change mouse selection so that after selecting a word, dragging selects | 2020-02-24 | 1 | -18/+244 | ||
| | | | | | only words and similar for lines. From Anindya Mukherjee. | |||||
| * | Add selection_active format for when the selection is present but not | 2020-02-20 | 1 | -2/+5 | ||
| | | | | | moving with the cursor, from Mark Kelly. | |||||
| * | Do not jump to next word end if already on a word end when selecting a | 2020-02-13 | 1 | -2/+14 | ||
| | | | | | | 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 | 2019-12-27 | 1 | -38/+359 | ||
| | | | | | issue 2038. | |||||
| * | Tweak previous to check the wrapped flag and stop if not set. | 2019-12-11 | 1 | -5/+13 | ||
| | | ||||||
| * | Allow search across wrapped lines and fix some inconsistencies in how th | 2019-12-11 | 1 | -16/+32 | ||
| | | | | | position is represented, GitHub issue 2014 from Anindya Mukherjee. | |||||
| * | Don't use motion flag uninitialized. | 2019-11-25 | 1 | -2/+2 | ||
| | | ||||||
| * | Fix a warning in previous. | 2019-11-25 | 1 | -2/+2 | ||
| | | ||||||
| * | Do not clear search marks on cursor movement with vi(1) keys, from Eric | 2019-11-25 | 1 | -66/+75 | ||
| | | | | | Pruitt in GitHub issue 1985. | |||||
| * | Add -F flag to send-keys to expand formats in search-backward and | 2019-11-07 | 1 | -5/+29 | ||
| | | | | | | 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 | 2019-10-23 | 1 | -1/+14 | ||
| | | | | | cursor position in copy mode, from Anindya Mukherjee. | |||||
| * | Add formats for cursor and selection position in copy mode, from Jason Felice. | 2019-10-19 | 1 | -2/+12 | ||
| | | ||||||
| * | Set up format tree for %if, GitHub issue 1896. | 2019-09-10 | 1 | -2/+1 | ||
| | | ||||||
| * | Add cursor-down-and-cancel, from Mark Kelly. | 2019-09-09 | 1 | -1/+18 | ||
| | | ||||||
| * | Default to previous search string for search-forward and | 2019-08-14 | 1 | -11/+21 | ||
| | | | | | search-backward, from Leah Neukirchen. | |||||
| * | Revert a change I did not mean to commit yet. | 2019-08-14 | 1 | -8/+7 | ||
| | | ||||||
| * | Add -Z flag to rotate-window, select-pane, swap-pane, switch-client to | 2019-08-14 | 1 | -7/+8 | ||
| | | | | | preserve zoomed state. GitHub issue 1839. | |||||
| * | Correctly wrap search in copy mode even if at the very top left, GitHub | 2019-08-01 | 1 | -14/+22 | ||
| | | | | | issue 1845. | |||||
| * | Select the correct word for select-word when already at the start of a | 2019-08-01 | 1 | -26/+28 | ||
| | | | | | word, GitHub issue 1820. | |||||
| * | Clear search marks before resize, GitHub issue 1823. | 2019-07-08 | 1 | -2/+5 | ||
| | | ||||||
| * | Do not use uninitialized buffer name. | 2019-07-05 | 1 | -2/+2 | ||
| | | ||||||
| * | Set the cursor x at the same time as changing the y or the end of line | 2019-06-13 | 1 | -5/+5 | ||
| | | | | | marker may not be redrawn. | |||||
| * | Need to increment the argument to skip the prefix earlier, fixes | 2019-06-05 | 1 | -9/+9 | ||
| | | | | | | repeated incremental search in copy mode, reported by Kaushal Modi in GitHub issue 1780. | |||||
| * | Add formats for word and line under the mouse and use them to add some | 2019-05-26 | 1 | -38/+3 | ||
| | | | | | items to the pane menu. | |||||
| * | Fix dragging when in view mode rather than copy mode, GitHub issue 1740 | 2019-05-15 | 1 | -5/+13 | ||
| | | | | | from Brad Town. | |||||
| * | Fix some indentation and dead assignments. | 2019-05-12 | 1 | -4/+1 | ||
| | | ||||||
| * | Adjust the same bit to adjust the selection for history-top and | 2019-05-07 | 1 | -3/+13 | ||
| | | | | | history-bottom as for cursor-up and cursor-down. GitHub issue 1723. | |||||
| * | Do not store the mouse position we calculate as the start of a drag back | 2019-05-03 | 1 | -1/+3 | ||
| | | | | | | into the mouse event that later code uses, it has been adjusted and they should use the original position. GitHub issue 1710. | |||||
| * | Remove unused variable from Thomas Adam. | 2019-05-01 | 1 | -3/+2 | ||
| | | ||||||
| * | Add support for keys to jump between matching brackets - C-M-f and C-M-b | 2019-04-29 | 1 | -2/+223 | ||
| | | | | | | in emacs, % in vi. Suggested by and help from Chris Barber in GitHub issue 1666. | |||||
| * | Automatically scroll if dragging to create a selection with the mouse | 2019-04-25 | 1 | -3/+71 | ||
| | | | | | and the cursor reaches the top or bottom line. | |||||
| * | Add -no-clear variants of copy-selection and copy-pipe which do not | 2019-04-23 | 1 | -35/+30 | ||
| | | | | | | clear the selection after copying. Make copy-pipe clear the selection by default to be consistent with copy-selection. From Avi Halachmi. | |||||
| * | Add an argument to copy commands to set the prefix for the buffer name, | 2019-04-02 | 1 | -39/+104 | ||
| | | | | | allows buffers for different sessions to be named separately. | |||||
| * | Fix stop-selection, from Avi Halachmi. | 2019-03-27 | 1 | -1/+2 | ||
| | | ||||||
| * | Break copy mode commands into individual functions instead of a big load | 2019-03-26 | 1 | -422/+1031 | ||
| | | | | | of if statements. | |||||
| * | DECRC and DECSC apparently need to preserve origin mode as well, based | 2019-03-12 | 1 | -11/+11 | ||
| | | | | | on a fix from Marc Reisner. | |||||
| * | Allow multiple modes to be open in a pane. A stack of open modes is kept | 2019-03-12 | 1 | -27/+36 | ||
| | | | | | | | and the previous restored when the top is exited. If a mode that is already on the stack is entered, the existing instance is moved to the top as the active mode rather than being opened new. | |||||
| * | Make the mode used to view command output (a variant of copy mode) use | 2019-03-08 | 1 | -39/+47 | ||
| | | | | | | its own mode definition struct with a different init function rather than calling special setup functions. | |||||
| * | Do not use window mode entry after free. | 2019-03-08 | 1 | -2/+3 | ||
| | | ||||||
| * | Add a separate mode struct for the active window mode if any. | 2019-03-07 | 1 | -443/+495 | ||
| | | ||||||
| * | Tidy changing the mode into window_copy_init_for_output. | 2019-03-07 | 1 | -1/+7 | ||
| | | ||||||
| * | Make adding mode formats a function pointer as well. | 2019-03-07 | 1 | -15/+14 | ||
| | | ||||||
| * | Pass window into mode functions. | 2018-12-18 | 1 | -3/+4 | ||
| | | ||||||
| * | Handle UTF-8 in word-separators option, GitHub issue 1551. | 2018-11-28 | 1 | -7/+19 | ||
| | | ||||||
| * | It isn't possible to specify buffer name to copy mode commands now, so | 2018-11-08 | 1 | -32/+24 | ||
| | | | | | remove the function argument. | |||||
| * | Do not move the cursor when the mouse wheel is used, GitHub issue 1493. | 2018-10-03 | 1 | -2/+2 | ||
| | | ||||||
| * | Allow panes to be 1 line or column by redrawing instead of using the | 2018-09-25 | 1 | -2/+2 | ||
| | | | | | scroll region, from Soeren Tempel in GitHub issue 1487. | |||||
