Re: [PATCH] tag: fix column output not using all terminal space

2018-05-11 Thread Duy Nguyen
On Fri, May 11, 2018 at 10:28 AM, Jeff King wrote: > On Fri, May 11, 2018 at 09:56:02AM +0200, Nguyễn Thái Ngọc Duy wrote: > >> git-tag runs a separate git-column command via run_column_filter(). >> This makes the new 'git-column' process fail to pick up the terminal >> width for some reason and f

Re: [PATCH] tag: fix column output not using all terminal space

2018-05-11 Thread Jeff King
On Fri, May 11, 2018 at 09:56:02AM +0200, Nguyễn Thái Ngọc Duy wrote: > git-tag runs a separate git-column command via run_column_filter(). > This makes the new 'git-column' process fail to pick up the terminal > width for some reason and fall back to default width. Just explicitly > pass terminal

[PATCH] tag: fix column output not using all terminal space

2018-05-11 Thread Nguyễn Thái Ngọc Duy
git-tag runs a separate git-column command via run_column_filter(). This makes the new 'git-column' process fail to pick up the terminal width for some reason and fall back to default width. Just explicitly pass terminal width and avoid this terminal width detection business in subprocesses. While