summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorLibravatar Nguyễn Thái Ngọc Duy <pclouds@gmail.com>2012-04-13 17:54:35 +0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2012-04-27 09:26:38 -0700
commit077539d734cdc4b0a3d2ea87fc487fa5c21d0311 (patch)
tree0e6899e3287619e7f92628c8f1c451b1173a958b /Documentation
parentStop starting pager recursively (diff)
downloadtgif-077539d734cdc4b0a3d2ea87fc487fa5c21d0311.tar.xz
column: add columnar layout
COL_COLUMN and COL_ROW fill column by column (or row by row respectively), given the terminal width and how many space between columns. All cells have equal width. Strings are supposed to be in UTF-8. Valid ANSI escape strings are OK. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/config.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 9aabef124c..ab6ae3da72 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -848,6 +848,10 @@ column.ui::
never show in columns
`auto`;;
show in columns if the output is to the terminal
+`column`;;
+ fill columns before rows (default)
+`row`;;
+ fill rows before columns
`plain`;;
show in one column
--