Keto D. Zhang
Keto D. Zhang
I've forgotten about this since I put the website on hold sorry about that. It's quite obvious something is wrong. The kramdown and github flavor fences are being treated with...
Any news on when this will be implemented?
A fix to opening multiple files (however not at once) is the "Keep Open" option which you can activate by right clicking the tab you want to "keep open" (or...
In my attempt to work on this bug, I found it is not possible to make a fix without deciding whether files with trailing dots meaningfully contain a suffix. Currently,...
@barneygale Good point, then it must be that ```py >>> Path("foo.tar.").suffixes [".tar", "."] ``` As well as we needing to remove the restriction with `with_suffix(".")`: ``` >>> Path("foo.tar").with_suffix(".") Path("foo.tar.") ```
Update the description as well > API to call PEP 517 hooks for building Python packages I got confused this package was only for build system metadata.
However, this does work if placed in `pyproject.toml`. Weird The proper regex should escape the period `^/foo\.py`. Why is it that you need proper regex in commandline but not in...
Oh that's right. I'd mistakenly assume black would use CWD as root when .git/ or pyproject.toml is missing.
To be fair, there is is no indication of this in `black --help`. I was surprised `^/` even worked in the first place.
I don't think that particular modification would help since for the case of pyproject file, the root is always the path of the pyproject file. A section on general examples...