summaryrefslogtreecommitdiffstats
path: root/cmd-split-window.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-08Fix $Id$.Nicholas Marriott
2009-07-08The fix for default-path (use target session options instead of global options)Nicholas Marriott
is required here as well, doh.
2009-06-25Restore $Id$ and add script to do so.Nicholas Marriott
2009-06-25lines variable can be -1 (to be ignored), so should be signed. Found by lint.Nicholas Marriott
2009-05-04Space trimmage mega-diff.Nicholas Marriott
2009-04-03rotate-window command.Nicholas Marriott
2009-04-01- Allow switching to hidden windows (for active-only layout).Nicholas Marriott
- Don't update unnecessarily for other layouts when changing active pane doesn't matter.
2009-04-01Basic horizontal splitting and layout management. Still some redraw and otherNicholas Marriott
issues - particularly, don't mix with manual pane resizing and be careful when viewing from multiple clients; generally cycling the layout a few times will fix most problems. Getting this in for testing while I think about how to deal with manual mode. Split window as normal and cycle the layouts with C-b space. Some of the layouts will work better when swap-pane comes along.
2009-03-04Put socket path in $TMUX.Nicholas Marriott
2009-01-23Better error messages for fork.Nicholas Marriott
2009-01-21Bring back -p and -l to splitw to specify height as % or nlines.Nicholas Marriott
2009-01-19Pass return code from _exec; allow command sequences to work from the ↵Nicholas Marriott
command line.
2009-01-18Support command sequences separated by " ; ". Also clean up command printing.Nicholas Marriott
2009-01-14Multiple window splitting.Nicholas Marriott
2009-01-12Make the window pane code handle panes of different sizes, and add a -l and ↵Nicholas Marriott
-p arguments to split-window to specify the new window size in lines or as a percentage.
2009-01-11Codes no longer needed.Nicholas Marriott
2009-01-11Window splitting. Two vertical panes fixed 50% each. This is a huge diff, ↵Nicholas Marriott
still a couple of bugs (notably heap corruption somewhere causing segfault on exit).