agguser

Results 18 issues of agguser

It seems that `otfinfo` does not support `.ttc` (TrueType Collection) files, does it? If not, please do. Thanks.

- [x] I have fzf 0.23.0 or above - [X] I have read through https://github.com/junegunn/fzf.vim/blob/master/README.md - [X] I have read through https://github.com/junegunn/fzf/blob/master/README-VIM.md - [X] I have read through the manual...

```sh $ touch /tmp/f $ rsync --remove-source-files /tmp/f /tmp/ $ ls /tmp/f ls: cannot access '/tmp/f': No such file or directory ``` `--remove-source-files` should not delete sources that are the...

PPRINT output does not align correctly when there are combining characters, e.g. ```sh $ echo "name,age\nกา,24\nก่า,25" | mlr --c2p cat name age กา 24 ก่า 25 ``` (Note: ก่า =...

bug
help wanted

Is there a way to get "rank" instead of "counter"? E.g. ``` $ echo "10\n20\n20\n30" | mlr --c2p -N cat -n n 1 1 10 2 20 3 20 4...

feature-request

It seems that `printf`'s thousands separator flag (`'`) is not supported, e.g. ```sh $ echo '12345,12345.67' | mlr --c2p -N format-values -i "%'d" -f "%'.2f" 1 2 12345 12345.67 ```...

feature-request

For example: ```sh $ M() { echo "s,i,f\na,1,1.1\nbb,22,22.22" | mlr --c2p "$@"; } $ M cat s i f a 1 1.1 bb 22 22.22 $ M format-values -i '%2lld'...

feature-request

Please add an option to auto-detect column types (e.g. `-itype`), or specify numeric column types (e.g. `-inum c2,c3`). Currently, it seems that column types are not auto-detected, which may cause...

enhancement

Support for `DuckDB` (https://duckdb.org/) would be great. A quick search shows that there is a Go SQL driver for it: https://github.com/marcboeker/go-duckdb (not sure if it is compatible with trdsql).

enhancement

Please support multiple queries. Currently, it seems that only last query is output, e.g. ``` $ trdsql 'select 1; select 2,3' 2,3 ``` Note: `union` is not used here because...

enhancement