dana
dana
For comparison, the [CommonMark spec](http://spec.commonmark.org/0.26/#list-items) seems to align with my expectation of how it should work. Their tester thing renders it as such: http://spec.commonmark.org/dingus/?text=*%20Un-ordered%20list%20item.%0A%0A%20%20%60%60%60%0A%20%20%20%20Two%20spaces%20indented.%0A%20%20%60%60%60%0A%0A1.%20Ordered%20list%20item.%0A%0A%20%20%20%60%60%60%0A%20%20%20%20%20Two%20spaces%20indented.%0A%20%20%20%60%60%60%0A Their implementation preserves tabs (which i...
I don't think the change works the way you think it does. It doesn't copy the targets
? It copies the links themselves into the archive. If the source directory contains `bar -> foo`, you get an archive with `bar -> foo`: ``` heartswap:/tmp % mkdir test...
Actually, looking into this again this morning, i forgot one thing in my 'When': The SSH agent socket of course needs to be owned by `root`, as in my STR....
> So, if I'm reading this correctly, if you change the sudo sh -c '... to sudo -i sh -c '... or sudo -H sh -c '... then it works?...
zsh has a [standard style](https://zsh.sourceforge.io/Doc/Release/Completion-System.html#Standard-Styles) called `extra-verbose` that can be used for stuff like this. `_rg_types` could support it with a small modification, and then users who want the more...
`file`, `rsync`, and (as mentioned in the OP) `ack` also use `--files-from`. `file` basically treats the paths as if they were given on the command line. `rsync` treats them kind...
I wanted to mention that one of the reasons you might see 'no-op' escapes in the wild is that some languages' regex-escape functions produce them. For example, Perl's `quotemeta()` escapes...
FYI, this kind of relates to the `number_format()` suggestion i had. Presuming that something to that effect will go in, this change seems like it'd be intertwined with it
btw, one can probably be forgiven for using 'precision' here, since [PHP itself](http://php.net/manual/en/function.round.php) uses it the same way