summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/cfg.c
AgeCommit message (Expand)Author
2018-01-15Some unused code, GitHub issue 1219.Nicholas Marriott
2017-10-06Support %else in config files to match %if, from Brad Town in GitHubNicholas Marriott
2017-05-30Rewrite of choose mode, both to simplify and tidy the code and to addNicholas Marriott
2017-05-01In order that people can use formats like #D in #() in the status lineNicholas Marriott
2017-04-25Block the initial client if there is one until the configuration fileNicholas Marriott
2017-04-21History needs to be loaded after config parsing is done - now thatNicholas Marriott
2017-04-21Do not run the config file in the context of the first client, insteadNicholas Marriott
2017-04-05cfg_file can be static.Nicholas Marriott
2017-02-03Add a window or pane id "tag" to each format tree and use it to separateNicholas Marriott
2017-01-15It is silly for cmd_list_parse to return an integer error when it couldNicholas Marriott
2017-01-09Add %if/%endif for conditionals when parsing configuration files, theNicholas Marriott
2017-01-09Run the source-file pattern through glob(3).Nicholas Marriott
2016-10-16Mass rename struct cmd_q to struct cmdq_item and related.Nicholas Marriott
2016-10-16Rewrite command queue handling. Each client still has a command queue,Nicholas Marriott
2016-10-14source-file and some other commands can recurse back into cmdq_continue,Nicholas Marriott
2016-10-11Some other stuff that can be local to one file.Nicholas Marriott
2016-10-10Loads more static, except for cmd-*.c and window-*.c.Nicholas Marriott
2016-05-12- Rework load_cfg() error handling a little.Tim van der Molen
2016-01-19I no longer use my SourceForge address so replace it.Nicholas Marriott
2015-11-18Use __unused rather than rolling our own.Nicholas Marriott
2015-09-09No need to keep global options around for client which doesn't use them.Nicholas Marriott
2015-09-01Work out config file when needed not at startup.Nicholas Marriott
2015-09-01Move initial conf load into cfg.c.Nicholas Marriott
2015-06-05Change deref to the more sensible unref, and add a couple I missed before.Nicholas Marriott
2015-05-07Style spacing nits.Nicholas Marriott
2015-04-27Reset cfg_ncauses to 0 as well or we could allocate the wrong size ifNicholas Marriott
2015-04-25Fix some char* -> char *.Nicholas Marriott
2015-04-25Use a char **,u_int pair for cfg_causes.Nicholas Marriott
2015-04-19Rewrite of tmux mouse support which was a mess. Instead of havingNicholas Marriott
2014-10-27Move cfg_causes local into cfg.c and remove struct causelist.Nicholas Marriott
2014-06-25Handle escaped back slashes and missing new lines at end of line by usingTobias Stoeckmann
2014-04-17Remove some unnecessary includes and fix a typo.Nicholas Marriott
2013-10-20Do not run any command line command from the client which starts theNicholas Marriott
2013-03-25Add some additional debug logging.Nicholas Marriott
2013-03-24Add a command queue to standardize and simplify commands that call otherNicholas Marriott
2013-03-22Need to set clients in context before changing their reference count.Nicholas Marriott
2013-03-22load_cfg can actually use the same context now they are reference counted.Nicholas Marriott
2013-03-22Add functions to allocate and free command contexts rather than doing itNicholas Marriott
2013-03-22Don't try to print unterminated strings when loading configuration file.Nicholas Marriott
2013-03-22No more lint means no more ARGSUSED.Nicholas Marriott
2013-03-21Fix a couple of memory leaks, from Romain Francoise.Nicholas Marriott
2012-12-13Change load_cfg to fix a crash reported by jasper.Nicholas Marriott
2012-12-06Use strlcat not strncat in load_cfg and some other trivial tidying fromNicholas Marriott
2012-11-27Fix return value of load_cfg, from Thomas Adam.Nicholas Marriott
2012-11-27Correctly aggregate together errors from nested config files (withNicholas Marriott
2012-11-19Use a utility function for common code to show errors in config file,Nicholas Marriott
2012-07-11Make command exec functions return an enum rather than -1/0/1 values andNicholas Marriott
2012-07-10xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott
2012-05-17Ignore line continuation when escaped as \\, from Simon Nicolussi.Nicholas Marriott
2011-08-24Support \ for line continuation in the configuration file, from JuliusNicholas Marriott