agguser

Results 20 comments of agguser

A fix for `Shdo` would be adding `cd dir-path` command at the top of the generated script. You may add it manually every time, or change `vim-dirvish/autoload/dirvish.vim` ```vim function! dirvish#shdo(paths,...

Seems that empty matches also cause this bug. ``` $ jq -n -r '"abc\nabc" | gsub("^"; "+")' # not terminate! $ jq -n -r '"abc\nabc" | sub("^"; "+")' # work...

Please add a hint to reload a broken image.

What if changing `g` to tag all processes in the group/tree, then `k` to kill tagged processes as usual?

Thanks for explaining. `c` key works, but why not in the man page?

Why `:copy` (not `:copy &`), which is supposed to be a foreground operation, does not show "File Conflict" dialogue box, like pasting with p, when the file already exists?

Is it "atomic"/"bulk" operation, unlike pasting, which asks for each conflict?

Workaround: ```bash $ echo "name,age\nกา,24\nก่า,25" | mlr --c2t cat | column -t -s $'\t' name age กา 24 ก่า 25 ```

@aborruso https://en.wikipedia.org/wiki/Ranking#Standard_competition_ranking_(%221224%22_ranking)

Workaround: ```bash $ echo "x\n10\n20\n20\n30" | mlr --c2t cat | awk -F "\t" -v OFS="\t" ' NR == 1 { print "r", $0 } NR > 1 { ++n; if...