Kyle King
Kyle King
The changes in my fork were merged in https://github.com/techgaun/active-forks/pull/4, so it hasn’t been updated since
I have the same issue on Windows where `in`, `None`, `False`, and `True` are highlighted along with any trailing output
I had a moment to troubleshoot this and created a minimal working example with a simplified formatted The problem appears to be from colorama converting the ANSI escape sequences for...
I went back to revisit this issue, but I oddly can no longer replicate it 🤔 @thomasaarholt, can you share a snippet that fails for you? What Python version were...
I'm troubleshooting a different issue and made a quick test file that might be useful. Save this snippet as `flake8_sql_check.py` ```python """Test of flake8-sql. Test with: python -m flake8 flake8_sql_check.py...
FWIW, I have a [DoIt](https://pydoit.org/) script in Python that does some filesystem manipulation to ouput documentation to gh-pages. Would love feedback if there is a better to do this Process:...
I think this could be an issue with the regex stripping whitespace: https://github.com/lynchjames/obsidian-day-planner/blob/c8d4d33af294bde4586a943463e8042c0f6a3a2d/src/constants.ts#L7-L8 But more generally I have mermaid and mark-TODOs-completed settings OFF (https://github.com/lynchjames/obsidian-day-planner/issues/92#issuecomment-864467907), so the plugin shouldn't be making...
I don't think opening a PR would be worthwhile without input from @lynchjames first on what types of changes they would be open to
> Did you have a fix @KyleKing or have you just isolated the area of the issue? I only tried to isolate the issue and hadn't tried patching it locally...
For multi-line output, could the `columns` be printed only on the first `LOG:` line? Example: ```py from pathlib import Path import snoop snooper = snoop.Config(columns='time,thread,thread_ident,file,full_file,function,function_qualname', out='tmp.log') snooper.pp([*Path(__file__).parent.resolve().glob('*.*')]) ``` Currently it...