v1.2.0
What's Changed
- Refactored and cleaned up the code, made linter happier
- Fixed bug where using
-v
w/o a pattern lead to zero output #12 - Added -F feature to filter by [multiple] columns #13
- Added highlight lines feature (
-L
). The colors can be configured in a config file:
Place the config file to~/.config/tablizer/config
or specify with-f path
. Example config:
# supported colors:
# black, blue, cyan, darkGray, default, green, lightBlue, lightCyan,
# lightGreen, lightMagenta, lightRed, lightWhite, lightYellow,
# magenta, red, white, yellow
BG = "lightGreen"
FG = "white"
HighlightBG = "lightGreen"
HighlightFG = "white"
NoHighlightBG = "white"
NoHighlightFG = "lightGreen"
HighlightHdrBG = "red"
HighlightHdrFG = "white"
The config file is HCL formatted.
Full Changelog: v1.1.0...v1.2.0