- cd692b5 Add an ACL list for users connecting to the tmux socket. Users may be by nicm · 2 years, 6 months ago
- 768fb90 Keep -? as usage. by nicm · 3 years, 2 months ago
- daec63e Replace %% in command lists (by copying them) for template arguments , by nicm · 3 years, 3 months ago
- 03d173c Validate command argument types (string or command list) and give more by nicm · 3 years, 3 months ago
- 326d2ef Pass typed arguments out of the parser into the arguments list and let by nicm · 3 years, 3 months ago
- 68cacae Remove some members of struct cmd which are no longer used. by nicm · 3 years, 3 months ago
- c286fbd Preserve command group when moving temporary list to current list being buit. by nicm · 3 years, 3 months ago
- d371764 Wrap command argument definitions in their own struct. by nicm · 3 years, 3 months ago
- 5f32b7d Hide struct args behind a couple of accessor functions. by nicm · 3 years, 3 months ago
- de94a34 Add a couple of const and fix some warnings. by nicm · 3 years, 3 months ago
- 8661176 Add different command historys for different types of prompts by nicm · 3 years, 6 months ago
- 2a9bdb7 Replace TAILQ concatenation loop with TAILQ_CONCAT by bket · 4 years, 5 months ago
- b3782d2 Instead of using a custom parse function to process {}, treat it as a by nicm · 4 years, 6 months ago
- d67245c Add a customize mode where keys and options may be browsed and changed, by nicm · 4 years, 6 months ago
- 34804f2 When parsing strings, put all commands in one group even if there are by nicm · 4 years, 7 months ago
- 3f86d6d When adding a list of commands to the queue, instead of automatically by nicm · 4 years, 7 months ago
- c20eb0c Make struct cmd local to cmd.c and move it out of tmux.h. by nicm · 4 years, 7 months ago
- 8a838b0 Add support for overlay popup boxes to show text or output temporarily by nicm · 4 years, 8 months ago
- 1870cc7 Add ~ to quoted characters for %%%, reported by tb@. by nicm · 4 years, 11 months ago
- f4c7141 Do not lazily use BUFSIZ for "I don't care what size" when building by nicm · 5 years ago
- 7ce8135 It is not longer necessary to double-escape ; in %%%, problem reported by nicm · 5 years ago
- ddf53d6 Correctly adjust mouse position if the status line is at the top and by nicm · 5 years ago
- d7586d3 Use client name when logging command queue. by nicm · 6 years ago
- 930245d Make cmd_log_argv take a printf-like format for the prefix. by nicm · 6 years ago
- 723010b Replace the split parser code (cfg.c and cmd-string.c) with a single by nicm · 6 years ago
- 6dcca5f Add support for simple menus usable with mouse or keyboard. New command by nicm · 6 years ago
- a384245 Adjust how mouse targets are found so they always have a session, window 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
- 2d65bbd options_array_item_value cannot return NULL. by nicm · 6 years ago
- 772b3b7 Indicate an array option with a flag rather than a special type so that by nicm · 6 years ago
- ce6be7a Make array options a sparse tree instead of an array of char * and by nicm · 6 years ago
- 6469953 Support for windows larger than visible on the attached client. This has by nicm · 6 years ago
- d6ff630 Log command arguments. by nicm · 6 years ago
- aad4e4d Rewrite of choose mode, both to simplify and tidy the code and to add by nicm · 7 years ago
- ee45a8a Get rid of the extra layer of flags and cmd_prepare() and just store the by nicm · 8 years ago
- efaf4c1 Make the cmd_find_* functions more obvious when looking for a client, by nicm · 8 years ago
- 126d364 server-info can become an alias rather than a command. by nicm · 8 years ago
- ef15b41 Revert WIP parts of previous I didn't mean to commit yet. by nicm · 8 years ago
- 68db958 getopt() has a struct option so just return to using options_entry. by nicm · 8 years ago
- aa4de2d Need to escape ; twice because the command list parser will eat one, by nicm · 8 years ago
- 5ea7a00 Quote backslash as well for %%%. by nicm · 8 years ago
- 461217d Incremental search in copy mode (on for emacs keys by default) - much by nicm · 8 years ago
- 70ba3c1 Fix the prefer unattached session behaviour of by nicm · 8 years ago
- 382e09b Make an empty state on error rather than leaving something partially by nicm · 8 years ago
- 8084a2c Add %%% to substitute with quotes escaped (convert " to \"). Use this 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
- 4d9e6ea Some improvements and bug fixes for hooks: by nicm · 8 years ago
- b4f95c4 Allow cmd_mouse_at return arguments to be NULL. by nicm · 8 years ago
- f0239a8 Remove some more unused variables, and use RB_FOREACH_SAFE in by nicm · 9 years ago
- b5b5221 Split out getting the current state from the target search so it can be by nicm · 9 years ago
- 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
- d5999f8 Use cmd_find_clear_state instead of an extra function doing the same. by nicm · 9 years ago
- a3129fd Instead of combined flags for -c, -s, -t, split into different sets by nicm · 9 years ago
- ecfeee2 Use member names in cmd_entry definitions so I stop getting confused by nicm · 9 years ago
- 899bee0 Actually I thought cmd_get_state_client was unnecessary but it will be needed. by nicm · 9 years ago
- 72948d9 -c needs to be able for fail for display-message. by nicm · 9 years ago
- 66d1193 Remove an unnecessary function. by nicm · 9 years ago
- 50f8ead Don't log an error when doing the first check for move-window. by nicm · 9 years ago
- 9b7697d Change cmd_find_target to use a state struct from the caller. by nicm · 9 years ago
- ff599f4 Remove the cmd_find_{session,window,pane,index} functions (which are by nicm · 9 years ago
- 9d191a6 Move logging into cmd_find_target rather than each function. by nicm · 9 years ago
- 4a4daf1 Instead of every command resolving the target (-t or -s) itself, prepare by nicm · 9 years ago
- d2fb0ef Add hooks infrastructure, basic commands (set-hook, show-hooks) and a by nicm · 9 years ago
- 6a2ca34 Do not set a limit on the length of commands when printing them. by nicm · 9 years ago
- 2a836bc All the cmd_*_entry declarations do not need to be in tmux.h. by nicm · 9 years ago
- 95195f5 Rewrite of the target resolution internals to be simpler and more by nicm · 10 years ago
- 07dfdb9 Make message log a TAILQ. by nicm · 10 years ago
- 6dbd63b Move the functions to convert ids from strings into session.c and window.c. by nicm · 10 years ago
- aeedb46 Convert clients list into a TAILQ. by nicm · 10 years ago
- 3909aff Look up indexes as number before name, makes more sense if windows are by nicm · 10 years ago
- bf635e7 Rewrite of tmux mouse support which was a mess. Instead of having by nicm · 10 years ago
- a27ba6e Add xreallocarray and remove nmemb argument from xrealloc. by nicm · 10 years ago
- a54b005 Support using pane id as part of session or window specifier (so %1 by nicm · 10 years ago
- 304f86c Support ! for last pane. by nicm · 10 years ago
- c5253ad Show an error if cmd_find_session can't find the current session, like by nicm · 10 years ago
- b3e8d44 If multiple arguments are given to new-session, new-window, by nicm · 11 years ago
- f4ffaf5 Just use char ** for argv like normal people, not char *const *. by nicm · 11 years ago
- 14a96df Remove the choose-list command to prepare for some later choose-* work. by nicm · 11 years ago
- 18cb135 Don't write into buffer if no arguments, reported by Filipe Rosset. by nicm · 11 years ago
- 1a0d3cd Allow attach-session -t to accept a window and pane to select them on by nicm · 11 years ago
- c1ccefc We accidentally haven't been using $TMUX to work out the session for a by nicm · 11 years ago
- 6ac7abe Remove now unused cmd_get_default_path. by nicm · 11 years ago
- b822d24 Support -c for new-session, based on code from J Raynor. by nicm · 11 years ago
- 25c430b Reserve space for \0 in cmd_print, from George Nachman. by Nicholas Marriott · 12 years ago
- 673eb16 Sort includes and fix spaces. by Nicholas Marriott · 12 years ago
- 6fee3e9 Rename session idx to session id throughout and add $ prefix to targets by Nicholas Marriott · 12 years ago
- 410a3ab Add a wait-for command which blocks a client on a named channel until it by Nicholas Marriott · 12 years ago
- 20636d9 Add a command queue to standardize and simplify commands that call other by Nicholas Marriott · 12 years ago
- bb8457b Fix error reporting for client commands by adding a flag to by Nicholas Marriott · 12 years ago
- 2243cfb Need to set clients in context before changing their reference count. by Nicholas Marriott · 12 years ago
- d1e6ce2 Add functions to allocate and free command contexts rather than doing it by Nicholas Marriott · 12 years ago
- 51d989f Do not crash when calling choose-tree with a command that changes the mode. by Nicholas Marriott · 12 years ago
- c2e2107 Style nits - return (x) not return x. by Nicholas Marriott · 12 years ago
- 854e8ae Add ^ and $ special command targets to select lowest and highest by Nicholas Marriott · 12 years ago
- 991bfcf Fix session choice so that preferring unattached sessions actually by Nicholas Marriott · 12 years ago
- 42272df Use pgrp of pty fd not pid of immediate child when recovering current by Nicholas Marriott · 12 years ago
- 7263fa3 add cmd-choose-list to allow arbitrary options to be selected. From Thomas Adam. by Nicholas Marriott · 12 years ago
- ede8312 Make command exec functions return an enum rather than -1/0/1 values and by Nicholas Marriott · 12 years ago