aboutsummaryrefslogtreecommitdiff
path: root/cmd-generic.c
Commit message (Collapse)AuthorAge
* cmd-generic.c isn't needed anymore due to OpenBSD patchset 829.Tiago Cunha2011-01-07
|
* Sync OpenBSD patchset 829:Tiago Cunha2011-01-07
| | | | | | | | | | | | | | | | | | | | | | Clean up and simplify tmux command argument parsing. Originally, tmux commands were parsed in the client process into a struct with the command data which was then serialised and sent to the server to be executed. The parsing was later moved into the server (an argv was sent from the client), but the parse step and intermediate struct was kept. This change removes that struct and the separate parse step. Argument parsing and printing is now common to all commands (in arguments.c) with each command left with just an optional check function (to validate the arguments at parse time), the exec function and a function to set up any key bindings (renamed from the old init function). This is overall more simple and consistent. There should be no changes to any commands behaviour or syntax although as this touches every command please watch for any unexpected changes.
* Global paste buffers instead of per-session which renders copy-buffer useless.Tiago Cunha2010-12-30
| | | | | As a consequence buffer-limit is now a server option.
* Sync OpenBSD patchset 581:Tiago Cunha2009-12-04
| | | | | | | Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last time now I've configured emacs to make them displayed in really annoying colours...
* Sync OpenBSD patchset 567:Tiago Cunha2009-11-28
| | | | | | Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to the rest to reduce lint output.
* Sync OpenBSD patchset 540:Tiago Cunha2009-11-14
| | | | | Tweak a comment and add some spacing.
* Sync OpenBSD patchset 539:Tiago Cunha2009-11-14
| | | | | | Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in the command entry structs and a couple of functions to check/set the flags.
* Sync OpenBSD patchset 299:Tiago Cunha2009-08-26
| | | | | | Initialise the arg2 pointer properly (also free it when freeing the others). Fixes crashes with J in malloc_options reported by oga.
* Sync from OpenBSD:Nicholas Marriott2009-08-11
| | | | | | | Add flags for 1+2 and 2 arguments to the generic target code, use it for cmd-set-environment/option/window-option and remove the generic options parsing.
* Sync OpenBSD patchset 200:Tiago Cunha2009-07-30
| | | | | | | | | | | | | | | | Merge pane number into the target specification for pane commands. Instead of using -p index, a target pane is now addressed with the normal -t window form but suffixed with a period and a pane index, for example :0.2 or mysess:mywin.1. An unadorned number such as -t 1 is tried as a pane index in the current window, if that fails the same rules are followed as for a target window and the current pane in that window used. As a side-effect this now means that swap-pane can swap panes between different windows. Note that this changes the syntax of the break-pane, clear-history, kill-pane, resize-pane, select-pane and swap-pane commands.
* Sync OpenBSD patchset 181:Tiago Cunha2009-07-28
| | | | | | | | | | | | | | | | | Make all messages sent between the client and server fixed size. This is the first of two changes to make the protocol more resilient and less sensitive to other changes in the code, particularly with commands. The client now packs argv into a buffer and sends it to the server for parsing, rather than doing it itself and sending the parsed command data. As a side-effect this also removes a lot of now-unused command marshalling code. Mixing a server without this change and a client with or vice versa will cause tmux to hang or crash, please ensure that tmux is entirely killed before upgrading.
* Having fixed flags for single-character getopt options is a bit hard toNicholas Marriott2009-07-14
| | | | | | | | | | maintain and is only going to get worse as more are used. So instead, add a new uint64_t member to cmd_entry which is a bitmask of upper and lowercase options accepted by the command. This means new single character options can be used without the need to add it explicitly to the list.
* When pasting, translate \n into \r. This matches xterm and putty's behaviour,Nicholas Marriott2009-07-12
| | | | | | | | and makes emacs happy when pasting into some modes. A new -r (raw) flag to paste-buffer pastes without the translation. From Kalle Olavi Niemitalo, thanks!
* Spacing.Nicholas Marriott2009-05-21
|
* UPPER -> BIG, sort, and bump protocol version.Nicholas Marriott2009-05-21
|
* Space trimmage mega-diff.Nicholas Marriott2009-05-04
|
* A flag missed.Nicholas Marriott2009-04-03
|
* rotate-window command.Nicholas Marriott2009-04-03
|
* Add -a properly.Nicholas Marriott2009-01-23
|
* Support command sequences separated by " ; ". Also clean up command printing.Nicholas Marriott2009-01-18
|
* Rename some flags I'm not happy about.Nicholas Marriott2009-01-14
|
* Commands to resize panes; also a pane generic cmd, not used yet.Nicholas Marriott2009-01-12
|
* save-buffer command, from Tiago Cunha.Nicholas Marriott2009-01-11
|
* Doh. Return the offset not the total.Nicholas Marriott2009-01-11
|
* Trim spaces.Nicholas Marriott2009-01-10
|
* Some options tidying/code shrinkage. Also add -u option to unset non-global ↵Nicholas Marriott2009-01-07
| | | | options (allowing them to inherit), and some extra info.
* Import OpenBSD's getopt(3) to workaround broken glibc version.Nicholas Marriott2008-12-10
|
* Make window options work the same was as session options, add ↵Nicholas Marriott2008-12-08
| | | | mode-fg/mode-bg options, force -g for global on set/show/setw/showw/
* Fix stupid GNU getopt behaviour.Nicholas Marriott2008-09-25
|
* Zombie windows, requested by Will Maier.Nicholas Marriott2008-06-29
|
* Start of improved buffer code. Only set-buffer/show-buffer commands so far.Nicholas Marriott2008-06-20
|
* Trimify.Nicholas Marriott2008-06-18
|
* Don't use entry init since it may be dependent on key.Nicholas Marriott2008-06-05
|
* Big reorganisation of command-line syntax.Nicholas Marriott2008-06-05
|
* Print for the less easy commands.Nicholas Marriott2008-06-05
|
* Easy bits of arg printing for list-keys.Nicholas Marriott2008-06-05
|
* Bring select-window into line with everything else wrt -i.Nicholas Marriott2008-06-04
|
* Allow -c anywhere -s was allowed.Nicholas Marriott2008-06-03
|
* Add a windowonly generic command and use it where appropriate. Also trim ↵Nicholas Marriott2008-06-02
| | | | includes and unused.
* Last bits of basic configuration file. By default in ~/.tmux.conf or ↵Nicholas Marriott2008-06-02
| | | | specified with -f. Just a list of tmux commands executed when the server is started and before and any session/window is created.
* Move -s and -c down a level so handling them is the responsibility of the ↵Nicholas Marriott2008-06-02
command (with some helper functions), rather than the top-level. This changes the action command syntax so that -s and -c must be after the command rather than before.