miguelbarao

Results 12 comments of miguelbarao

I mean to find packages without reverse dependencies that can be removed. Using `pipdeptree -r -a` produces a vey long list (hundreds of lines) which is not simple to inspect...

Any progress on this feature? It should be really helpful with dot repeat to add multiple surroundings.

Not yet fixed. It's also reporting wrong sizes when there are tabs, multibyte or wide characters. Looking at the code, in the formula `abs(start-end)+1`, the `+1` is assuming chars to...

I'm using brackets to group and easily distinguish the output from other information shown, but it's just personal preference. A configuration option would be great.

I think would vote for the 1st one, for simplicity. The 3rd would be perfect, and is my preferred one for its customizability, but requiring some kind of parsing is...

Maybe it's jail related? Running on FreeBSD 14 outside a jail and it works perfectly. Installed with `pkg`.

Nevermind, my mistake. The bit patterns apply to RV64 while I was looking to RV32. It's correct.

Also, block math is not allowing multiline content. The following does not work: ``` $$ \begin{align} x &= 1 \\ y &= 2 \end{align} $$ ``` The workaround is to...

I changed the patterns in `mistune/plugins/math.py` to: ```python BLOCK_MATH_PATTERN = r'(?sm)(?!^ {4,})\$\$\s*(?P\S.*?)\s*(?\S.*?)\s*(?