aboutsummaryrefslogtreecommitdiff
path: root/cfg.c
Commit message (Collapse)AuthorAge
...
* Correctly aggregate together errors from nested config files (withNicholas Marriott2012-11-27
| | | | source-file). Fix by Thomas Adam, reported by Sam Livingstone-Gray
* Use a utility function for common code to show errors in config file,Nicholas Marriott2012-11-19
| | | | from Thomas Adam.
* Make command exec functions return an enum rather than -1/0/1 values andNicholas Marriott2012-07-11
| | | | | | add a new value to mean "leave client running but don't attach" to fix problems with using some commands in a command sequence. Most of the work by Thomas Adam, problem reported by "jspenguin" on SF bug 3535531.
* xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott2012-07-10
|
* Ignore line continuation when escaped as \\, from Simon Nicolussi.Nicholas Marriott2012-05-17
|
* Support \ for line continuation in the configuration file, from JuliusNicholas Marriott2011-08-24
| | | | Plenz.
* Allow the config file parser and source-file to return "don't exit" toNicholas Marriott2010-12-29
| | | | the client to let attach work from configuration files.
* Fix an out-of-date comment.Nicholas Marriott2010-05-25
|
* Use the array.h code for the causes list.Nicholas Marriott2010-02-06
|
* Instead of bailing out on the first configuration file error, carry on,Nicholas Marriott2010-02-06
| | | | | collecting all the errors, then start with the active window in more mode displaying them.
* Remove a couple of unused arguments where possible, and add /* ARGSUSED */ toNicholas Marriott2009-11-26
| | | | the rest to reduce lint output.
* tabs are better; ok nicmTheo Deraadt2009-10-26
|
* When using source-file, run the commands in the context of the source-fileNicholas Marriott2009-08-23
| | | | | command rather than with no context. This makes things like attach work from a file.
* The cursession member in struct cmd_ctx is always either curclient->session orNicholas Marriott2009-08-23
| | | | NULL when curclient is also NULL, so just eliminate it.
* Don't leak in the (rare) case of an invalid command at the end of a file notNicholas Marriott2009-08-09
| | | | terminated by a \n.
* Don't babysit people and let them try to load /dev/zero or (more useful)Nicholas Marriott2009-07-30
| | | | /dev/null if they want.
* Unused prototypes. Found by lint, no binary change.Nicholas Marriott2009-06-25
|
* Import tmux, a terminal multiplexor allowing (among other things) a singleNicholas Marriott2009-06-01
terminal to be switched between several different windows and programs displayed on one terminal be detached from one terminal and moved to another. ok deraadt pirofti