aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
Commit message (Collapse)AuthorAge
* Next is 3.4.Nicholas Marriott2021-09-15
|
* Disable a couple of warnings on macOS.Nicholas Marriott2021-08-25
|
* Pick default-terminal from the first of tmux-256color, tmux, screen-256color,Nicholas Marriott2021-07-14
| | | | screen that is available on the build system.
* Add different command historys for different types of prompts ("command",Nicholas Marriott2021-05-03
| | | | "search" etc). From Anindya Mukherjee.
* Add -Wno-format-y2k.Nicholas Marriott2021-01-18
|
* Makefile.am: add grid-reader.cThomas Adam2020-12-24
| | | | Add grid-reader.c to Makefile.am so it's included for compilation.
* Scaffold for oss-fuzz, from Sergey Nizovtsev.Nicholas Marriott2020-11-09
|
* Add support for Haiku, from David Carlier. GitHub issue 2453.Nicholas Marriott2020-11-09
|
* xterm-keys has been on by default for 5 years and all other modern terminalsNicholas Marriott2020-05-15
| | | | | | use these key sequences by default. Merge the code into the main tty and input tree processing (convering the latter to use a tree rather than a table at the same time) and make the option a no-op.
* Add a customize mode where options may be browsed and changed, includes addingNicholas Marriott2020-05-08
| | | | a brief description of each option. Bound to "C" by default.
* Do not want -O0 by default.Nicholas Marriott2020-04-29
|
* Improve command prompt completion:Nicholas Marriott2020-04-29
| | | | | | | | | | | | - Show a menu with completions if there are multiple. - Don't complete argument stuff (options, layouts) at start of text. - For -t and -s, if there is no : then complete sessions but if there is a :, show a menu of all windows in the session rather than trying to complete the window name which is a bit useless if there are duplicates. Lots of scope for being more sophisticated left here.
* Add XDG_CONFIG home to the configuration search paths.Nicholas Marriott2020-04-23
|
* Merge branch 'obsd-master'Thomas Adam2020-04-20
|
* Merge branch 'obsd-master'Thomas Adam2020-03-26
|
* Fix for version changes.Nicholas Marriott2020-01-28
|
* Merge branch 'obsd-master'Thomas Adam2019-12-12
|
* Add ~/.config/tmux/tmux.conf to the default search path for configuration filesNicholas Marriott2019-12-10
| | | | (in Makefile.am, so portable tmux only).
* Fix "make ctags", GitHub issue 1888.Nicholas Marriott2019-09-08
|
* Merge branch 'obsd-master'Thomas Adam2019-06-14
|
* Add yacc(1) bits.Nicholas Marriott2019-05-23
|
* Merge branch 'obsd-master'Thomas Adam2019-05-23
|
* Merge branch 'obsd-master'Thomas Adam2019-05-10
|
* Merge branch 'obsd-master'Thomas Adam2019-04-27
|
* Remove duplicate entry.Nicholas Marriott2019-04-18
|
* Merge branch 'obsd-master'Thomas Adam2019-04-18
|
* Break new window and pane creation common code from various commands andNicholas Marriott2019-04-07
| | | | window.c into a separate file spawn.c.
* Merge branch 'obsd-master'Thomas Adam2019-03-18
|
* Makefile.am: Add space between -f and argumentThomas Adam2018-09-04
| | | | Required for some (older) aek instance -- namely NetBSD.
* Support for windows larger than the client.Nicholas Marriott2018-08-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds two new options, window-size and default-size, and a new command, resize-window. The force-width and force-height options, and the session_width and session_height formats have been removed. The new window-size option tells tmux how to work out the size of windows: largest means it picks the size of the largest session, smallest the smallest session (similar to the old behaviour) and manual means that it does not automatically resize windows. aggressive-resize modifies the choice of session for largest and smallest as it did before. If a window is in a session attached to a client that is too small, only part of the window is shown. tmux attempts to keep the cursor visible, so the part of the window displayed is changed as the cursor moves (with a small delay, to try and avoid excess redrawing when applications redraw status lines or similar that are not currently visible). Drawing windows which are larger than the client is not as efficient as those which fit, particularly when the cursor moves, so it is recommended to avoid using this on slow machines or networks (set window-size to smallest or manual). The resize-window command can be used to resize a window manually. If it is used, the window-size option is automatically set to manual for the window (undo this with "setw -u window-size"). resize-window works in a similar way to resize-pane (-U -D -L -R -x -y flags) but also has -a and -A flags. -a sets the window to the size of the smallest client (what it would be if window-size was smallest) and -A the largest. For the same behaviour as force-width or force-height, use resize-width -x or -y. If the global window-size option is set to manual, the default-size option is used for new windows. If -x or -y is used with new-session, that sets the default-size option for the new session. The maximum size of a window is 10000x10000. But expect applications to complain and higher memory use if you make a window that big. The minimum size is the size required for the current layout including borders. This change allows some code improvements, most notably that since windows can now never be cropped, that code can be removed from the layout code, and since panes can now never be outside the size of the window, window_pane_visible can be removed.
* +README.ja.Nicholas Marriott2018-07-04
|
* Merge branch 'obsd-master'Thomas Adam2017-07-12
| | | | | | | | Conflicts: cmd-pipe-pane.c proc.c tmux.c window.c
* Move FAQ online and do not ship TODO.Nicholas Marriott2017-06-08
|
* Merge branch 'obsd-master'Thomas Adam2017-05-31
| | | | | | | Conflicts: Makefile.am cfg.c server-client.c
* Fix after mergeThomas Adam2017-04-21
|
* Merge branch 'obsd-master'Thomas Adam2017-04-21
| | | | | | Conflicts: Makefile.am pty.c
* Turn on debug if $VERSION is master rather than commenting and uncommenting.Nicholas Marriott2017-04-20
|
* Remove coverage and profile flags.Nicholas Marriott2017-03-22
|
* Can shorten these by using LIBOBJ.Nicholas Marriott2017-03-22
|
* DEFS -> AM_CPPFLAGS.Nicholas Marriott2017-03-22
|
* Should not need -D_POSIX_PTHREAD_SEMANTICS.Nicholas Marriott2017-03-22
|
* Use AC_USE_SYSTEM_EXTENSIONS and explicitly check for daemon() in headers.Nicholas Marriott2017-03-22
|
* Compat code for strndup and strnlen.Nicholas Marriott2017-03-09
|
* Solaris fixes, mostly from Dagobert Michelsen.Nicholas Marriott2017-03-09
|
* Reflect OBSD Makefile changes in Makefile.amThomas Adam2017-02-21
|
* Hide or fix some warnings.Nicholas Marriott2017-02-15
|
* Bad merge.Nicholas Marriott2017-01-25
|
* Merge branch 'obsd-master'Thomas Adam2017-01-23
| | | | | | Conflicts: Makefile tmux.c
* Add b64_pton as well.Nicholas Marriott2017-01-22
|
* Put AM_* back, but this time do a dance in configure.ac so that we can keepNicholas Marriott2016-10-19
| | | | using CFLAGS for the tests.