Sancha Kozlov

Results 24 comments of Sancha Kozlov

Made a simple plugin from scratch that works well with `remark@next`: https://gist.github.com/cah4a/9b75c531540e2891599453863dd24881 Don't know how well it is aligned with the plugins ecosystem. Patching `hProperties` seems not a very delicate...

Caporal.js is now the best solution I've seen. Would love to use a maintained fork.

Got this working using: ```tsx { if (item === "+create+") { return 1; } if (item.toLowerCase().includes(query.trim().toLowerCase())) { return 1; } return 0; }} > ``` and ```tsx const CommandCreateItem =...

I want this so badly... :)

More than three years left since pr, guys why it's not merged yet?

That's cool! Thanks! BooleanLiterals, BigIntLiteral, RegExpLiteral might be useful too. Maybe we could have the Literal Component with `value: unknown`, so it will render whatever you pass in?

I mean something like this: ```tsx ``` where an argument could be string, number, boolean, bigint, object, symbol, null, or undefined. I have a feeling the library should be able...

Hi @pblinux! I'm glad to hear that you are enjoying the package! I've made a simple package with test_coverage and it works well with `pub run test_coverage`: https://gist.github.com/cah4a/27797abcaf0c206a3e2c959d99dbcd53 Please consider...