diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-07-01 12:41:46 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-01 12:41:46 -0700 |
commit | 66929c423a83ceb9a81e0a298102bfd155a1689b (patch) | |
tree | 2877b78e8438763432213eb684c359d3ae79f062 | |
parent | 43f25ae7b8e02d224fd150cf365b28d1956cc8cf (diff) | |
parent | 5e62cc14c36fa1d10a057ebe6fd2bba504422573 (diff) | |
download | git-66929c423a83ceb9a81e0a298102bfd155a1689b.tar.gz |
Merge branch 'rr/column-doc'
* rr/column-doc:
column doc: rewrite documentation for column.ui
-rw-r--r-- | Documentation/config.txt | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 1153585aa2..b4d4887bd7 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -934,6 +934,9 @@ column.ui:: This variable consists of a list of tokens separated by spaces or commas: + +These options control when the feature should be enabled +(defaults to 'never'): ++ -- `always`;; always show in columns @@ -941,19 +944,30 @@ column.ui:: never show in columns `auto`;; show in columns if the output is to the terminal +-- ++ +These options control layout (defaults to 'column'). Setting any +of these implies 'always' if none of 'always', 'never', or 'auto' are +specified. ++ +-- `column`;; - fill columns before rows (default) + fill columns before rows `row`;; fill rows before columns `plain`;; show in one column +-- ++ +Finally, these options can be combined with a layout option (defaults +to 'nodense'): ++ +-- `dense`;; make unequal size columns to utilize more space `nodense`;; make equal size columns -- -+ -This option defaults to 'never'. column.branch:: Specify whether to output branch listing in `git branch` in columns. |