Results 114 comments of Greg Werbin

Unfortunately I don't see any such output in my case. I just see the "already clean!" message. Would it help to post my compiled packer script?

+1, this would be a nice utility! A basic implementation: ```python from __future__ import annotations from typing import TYPE_CHECKING, Callable, TypeVar import attr _S = TypeVar("_S") _T = TypeVar("_T") if...

That's a great idea @wbolster. My example implementation above already uses general "truthiness" with the `if not ...` check, but the types could be updated to something like this: ```python...

If anyone has suggestions of what the test cases should be, I will try to make the time for a PR.

I totally understand your situation! I started looking into the Iron source code and found it fairly readable. But I'm myself trying to spend more time with family and less...

I currently have this in my config, which seems to work well: ```vim function! IronRepl2(ft = '', repl_name = '') abort let l:ft = a:ft == '' ? nvim_buf_get_option('filetype') :...

Does this depend on adding 3.1 support to Swagger Parser? https://github.com/swagger-api/swagger-parser/issues/1535 It looks like a lot of downstream projects are depending on 3.1 support from one or both of Swagger...

@soyuka the OpenAPI 3.1 specification mandates that schema documents themselves conform to JSON Schema Draft 2020-12. So a JSON Schema validator that supports the 2020-12 draft is essential for supporting...

If you don't want to allow users to create objects in the global/top-level namespace, what if we had a top-level `user` object? Maybe we could also create sub-objects and attributes...

You have my +1 for the *mode stack* concept. It's similar to how [QMK keyboard firmware](https://qmk.fm/) implements layers. Worth noting that there is some prior art in how Openbox represents...