summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-source-file.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add -F to set-environment and source-file; GitHub issue 2359.nicm2020-09-011-5/+11
* Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsnicm2020-04-131-2/+2
* Make struct cmd local to cmd.c and move it out of tmux.h.nicm2020-04-131-2/+2
* Restore source-file -q behaviour, broken in r1.42; OK nicm@tim2019-12-211-3/+2
* When adding a list with multiple commands to the queue, the next item tonicm2019-12-191-1/+2
* Do not rely on errno after glob(3) fails.nicm2019-12-181-5/+11
* Change source-file to use new file code which allows it to read fromnicm2019-12-121-39/+110
* Add a -v flag to source-file to show the commands and line numbers.nicm2019-06-051-3/+5
* Exit 1 correctly if source-file fails.nicm2019-05-281-1/+3
* Allow source-file to take multiple arguments.nicm2019-05-281-30/+35
* Replace the split parser code (cfg.c and cmd-string.c) with a singlenicm2019-05-231-5/+7
* Fix ordering of source-file with multiple files and add flags to load_cfg.nicm2019-05-201-5/+11
* Make server_client_get_cwd used (almost) everywhere we need to work outnicm2018-05-241-2/+2
* load_cfg returns < 0 on error, not != 0. Problem reported by Kaushal Modi.nicm2017-04-191-2/+2
* Make source-file look for files relative to the client working directorynicm2017-02-141-8/+22
* Add -n to break-pane.nicm2017-01-291-3/+3
* source-file -q needs to apply to glob(3) too.nicm2017-01-091-2/+4
* Run the source-file pattern through glob(3).nicm2017-01-091-11/+19
* Mass rename struct cmd_q to struct cmdq_item and related.nicm2016-10-161-15/+15
* Rewrite command queue handling. Each client still has a command queue,nicm2016-10-161-39/+17
* source-file and some other commands can recurse back into cmdq_continue,nicm2016-10-141-4/+5
* Trying to do hooks generically is way too complicated and unreliable andnicm2016-10-131-2/+1
* Add static in cmd-* and fix a few other nits.nicm2016-10-101-5/+5
* - Rework load_cfg() error handling a little.tim2016-05-121-12/+10
* Final parts of command hooks, add before- and after- hooks to each command.nicm2016-04-291-1/+2
* Use member names in cmd_entry definitions so I stop getting confusednicm2015-12-131-6/+9
* Instead of every command resolving the target (-t or -s) itself, preparenicm2015-12-131-3/+2
* Move cfg_causes local into cfg.c and remove struct causelist.nicm2014-10-271-19/+5
* Instead of setting up the default keys by building the key structnicm2014-10-201-2/+1
* Make cmdq->client_exit a tristate (-1 means "not set") so that ifnicm2013-10-101-1/+4
* Remove the barely-used and unnecessary command check() function.nicm2013-10-101-2/+1
* Copy the client into the new cmdq in source-file so commands that worknicm2013-04-121-1/+2
* Continue the parent cmdq after sourcing a file.nicm2013-03-251-4/+5
* Add a command queue to standardize and simplify commands that call othernicm2013-03-241-26/+60
* Correctly aggregate together errors from nested config files (withnicm2012-11-271-23/+20
* Make command exec functions return an enum rather than -1/0/1 values andnicm2012-07-111-3/+3
* xfree is not particularly helpful, remove it. From Thomas Adam.nicm2012-07-101-3/+5
* Clean up and simplify tmux command argument parsing.nicm2011-01-041-86/+13
* Allow the config file parser and source-file to return "don't exit" tonicm2010-12-291-4/+20
* Use the array.h code for the causes list.nicm2010-02-061-12/+12
* Instead of bailing out on the first configuration file error, carry on,nicm2010-02-061-6/+12
* Remove a couple of unused arguments where possible, and add /* ARGSUSED */ tonicm2009-11-261-1/+2
* Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in thenicm2009-11-131-2/+2
* Use KEYC_NONE constant instead of 0 on init.nicm2009-09-211-2/+2
* When using source-file, run the commands in the context of the source-filenicm2009-08-231-2/+2
* Make all messages sent between the client and server fixed size.nicm2009-07-261-24/+1
* Having fixed flags for single-character getopt options is a bit hard tonicm2009-07-131-2/+2
* Import tmux, a terminal multiplexor allowing (among other things) a singlenicm2009-06-011-0/+147