summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-resize-pane.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Fix some error strings, from Kris Katterjohn.nicm2020-05-251-2/+2
* Drop having a separate type for style options and make them all strings,nicm2020-05-161-2/+1
* Move cmdq_state into cmd-queue.c.nicm2020-04-131-4/+4
* Rename cmdq_shared to cmdq_state which will better reflect what it isnicm2020-04-131-4/+4
* Store a key event not a mouse event in the shared data.nicm2020-04-131-3/+3
* Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsnicm2020-04-131-6/+7
* Make struct cmd local to cmd.c and move it out of tmux.h.nicm2020-04-131-2/+2
* Add a -T flag to resize-pane to trim lines below the cursor, movingnicm2020-03-311-3/+16
* Break code to convert an argument as a percentage into a common function.nicm2020-03-211-54/+16
* Add support for percentage sizes for resize-pane ("-x 10%"). Also changenicm2019-10-151-16/+55
* Correctly adjust mouse position if the status line is at the top andnicm2019-07-061-5/+5
* Do not store the mouse position we calculate as the start of a drag backnicm2019-05-031-2/+2
* Fix mouse positioning when the pane is not entirely visible.nicm2019-05-031-2/+2
* Some tidying and helper functions.nicm2018-08-181-11/+9
* Minor cosmetic improvement from KOIE Hidetaka.nicm2018-06-241-5/+5
* Make it possible to resize multiple panes by dragging corners, from Dannicm2018-06-091-11/+37
* Instead of working out which pane to resize with the mouse by walkingnicm2018-06-081-35/+16
* Change how we resolve which pane is dragging when there are multiplenicm2017-05-111-24/+34
* Get rid of the extra layer of flags and cmd_prepare() and just store thenicm2017-04-221-5/+5
* Store state shared between multiple commands in the queue in a sharednicm2017-04-211-3/+4
* Mass rename struct cmd_q to struct cmdq_item and related.nicm2016-10-161-12/+12
* Rewrite command queue handling. Each client still has a command queue,nicm2016-10-161-3/+3
* Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling.nicm2016-10-141-2/+2
* Add static in cmd-* and fix a few other nits.nicm2016-10-101-7/+10
* Do not allow the opposite pane to resize when dragging with the mousenicm2016-10-101-7/+7
* Remove some more unused variables, and use RB_FOREACH_SAFE innicm2016-03-011-2/+1
* I no longer use my SourceForge address so replace it.nicm2016-01-191-2/+2
* Instead of combined flags for -c, -s, -t, split into different setsnicm2015-12-141-2/+4
* Use member names in cmd_entry definitions so I stop getting confusednicm2015-12-131-6/+10
* Instead of every command resolving the target (-t or -s) itself, preparenicm2015-12-131-11/+7
* Rewrite of tmux mouse support which was a mess. Instead of havingnicm2015-04-191-3/+65
* Instead of setting up the default keys by building the key structnicm2014-10-201-49/+1
* Remove the barely-used and unnecessary command check() function.nicm2013-10-101-2/+1
* Add resize-pane -Z to temporary zoom the active pane to occupy the fullnicm2013-03-241-3/+20
* Add a command queue to standardize and simplify commands that call othernicm2013-03-241-7/+7
* Add resize-pane -x and -y for absolute pane size (much requested).nicm2013-03-221-3/+26
* Remove the layout undo/redo code which never really worked.nicm2013-01-171-2/+1
* Make command exec functions return an enum rather than -1/0/1 values andnicm2012-07-111-7/+7
* Add a layout history which can be stepped through with select-layout -unicm2012-04-011-1/+2
* Clean up and simplify tmux command argument parsing.nicm2011-01-041-47/+53
* Massive spaces->tabs and trailing whitespace cleanup, hopefully for the lastnicm2009-12-031-2/+2
* Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in thenicm2009-11-131-19/+17
* Merge pane number into the target specification for pane commands. Instead ofnicm2009-07-301-18/+9
* Make all messages sent between the client and server fixed size.nicm2009-07-261-3/+1
* Tidy up keys: use an enum for the key codes, and remove the macros which justnicm2009-07-211-10/+10
* Improved layout code.nicm2009-07-191-9/+28
* Having fixed flags for single-character getopt options is a bit hard tonicm2009-07-131-5/+5
* Import tmux, a terminal multiplexor allowing (among other things) a singlenicm2009-06-011-0/+105