aboutsummaryrefslogtreecommitdiff
path: root/cfg.c
Commit message (Collapse)AuthorAge
* Sync OpenBSD patchset 640:Tiago Cunha2010-02-08
| | | | | Use the array.h code for the causes list.
* Sync OpenBSD patchset 635:Tiago Cunha2010-02-08
| | | | | | | Instead of bailing out on the first configuration file error, carry on, collecting all the errors, then start with the active window in more mode displaying them.
* Sync OpenBSD patchset 567:Tiago Cunha2009-11-28
| | | | | | Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to the rest to reduce lint output.
* Sync OpenBSD patchset 467:Tiago Cunha2009-10-28
| | | | | tabs are better; ok nicm
* Sync OpenBSD patchset 290:Tiago Cunha2009-08-24
| | | | | | | When using source-file, run the commands in the context of the source-file command rather than with no context. This makes things like attach work from a file.
* Sync OpenBSD patchset 289:Tiago Cunha2009-08-24
| | | | | | The cursession member in struct cmd_ctx is always either curclient->session or NULL when curclient is also NULL, so just eliminate it.
* Sync OpenBSD patchset 233:Tiago Cunha2009-08-09
| | | | | | Don't leak in the (rare) case of an invalid command at the end of a file not terminated by a \n.
* Sync OpenBSD patchset 206:Tiago Cunha2009-07-30
| | | | | | Don't babysit people and let them try to load /dev/zero or (more useful) /dev/null if they want.
* Restore $Id$ and add script to do so.Nicholas Marriott2009-06-25
|
* Unused prototypes. Found by lint, no binary change.Nicholas Marriott2009-06-25
|
* stat(2) files before trying to load them to avoid problems, for example with ↵Nicholas Marriott2009-05-21
| | | | | | | "source-file /dev/zero". This commit dedicated to Tom: protecting idiots from their own stupidity for more than 20 years.
* Close .tmux.conf... DOH.Nicholas Marriott2009-03-31
|
* Support command sequences separated by " ; ". Also clean up command printing.Nicholas Marriott2009-01-18
|
* Environment variables in configuration file.Nicholas Marriott2008-07-25
|
* Lose unnecessary flags on context.Nicholas Marriott2008-06-21
|
* Handle commented lines.Nicholas Marriott2008-06-19
|
* Convert cfg.c to use cmd-string stuff.Nicholas Marriott2008-06-19
|
* Fix some stupid parser bugs, most notably forgetting to allocate space for \0.Nicholas Marriott2008-06-16
|
* Informational messages on window option changes.Nicholas Marriott2008-06-16
|
* Don't die on empty strings.Nicholas Marriott2008-06-14
|
* Allow comments at EOL; count blank lines properly.Nicholas Marriott2008-06-02
|
* Quick man page update, also fix some usages and get rid of some CMD_KEY checks.Nicholas Marriott2008-06-02
|
* Last bits of basic configuration file. By default in ~/.tmux.conf or ↵Nicholas Marriott2008-06-02
| | | | specified with -f. Just a list of tmux commands executed when the server is started and before and any session/window is created.
* Return error cause properly.Nicholas Marriott2008-06-02
|
* Clear msgdata where it is unavailable.Nicholas Marriott2008-06-02
|
* Move -s and -c down a level so handling them is the responsibility of the ↵Nicholas Marriott2008-06-02
command (with some helper functions), rather than the top-level. This changes the action command syntax so that -s and -c must be after the command rather than before.