Skip to content

Release: v2.1.0

Compare
Choose a tag to compare
@greymd greymd released this 18 May 06:44
· 593 commits to master since this release

New feature

  • -n option: Set the maximum number of arguments taken for each pane.
    • Same as UNIX xargs command's one.
$ xpanes -n 4 {1..12}

Will generate...

$ echo 1 2 3 4                 │$ echo 5 6 7 8
                               │
                               │
                               │
                               │
                               │
                               │
-------------------------------+------------------------------
$ echo 9 10 11 12






Bugfix

  • Line break behavior is different from xargs. (Fix #52)
  • Argument which only has empty string or line break causes broken layout. (Fix #54)
  • Argument like "%s", "%d" causes broken layout. (Fix #56)