Kapil Easwar
Kapil Easwar
**Is your feature request related to a problem? Please describe.** When I am presenting, I don't know if the camera circle is hiding important content. I am only looking at...
### What is the problem this feature would solve? This ```ts Match.value(val).pipe( Match.tagsExhaustive({ TagA: () => "a", }), ); ``` can be shortened to ```ts Match.valueTags(val, { TagA: () =>...
### Description Flag and/or auto-fix something like this: ```ts className={twMerge(`border-none flex-${options.grow ? "grow" : "shrink"}`)} ``` and maybe auto-fix There are a few conditions I can think of that matter:...
### Description Flag/auto-fix something like this: ```tsx className={twMerge("border-none")}` // Or if the single string is super long, in order to respect the printWidth className={twMerge(` some-multiline string-of-classes ... ... `)} ```...
### Description Flag and/or auto-fix something like this: ```tsx className={twMerge("border-none", "flex", ["hover:bg-blue", "outline-none"])} ``` into a single string: ```tsx className={twMerge("border-none flex hover:bg-blue outline-none")} ``` The goal: when you're using a...