summaryrefslogtreecommitdiffstats
path: root/cmd-generic.c
AgeCommit message (Collapse)Author
2009-07-14Having fixed flags for single-character getopt options is a bit hard toNicholas Marriott
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.
2009-07-12When pasting, translate \n into \r. This matches xterm and putty's behaviour,Nicholas Marriott
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!
2009-05-21Spacing.Nicholas Marriott
2009-05-21UPPER -> BIG, sort, and bump protocol version.Nicholas Marriott
2009-05-04Space trimmage mega-diff.Nicholas Marriott
2009-04-03A flag missed.Nicholas Marriott
2009-04-03rotate-window command.Nicholas Marriott
2009-01-23Add -a properly.Nicholas Marriott
2009-01-18Support command sequences separated by " ; ". Also clean up command printing.Nicholas Marriott
2009-01-14Rename some flags I'm not happy about.Nicholas Marriott
2009-01-12Commands to resize panes; also a pane generic cmd, not used yet.Nicholas Marriott
2009-01-11save-buffer command, from Tiago Cunha.Nicholas Marriott
2009-01-11Doh. Return the offset not the total.Nicholas Marriott
2009-01-10Trim spaces.Nicholas Marriott
2009-01-07Some options tidying/code shrinkage. Also add -u option to unset non-global ↵Nicholas Marriott
options (allowing them to inherit), and some extra info.
2008-12-10Import OpenBSD's getopt(3) to workaround broken glibc version.Nicholas Marriott
2008-12-08Make window options work the same was as session options, add ↵Nicholas Marriott
mode-fg/mode-bg options, force -g for global on set/show/setw/showw/
2008-09-25Fix stupid GNU getopt behaviour.Nicholas Marriott
2008-06-29Zombie windows, requested by Will Maier.Nicholas Marriott
2008-06-20Start of improved buffer code. Only set-buffer/show-buffer commands so far.Nicholas Marriott
2008-06-18Trimify.Nicholas Marriott
2008-06-05Don't use entry init since it may be dependent on key.Nicholas Marriott
2008-06-05Big reorganisation of command-line syntax.Nicholas Marriott
2008-06-05Print for the less easy commands.Nicholas Marriott
2008-06-05Easy bits of arg printing for list-keys.Nicholas Marriott
2008-06-04Bring select-window into line with everything else wrt -i.Nicholas Marriott
2008-06-03Allow -c anywhere -s was allowed.Nicholas Marriott
2008-06-02Add a windowonly generic command and use it where appropriate. Also trim ↵Nicholas Marriott
includes and unused.
2008-06-02Last bits of basic configuration file. By default in ~/.tmux.conf or ↵Nicholas Marriott
specified with -f. Just a list of tmux commands executed when the server is started and before and any session/window is created.
2008-06-02Move -s and -c down a level so handling them is the responsibility of the ↵Nicholas Marriott
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.