summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2021-06-10Include modifiers when looking up an individual key.nicm
2021-06-10Change how extended ctrl keys are processed to fix C-S-Tab and C-;.nicm
2021-06-103.2a version.Nicholas Marriott
2021-06-10Update CHANGES.Nicholas Marriott
2021-06-10Do not clear region based on current cursor position, this is notnicm
necessary anymore and causes problems, GitHub issue 2735.
2021-06-10Feature for the mouse since FreeBSD termcap does not have kmous.nicm
2021-06-10Fix rectangle selection, from Anindya Mukherjee, GitHub issue 2709.nicm
2021-06-10Bump FORMAT_LOOOP_LIMIT and add a log message when hit, GitHub issue 2715.nicm
2021-06-10Fix <= operator.nicm
2021-06-10More accurate vi(1) word navigation in copy mode and on the status line.nicm
This changes the meaning of the word-separators option - setting it to the empty string is equivalent to the previous behavior. From Will Noble in GitHub issue 2693.
2021-06-10Do not use NULL client when source-file finishes, GitHub issue 2707.nicm
2021-06-10Add -F for command-prompt and use it to fix "Rename" on the window menu,nicm
GitHub issue 2699.
2021-06-10Do not expand the file given with -f so it can contain :s.nicm
2021-06-10Remove old shift function keys which interfere with xterm keys now.nicm
GitHub issue 2696.
2021-06-10Fire check callback after cleaning up event so it does not get stuck,nicm
from Jeongho Jang in GitHub issue 2695.
2021-06-10Add different command historys for different types of promptsnicm
("command", "search" etc). From Anindya Mukherjee.
2021-06-10Fix warnings, from Jan Tache in GitHub issue 2692.nicm
2021-06-10Improve logging of screen mode changes.nicm
2021-06-10Move "special" keys into the Unicode PUA rather than making them top bitnicm
set, some compilers do not allow enums that are larger than int. GitHub issue 2673.
2021-06-10Change cursor style handling so tmux understands which sequences containnicm
blinking and sets the flag appropriately, means that it works whether cnorm disables blinking or not. GitHub issue 2682.
2021-06-10Change resize timers and flags into one timer and a queue which isnicm
simpler and fixes problems with vim when resized multiple times. GitHub issue 2677.
2021-06-10Do not count client (and crash) if no window.nicm
2021-06-10Three changes to fix problems with xterm in VT340 mode, reported bynicm
Thomas Sattler. 1) Do not include the DECSLRM or DECFRA features for xterm; they will be added instead if secondary DA responds as VT420 (this happens already). 2) Set or reset the individual flags after terminal-overrides is applied, so the user can properly disable them. 3) Add a capability for DECFRA ("Rect").
2021-06-10Include current client in size calculation for new sessions, GitHubnicm
issue 2662.
2021-06-10Add an "always" value to the extended-keys option to always forwardnicm
these keys to applications inside tmux.
2021-06-10back-to-indentation fixes, from Anindya Mukherjee.nicm
2021-06-10Fix display-menu -xR, from Alexis Hildebrandt.nicm
2021-06-10Adjust latest client when a client detaches, GitHub issue 2657.nicm
2021-06-10Add another couple of keys needed for extended keys, GitHub issue 2658.nicm
Handle modifier 9 as Meta, GitHub issue 2647.
2021-06-10Fix empty format strings, from Jean-Philippe Menil.Nicholas Marriott
2021-06-09Do not clear region based on current cursor position, this is not necessaryNicholas Marriott
anymore and causes problems, GitHub issue 2735.
2021-06-08Feature for the mouse since FreeBSD termcap does not have kmous.Nicholas Marriott
2021-05-19Fix rectangle selection, from Anindya Mukherjee, GitHub issue 2709.Nicholas Marriott
2021-05-19Bump FORMAT_LOOOP_LIMIT and add a log message when hit, GitHub issue 2715.Nicholas Marriott
2021-05-17Er, fix it properly.Nicholas Marriott
2021-05-17Fix <= operator.Nicholas Marriott
2021-05-13More accurate vi(1) word navigation in copy mode and on the status line. ThisNicholas Marriott
changes the meaning of the word-separators option - setting it to the empty string is equivalent to the previous behavior. From Will Noble in GitHub issue 2693.
2021-05-12Do not use NULL client when source-file finishes, GitHub issue 2707.Nicholas Marriott
2021-05-10Add -F for command-prompt and use it to fix "Rename" on the window menu, GitHubNicholas Marriott
issue 2699.
2021-05-10Do not expand the file given with -f so it can contain :s.Nicholas Marriott
2021-05-10Looks like evports on SunOS are broken also, disable them. GitHub issue 2702.Nicholas Marriott
2021-05-05Remove old shift function keys which interfere with xterm keys now. GitHubNicholas Marriott
issue 2696.
2021-05-03Fire check callback after cleaning up event so it does not get stuck, fromNicholas Marriott
Jeongho Jang in GitHub issue 2695.
2021-05-03Add different command historys for different types of prompts ("command",Nicholas Marriott
"search" etc). From Anindya Mukherjee.
2021-05-03Fix warnings, from Jan Tache in GitHub issue 2692.Nicholas Marriott
2021-04-30Improve logging of screen mode changes.Nicholas Marriott
2021-04-28Ctrl keys are < 0x7f, not Unicode.Nicholas Marriott
2021-04-28Move "special" keys into the Unicode PUA rather than making them high a top bitNicholas Marriott
set, some compilers cannot handle enums that are larger than int. GitHub issue 2673.
2021-04-28Change cursor style handling so tmux understands which sequences containNicholas Marriott
blinking and sets the flag appropriately, means that it works whether cnorm disables blinking or not. GitHub issue 2682.
2021-04-28Change resize timers and flags into one timer and a queue to fix problems withNicholas Marriott
vim when resized multiple times. GitHub issue 2677.