Joseph Martinot-Lagarde
Joseph Martinot-Lagarde
flynt reformats uncode escapes such as non breaking spaces : "a\xA0%s" % a becomes : f"a {a}" The space between `a` and `{a}` is still an non breaking space, but...
Right now if no favicon is found, the icon is replaced by the word 'favicon' in bold. It would be nice if it was replaced by a transparent square of...
De temps en temps, je n'arrive pas à marquer un article comme lu : 0. je suis en mode où les articles lus sont cachés et j'affiche le contenu des...
Dans le résumé après un update all, je vois aussi bien: ``` Operation timed out after 10001 milliseconds with 0 bytes received ``` que ``` Operation timed out after 4001...
This code:: ```python from math import * from cmath import * ``` is transformed to: ```python from cmath import * from math import * ``` I know that this is...
I accidentally removed a chapter for a comic, and I had to remove it from my list and redownload it to be able to make it reappear. Is there a...
(See also https://github.com/spyder-ide/spyder-vim/wiki/Commands) List from https://github.com/spyder-ide/spyder/issues/669#issuecomment-222555709: - [x] % - [ ] { - [ ] } - [x] gg - [x] G - [x] $ - [x] 0 -...
Hello, First of all thanks for the awesome tool! Would you consider adding a super aggressive mode ? I understand the potential problems about `%d` in #59. The workaround works...
This minimal example gets reformated wrong : ```toml table = [ # [TODO] "I", ] ``` becomes ```toml table = [ # [TODO] "I", ] ``` This has the very...
https://github.com/google/yapf, Google's python formatter.