summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2022-11-10- sort options; from josiah frentsosjmc
ok nicm - add -N to SYNOPSIS - sort usage()
2022-11-08Fix C-S-Tab without extended keys, from Aaron Jensen.nicm
2022-11-04Unescape the string for the literal operator (l:) so special charactersnicm
work.
2022-11-03If there are no buffers, reset mode as soon as any key pressed. Fixesnicm
crash reported by Gaoyang Zhang in GitHub issue 3373.
2022-11-03Add a -l flag to display-message to disable format expansion, from Aaronnicm
Jensen. GitHub issue 3372.
2022-11-02Instead of always setting the extended flag, set it only when searching.nicm
Allows send-keys to work. From Aaron Jensen.
2022-11-01Add modified Tab key sequences, from Aaron Jensen, GitHub issue 3368.nicm
2022-11-01Use active pane in target window not current window for +/-. GitHubnicm
issue 3370.
2022-10-28Add paste-buffer-deleted notification and fix name of paste-buffer-changed.nicm
2022-10-25Initialize context before testing it.nicm
2022-10-25Fix a memory leak, from Japin Li in GitHub issue 3358.nicm
2022-10-25Do not fire redraw callback if NULL.nicm
2022-10-17Preserve marked pane when renumbering windows.nicm
2022-09-28Add scroll-top and scroll-bottom commands to scroll so cursor is at topnicm
or bottom. From Anindya Mukherjee, GitHub issue 3334.
2022-09-28Add a -T flag to capture-pane to stop at the last used cell instead ofnicm
the full width. Restore the previous behaviour by making it default to off unless -J is used (the only time it matters). Fixes mosh unit tests; GitHub issue 3339.
2022-09-12Don't use options from pane if pane is NULL.nicm
2022-09-10Use correct option name.nicm
2022-09-09Add message-line option to control where message and prompt go, fromnicm
Varun Kumar E in GitHub issue 3324.
2022-08-31Fix window size report, from Vincent Bernat.nicm
2022-08-24Check for NULL returns from bufferevent_new.nicm
2022-08-23Add scroll-middle copy mode command to make cursor line in the middle,nicm
from Varun Kumar E in GitHub issue 3307.
2022-08-15Notify when a paste buffer is deleted, GitHub issue 3302 from Georgenicm
Nachman.
2022-08-15Add a Nobr terminfo capability to tell tmux the terminal does not usenicm
bright colours for bold (makes a difference to how tmux applies palette differences). From Damien Tardy-Panis in GitHub issue 3301.
2022-08-15Add some const, from Markus F X J Oberhumer.nicm
2022-08-15Don't stop at first match when updating environment.nicm
2022-08-11vi(1) Home/End bindings, from Markus F X J Oberhumer.nicm
2022-08-10Fix check of home directory (&& not ||), from Markus F X J Oberhumer,nicm
GitHub issue 3297.
2022-08-04Change g and G to go to top and bottom of menu, GitHub issue 3286.nicm
2022-08-03Do not crash when searching for .* with extremely long lines. Reportednicm
by Torbjorn Lonnemark, GitHub issue 3272.
2022-08-02Add a third state "all" to allow-passthrough to work even in invisiblenicm
panes, from Sergei Grechanik in GitHub issue 3274.
2022-08-02Fix validation of missing percentage arguments.nicm
2022-08-02-u is no longer equivalent to -TUTF-8 so don't say it is.nicm
2022-07-22Clear marks when the search string changes. From Anindya Mukherjee,nicm
GitHub issue 3255.
2022-07-19Do not ignore the "off" flag when checking if a pane should be stopped,nicm
GitHub issue 3250.
2022-07-19Process modifiers as bits rather than using a switch, from Koichi Murase.nicm
2022-07-19Fix memory leak, from Gabriel Souza Franco.nicm
2022-07-06Show config errors on attach if they were not shown when the sessionnicm
was created.
2022-07-06Remove debugging code.nicm
2022-07-06Defer reading from control client until the command line command hasnicm
completed.
2022-07-06Mention whether time is creation/activity for sort orders.nicm
2022-07-06Support hyperlinks with capture-pane -e and add a mouse_hyperlinknicm
format, GitHub issue 3247 from Jeff Chiang.
2022-07-04Sort panes by index not by ID, GitHub issue 3249.nicm
2022-06-30Add support for OSC 8 hyperlinks (a VTE extension now supported by othernicm
terminals such as iTerm2). Originally written by me then extended and completed by first Will Noble and later Jeff Chiang. GitHub issues 911, 2621, 2890, 3240.
2022-06-27Tweak previous - find end of style correctly.nicm
2022-06-27Do not expand single character format aliases inside #[] since theynicm
interfere with colours. GitHub issue 3239 from Magnus Gross.
2022-06-21Store time lines are scrolled into history and display in copy mode.nicm
2022-06-20Do not display configuration file errors in a pane when in control mode,nicm
instead report them with a %config-error notification. GitHub issue 3193.
2022-06-17Check cursor options when a pane is created, not just when they are changed.nicm
2022-06-16Keep cursor on selected item on menu (useful for blind people), GitHubnicm
issue 3225.
2022-06-14kf* terminfo capabilities are poorly defined and rxvt uses them in anicm
different way from xterm, so add a feature flag for rxvt to make tmux ignore the capabilities and instead rely on its builtin definitions.