git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/9] column output v3
@ 2011-03-20 12:57 Nguyễn Thái Ngọc Duy
  2011-03-20 12:57 ` [PATCH 1/9] Move term_columns() to pager.c and save terminal width before pager Nguyễn Thái Ngọc Duy
                   ` (8 more replies)
  0 siblings, 9 replies; 13+ messages in thread
From: Nguyễn Thái Ngọc Duy @ 2011-03-20 12:57 UTC (permalink / raw)
  To: git; +Cc: Nguyễn Thái Ngọc Duy

Compared to v2 [1]. It's quite ready for consumption:

 - dense mode works better (and consumes more cpu cycles, but not much)
 - there should be no impact when it's not activated (i.e. no
   output buffering)
 - column.ui is used for default settings. Not sure if I should go for
   column.branch and column.tag
 - --[no-]column can be used to override column.ui

[1] http://mid.gmane.org/1297254284-3729-1-git-send-email-pclouds@gmail.com

Nguyễn Thái Ngọc Duy (9):
  Move term_columns() to pager.c and save terminal width before pager
  Add display_columns() to display in columnar layout
  column: add functions to parse column settings
  display_columns: add COL_MODE_{COLUMN,ROW} mode
  display_columns: add COL_DENSE to do unequal column layout
  column: add column.ui for default column output settings
  help: reuse display_columns() for help -a
  tag: add --column
  branch: add --column

 .gitignore                   |    1 +
 Documentation/config.txt     |   24 +++
 Documentation/git-branch.txt |    9 +
 Documentation/git-tag.txt    |   11 +-
 Makefile                     |    3 +
 builtin/branch.c             |   23 ++-
 builtin/tag.c                |   21 ++-
 column.c                     |  378 ++++++++++++++++++++++++++++++++++++++++++
 column.h                     |   22 +++
 help.c                       |   53 +-----
 pager.c                      |   33 ++++
 parse-options.h              |    2 +
 t/t9002-column.sh            |  135 +++++++++++++++
 test-column.c                |   39 +++++
 14 files changed, 701 insertions(+), 53 deletions(-)
 create mode 100644 column.c
 create mode 100644 column.h
 create mode 100755 t/t9002-column.sh
 create mode 100644 test-column.c

-- 
1.7.4.74.g639db

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2011-03-20 23:26 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-20 12:57 [PATCH 0/9] column output v3 Nguyễn Thái Ngọc Duy
2011-03-20 12:57 ` [PATCH 1/9] Move term_columns() to pager.c and save terminal width before pager Nguyễn Thái Ngọc Duy
2011-03-20 12:57 ` [PATCH 2/9] Add display_columns() to display in columnar layout Nguyễn Thái Ngọc Duy
2011-03-20 12:57 ` [PATCH 3/9] column: add functions to parse column settings Nguyễn Thái Ngọc Duy
2011-03-20 12:57 ` [PATCH 4/9] display_columns: add COL_MODE_{COLUMN,ROW} mode Nguyễn Thái Ngọc Duy
2011-03-20 12:57 ` [PATCH 5/9] display_columns: add COL_DENSE to do unequal column layout Nguyễn Thái Ngọc Duy
2011-03-20 12:57 ` [PATCH 6/9] column: add column.ui for default column output settings Nguyễn Thái Ngọc Duy
2011-03-20 12:57 ` [PATCH 7/9] help: reuse display_columns() for help -a Nguyễn Thái Ngọc Duy
2011-03-20 16:04   ` Nguyễn Thái Ngọc Duy
2011-03-20 12:57 ` [PATCH 8/9] tag: add --column Nguyễn Thái Ngọc Duy
2011-03-20 12:57 ` [PATCH 9/9] branch: " Nguyễn Thái Ngọc Duy
2011-03-20 19:52   ` Teemu Likonen
2011-03-20 23:26     ` Nguyễn Thái Ngọc Duy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).