Greedquest

Results 49 comments of Greedquest

FWIW https://github.com/Kijewski/pyjson5 looks like a good alternative which is written with Cython and so is pretty fast (3 orders of magnitude on `loads` for a small document). Although I've only...

I've know roughly the process. I know the first step is to create both a build dist and a source dist. This can be done by running `python setup.py sdist`....

@StefanBrand Another alternative; https://github.com/ryantam626/jupyterlab_code_formatter adds a command button - it doesn't use the language server I don't believe but achieves the same effect and supports a few different formatters (black,...

Yes CodeReview and Electrical Engineering stack exchange both use `\$` as the inline delimiter, `$$` for multiline. The ability to toggle would be really useful!

Or alternatively is there a way to avoid this in my local config: ```yaml hooks: - id: reorder-python-imports files: \.pyi?$ types: [] ``` ... as using `types_or` e.g.: ```yaml hooks:...

@MarcoGorelli Oh that's kind of crazy but makes sense I suppose, thanks! Is `types: [text]` the default value of `types`, equivalent to what happens when you don't specify it in...

To expand on what @Vogel612 said, that basically means change: ```vba Application.loadfromtext content ``` To the richer: ```vba Application.VBE.ActiveVBProject.VBComponents.Import "C:/foo/file.bas" ``` That works for classes and standard modules. Documents/forms need...

@retailcoder What do you think about the extension - integrating the project explorer into code inspection results (or vice versa 😮). I guess what you really want is hijacked codepanes...

@retailcoder not sure if it's covered, but you know when you have a property get procedure which doesn't match the return type, and you try to view it in the...

@IvenBach clicking refresh again works for me, but agree it shouldn't be required Edit: I am doing a refactor rename from RD project explorer, so maybe it's different. But I...