columnify icon indicating copy to clipboard operation
columnify copied to clipboard

Create text-based columns suitable for console output. Supports cell wrapping.

Results 26 columnify issues
Sort by recently updated
recently updated
newest added

I might have missed something but it seems like I can't use this for my basic use-case: I want columns that are automatically-sized to wrap text. I'm using xtermjs and...

Fixes https://github.com/timoxley/columnify/issues/46 (edited online, haven't tested if it works yet)

Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...

dependencies

Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. Release notes Sourced from decode-uri-component's releases. v0.2.2 Prevent overwriting previously decoded tokens 980e0bf https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2 v0.2.1 Switch to GitHub workflows 76abc93 Fix issue where decode...

dependencies

Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.2. Commits 699c459 3.1.2 2f2b5ff fix: trim pattern 25d7c0d 3.1.1 55dda29 fix: treat nocase:true as always having magic 5e1fb8d 3.1.0 f8145c5 Add 'allowWindowsEscape' option 570e8b1...

dependencies

The options object is passed in from the user and should not be mutated. [here](https://github.com/timoxley/columnify/blob/a532ca1fb29d4f006cb62f25a44db96cd65bdb89/index.js#L33) is one example of this mutation occuring. To fix it, I suggest doing `options =...

Would love an option to separate the column headers from the body of the table with a line. I love the truncation and autowrap features of your module. But, for...

Is is possible to use different padding characters for difference columns or use a padding character for one column and not another? I have this code: ``` const qa =...

If the text that's being wrapped has ansi color codes the colors bleed into the other columns because the colorized string is split when it's wrapped and as a result...

Related to topic of using colors in columnify using chalk as discussed in [26](https://github.com/timoxley/columnify/issues/26). Is there a way to color the title? e.g. ``` var columnify = require('columnify'); var chalk...