You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: allow programmes beginning with '-' to be specified on the comma…
…nd-line
Adds allow_hyphen_values = true to the prog positional argument so clap
accepts values starting with a hyphen (e.g. '-3' for negative index
selection).
Fixes#10
feat: support escape sequences in unquoted single-char delimiters
Extends S and J operators to accept escaped characters like \0, \n, \t,
\xNN, and \uNNNN without requiring quotes. For example, S\0 now splits
on the nul character.
Fixes#1