summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2021-01-22Add rectangle-on and rectangle-off copy mode commands, GitHub isse 2546nicm
from author at will dot party.
2021-01-22Fix some cursor movement commands, from Anindya Mukherjee.nicm
2021-01-20Merge branch 'obsd-master' into masterThomas Adam
2021-01-20Change so that window_flags escapes # automatically which means configsnicm
will not have to change. A new format window_raw_flags contains the old unescaped version.
2021-01-18Merge branch 'obsd-master' into masterThomas Adam
2021-01-18Merge branch 'obsd-master' into masterThomas Adam
2021-01-18Add -Wno-format-y2k.Nicholas Marriott
2021-01-18Hide some warnings on newer GCC versions, GitHUb issue 2525.nicm
2021-01-18Extra result message.Nicholas Marriott
2021-01-18There is no need to clear every line entirely before drawing to it, thisnicm
means moving the cursor and messes up wrapping. Better to just clear the sections that aren't written over. GitHub issue 2537.
2021-01-17PKG_CHECK_MODULES needs to be separate.Nicholas Marriott
2021-01-17Show config.log on failure.Nicholas Marriott
2021-01-17Revert "Set CFLAGS also."Nicholas Marriott
This reverts commit 032723c8740710cd34bdf6e7a0124f8fb18f6d70.
2021-01-17Set CFLAGS also.Nicholas Marriott
2021-01-17Fix yes/no for b64_ntop check.Nicholas Marriott
2021-01-17Merge branch 'obsd-master' into masterThomas Adam
2021-01-17Fix SEARCH_LIBS.Nicholas Marriott
2021-01-17+compat.hNicholas Marriott
2021-01-17Look for libevent2 differently from libevent for platforms with both.Nicholas Marriott
2021-01-17Add -N flag to never start server even if command would normally do so,nicm
GitHub issue 2523.
2021-01-08Merge branch 'obsd-master' into masterThomas Adam
2021-01-08Missed from last commit.nicm
2021-01-08Merge branch 'obsd-master' into masterThomas Adam
2021-01-08With incremental search, start empty and only repeat the previous searchnicm
if the user tries to search again with an empty prompt. This matches emacs behaviour more closely.
2021-01-06Merge branch 'obsd-master' into masterThomas Adam
2021-01-06Insert joined pane before the target pane with -b, like for split. Fromnicm
Takeshi Banse.
2021-01-06Remove unused variable, from Ben Boeckel.nicm
2021-01-04Merge branch 'obsd-master' into masterThomas Adam
2021-01-04Add a variant of remain-on-exit that only keeps the pane if the programnicm
failed, GitHub issue 2513.
2021-01-01Merge branch 'obsd-master' into masterThomas Adam
2021-01-01Add a -C flag to run-shell to use a tmux command rather than a shell command.nicm
2020-12-30Merge branch 'obsd-master' into masterThomas Adam
2020-12-30Use right format for session loop, GitHub issue 2519.nicm
2020-12-28Merge branch 'obsd-master' into masterThomas Adam
2020-12-28Do not list user options with show-hooks.nicm
2020-12-28Remove current match indicator which can't work anymore since we onlynicm
search the visible region. From Anindya Mukherjee, GitHub issue 2508.
2020-12-24Makefile.am: add grid-reader.cThomas Adam
Add grid-reader.c to Makefile.am so it's included for compilation.
2020-12-24Merge branch 'obsd-master' into masterThomas Adam
2020-12-22Break cursor movement in grid into a common set of functions that cannicm
handle line wrapping and so on in one place and use them for the obvious copy mode commands. From Anindya Mukherjee.
2020-12-15Merge branch 'obsd-master' into masterThomas Adam
2020-12-15Make synchronize-panes a pane option and add -U flag to set-option tonicm
unset an option on all panes. GitHub issue 2491 from Rostislav Nesin.
2020-12-07Include compat.h after system headers, GitHub issue 2492.Nicholas Marriott
2020-12-07Merge branch 'obsd-master' into masterThomas Adam
2020-12-07Do not include the status line size when working out the character fornicm
the pane status line. GitHub issue 2493.
2020-12-07Do not clear the wrapped flag on linefeeds if it is already set - thisnicm
does not appear to be what applications want. GitHub issue 2478 and 2414.
2020-12-03Merge branch 'obsd-master' into masterThomas Adam
2020-12-03Redraw any visible modes when status line changes so that formats likenicm
the pane title are updated. GitHub issue 2487. Also a man page fix from jmc.
2020-12-01Merge branch 'obsd-master' into masterThomas Adam
2020-12-01Leave newlines inside multiline quotes.nicm
2020-12-01Merge branch 'obsd-master' into masterThomas Adam