Re: [PATCH v6 02/10] ref-filter: add option to pad atoms to the right

2015-07-30 Thread Karthik Nayak
On Thu, Jul 30, 2015 at 12:59 AM, Eric Sunshine wrote: > On Tuesday, July 28, 2015, Karthik Nayak wrote: >> Add a new atom "padright" and support %(padright:X) where X is a >> number. This will align the succeeding atom value to the left >> followed by spaces for a total length of X characters.

Re: [PATCH v6 02/10] ref-filter: add option to pad atoms to the right

2015-07-29 Thread Eric Sunshine
On Tuesday, July 28, 2015, Karthik Nayak wrote: > Add a new atom "padright" and support %(padright:X) where X is a > number. This will align the succeeding atom value to the left > followed by spaces for a total length of X characters. If X is less > than the item size, the entire atom value is p

[PATCH v6 02/10] ref-filter: add option to pad atoms to the right

2015-07-27 Thread Karthik Nayak
Add a new atom "padright" and support %(padright:X) where X is a number. This will align the succeeding atom value to the left followed by spaces for a total length of X characters. If X is less than the item size, the entire atom value is printed. Add tests and documentation for the same. Helpe