- e128c7f Replace the various identical error callbacks with a single one in cmd-queue.c. by nicm · 6 years ago
- 00f19b7 Fix some indentation and dead assignments. by nicm · 6 years ago
- f9682d2 Add a flag to redraw only the overlay, and remove the overlay on resize. by nicm · 6 years ago
- 89db309 Move around the display-panes identify code to make it a bit more by nicm · 6 years ago
- 85a9c2f Treat keys in identify mode (display-panes) specially and handle them by nicm · 6 years ago
- 9f75635 Allow panes to be empty (no command), output can be piped to them with by nicm · 6 years ago
- 4097257 Do not store the mouse position we calculate as the start of a drag back by nicm · 6 years ago
- fc3d85e Fix mouse positioning when the pane is not entirely visible. by nicm · 6 years ago
- 33298d6 Instead of processing keys all together, put them up on the client by nicm · 6 years ago
- f3ab05e Update session activity on focus event, from tafryn at gmail dot com. by nicm · 6 years ago
- d21f8ec Add StatusDefault binding for the mouse on any otherwise unassigned by nicm · 6 years ago
- 517d673 Ignore mouse on status line which are not part of a range, GitHub issue 1649. by nicm · 6 years ago
- 9793138 Extend the #[] style syntax and use that together with previous format by nicm · 6 years ago
- b4f5b99 Tidy and rename some bits of status line code. by nicm · 6 years ago
- 85044a6 Move status line free into its own function. by nicm · 6 years ago
- 10d60fa Store the time in the format tree rather than passing it around. by nicm · 6 years ago
- 1416ceb Accept 0 time as a shorthand for now to format_expand_time. by nicm · 6 years ago
- 3f6bfba Allow multiple modes to be open in a pane. A stack of open modes is kept by nicm · 6 years ago
- f98c66e Add a separate mode struct for the active window mode if any. by nicm · 6 years ago
- 82f0c85 Use starting client cwd in config file, GitHub issue 1606. by nicm · 6 years ago
- bde0224 Pass window into mode functions. by nicm · 6 years ago
- 749f67b evbuffer_new and bufferevent_new can both fail (when malloc fails) and by nicm · 6 years ago
- 0c7f644 If a non-repeating key is used when repeating, it should be treated as by nicm · 6 years ago
- 6469953 Support for windows larger than visible on the attached client. This has by nicm · 6 years ago
- bd9133b Do not check for mouse events on pane borders when zoomed, based on a by nicm · 6 years ago
- f57aa14 Keep any text killed in the command prompt with C-w and yank it with by nicm · 6 years ago
- 55db362 Add StatusLeft and StatusRight mouse key modifiers for the left and by nicm · 6 years ago
- cac4ead Add a flag to force redrawing of the status line even if the content by nicm · 6 years ago
- 88327c7 Add a client redraw-window flag instead of the redraw-all flag and for by nicm · 6 years ago
- bd2896b SESSION_UNATTACHED flag is no longer necessary now we have an attached by nicm · 6 years ago
- 6048b0f Make key trees and some other bits static. by nicm · 6 years ago
- 969af93 When a key isn't in the first table, we need to try the same key again by nicm · 6 years ago
- 0d88f8a Add an "Any" key to run a command if a key is pressed that is not bound by nicm · 6 years ago
- d254293 Add pane focus hooks. by nicm · 6 years ago
- b9a6162 Make server_client_get_cwd used (almost) everywhere we need to work out by nicm · 7 years ago
- 19f3a5c Add a missing client-detached hook when the server shuts down, and do by nicm · 7 years ago
- e97daea Check prefix when retrying so it is checked while repeat flag is by nicm · 7 years ago
- 7f4513e Add struct status_line to hold status line members of struct client, not by nicm · 7 years ago
- b20a00f Report better error from server when socket create fails, GitHub issue 1201. by nicm · 7 years ago
- 2f6935a Infrastructure for drawing status lines of more than one line in height, by nicm · 7 years ago
- 466066c Do not attempt to use TIOCSWINSZ on a -1 file descriptor (possible if by nicm · 7 years ago
- 17cf1b2 Pass flags into cmd_find_from_* to fix prefer-unattached, reported by by nicm · 7 years ago
- c6a8ad2 Add -d flag to display-panes to specify timeout, and make 0 mean no by nicm · 7 years ago
- 2678fe5 Fix redraw defer code in the presence of multiple clients - the timer by nicm · 7 years ago
- d0d42dc proc_send_s now seems unnecessary. by nicm · 7 years ago
- ac7080b Remove xterm flag from key before checking prefix, reported by Peter by nicm · 7 years ago
- 50b27c8 Continue and pass keys through if they are repeated keys, so that the by nicm · 7 years ago
- d60663e Some applications like vi(1) and tmux until 10 minutes or so ago, do not by nicm · 7 years ago
- ea6428a It is not OK to ignore SIGWINCH if SIOCGWINSZ reports the size has by nicm · 7 years ago
- 80c6b48 Because we defer actually resizing applications (calling TIOCSWINSZ) by nicm · 7 years ago
- b95e582 Store a copy of the old status line, will be needed soon for new choose mode. by nicm · 7 years ago
- 8a214b2 Function to count clients. by nicm · 7 years ago
- 31625c2 Line length and spaces to tabs. by nicm · 8 years ago
- 0e3c5eb Insert copy mode bindings at the right place in the command queue. by nicm · 8 years ago
- 3b35daa If the current screen was complex enough, it was possible to make redraw by nicm · 8 years ago
- d52f579 Up to now, tmux sees \033\033[OA as M-Up and since we turned on by nicm · 8 years ago
- 0ccfb61 In order that people can use formats like #D in #() in the status line by nicm · 8 years ago
- 2c0f826 Mouse bindings and hooks set up an initial current state when running a by nicm · 8 years ago
- c8ecbf3 Log error properly when no current state, and some other minor tweaks. by nicm · 8 years ago
- 2ad09ab Key needs to be initialized to zero now it has flags in it. by nicm · 8 years ago
- afa4e3e Add cmd_find_from_winlink_pane and use it in a couple of places, and by nicm · 8 years ago
- 92a77e7 It is annoying that the copy mode key table (or any other key table) by nicm · 8 years ago
- bba5887 Store state shared between multiple commands in the queue in a shared structure. by nicm · 8 years ago
- 51a0dbb Only set up a current target for mouse key bindings. Fixes: by nicm · 8 years ago
- 53fde21 Add a suspend helper function, and do not allow detaching or suspending by nicm · 8 years ago
- fa6deb5 When the data we have buffered to write to a terminal grows beyond a by nicm · 8 years ago
- 8c8ce08 On terminals without DECSLRM, when a pane that is less than the full by nicm · 8 years ago
- 7461c16 Remove a couple of redraw flags that no longer have any effect. by nicm · 8 years ago
- 9b28200 Give each client a name. This defaults to the tty name as before but by nicm · 8 years ago
- 55e73e3 Clear the bracket paste mode when in the command prompt. by nicm · 8 years ago
- bce1dee Move the client identify (display-panes) code into server-client.c. by nicm · 8 years ago
- e340df2 Make source-file look for files relative to the client working directory by nicm · 8 years ago
- b1fa3e2 Break the message storage function into its own function, useful for debugging. by nicm · 8 years ago
- 7475165 Some other tidying bits. by nicm · 8 years ago
- 7d23d01 Add a window or pane id "tag" to each format tree and use it to separate by nicm · 8 years ago
- dd0c814 Implement "all event" (1003) mouse mode but in a way that works. The by nicm · 8 years ago
- 22a5289 Make options_get_string return const string. by nicm · 8 years ago
- 95950bf Add -E to detach-client to exec a command to replace the client instead by nicm · 8 years ago
- 3bb1400 Add some missing special keys to key_string_lookup_key, fix a mouse by nicm · 8 years ago
- a8f3ad4 Make prefix work in all tables (except the prefix table). Users who want by nicm · 8 years ago
- 6f8cedb The mouse valid flag needs to be correct before we fire the dragging by nicm · 8 years ago
- 84319aa If in the middle of a drag, don't use an invalid key, just use by nicm · 8 years ago
- 0d1be2e Fix so that we work out the right pane from mouse events - we were doing by nicm · 8 years ago
- 6de466c For mouse keys, use the mouse pane as the default current pane. by nicm · 8 years ago
- 81f1d62 Do not stop dragging when the wheel is pressed, from Artem Fokin. by nicm · 8 years ago
- c34a79b Turn on margins, with a couple of fixes (only limit to the pane for line by nicm · 8 years ago
- 0ace779 Initial attempt to make use of left and right margins if the terminal by nicm · 8 years ago
- 899e629 Alerts are too slow, so rather than walking all sessions and windows, by nicm · 8 years ago
- 41e633a Use the notify name string instead of going via an enum and change by nicm · 8 years ago
- b342bd0 Mass rename struct cmd_q to struct cmdq_item and related. by nicm · 8 years ago
- ddc4512 Rewrite command queue handling. Each client still has a command queue, by nicm · 8 years ago
- 68bebe1 The repeat prompt in both emacs and vi (and the old one in tmux) doesn't by nicm · 8 years ago
- 85d7afa Support double and triple clicks (they are cumulative, so double is by nicm · 8 years ago
- 76d6d36 Fundamental change to how copy mode key bindings work: by nicm · 8 years ago
- c426e48 Loads more static, except for cmd-*.c and window-*.c. by nicm · 8 years ago
- b8f2dd8 Make the CLIENT_STATUS flag imply that pane status lines are redrawn if by nicm · 8 years ago
- acacb71 Rate limit TIOCSWINSZ on a timer to avoid programs getting hammered with by nicm · 8 years ago
- 325cbe9 Allow a command to be specified to display-panes, similar to by nicm · 8 years ago
- 88bd5b1 tty_client_ready can not be internal to tty.c again. by nicm · 9 years ago
- 0509be0 Add option to include status text in the pane borders. If by nicm · 9 years ago