mirror of
https://codeberg.org/scip/tablizer.git
synced 2025-12-17 04:30:56 +01:00
* add shortcut -H to --no-headers, it's too cumbersome to type * added fuzzy search support * Added basic lisp plugin facilities * Lisp plugin Addidions: - added process hook facilities - added working example lisp plugin for filter hook - load-path can now be a file as well - added a couple of lisp helper functions (atoi, split), more may follow, see lisplib.go * linting fixes
19 lines
834 B
Markdown
19 lines
834 B
Markdown
## Fixes to be implemented
|
|
|
|
## Features to be implemented
|
|
|
|
- add comment support (csf.NewReader().Comment = '#')
|
|
|
|
- add --no-headers option
|
|
|
|
### Lisp Plugin Infrastructure using zygo
|
|
|
|
Hooks:
|
|
|
|
| Filter | Purpose | Args | Return |
|
|
|-----------|-------------------------------------------------------------|---------------------|--------|
|
|
| filter | include or exclude lines | row as hash | bool |
|
|
| process | do calculations with data, store results in global lisp env | whole dataset | nil |
|
|
| transpose | modify a cell | headername and cell | cell |
|
|
| append | add one or more rows to the dataset (use this to add stats) | nil | rows |
|