Anton Medvedev
Anton Medvedev
> Even if a function is defined in a fetcher, expr still used FetchFn and uses reflection unlike pure variables in a struct. FetchFn is guaranteed to use reflection. ```go...
Add support for tags `expr:"..."` for names aliases. ```go type Env struct { Value int `expr:"value"` } ``` And now it's will be possible to use `value` instead of `Value`...
Given bytecode: ``` 0 OpTrue 1 OpJumpIfTrue 2 (6) 4 OpPop 5 OpTrue 6 OpJumpIfTrue 2 (11) 9 OpPop 10 OpTrue 11 OpJumpIfTrue 2 (16) 14 OpPop 15 OpTrue ```...
I'd like to be able to see the system cursor in my app. Is it possible? Thanks.
Hi, I’d like to add autocomplete with dropdown to fx. But find if really difficult. Will be cool if bubbletea has some API to simplify dropdowns/popovers. For example, I have...
Hi! I encountered some strange issue with my project: https://fx.wtf If I do go run, everything works. ``` node -e 'console.log(123)' | go run . ``` But if I do...
I want to create something like fzf. The fzf renders to stderr, while returning content to stdour. So next is possible (fzf will open interactive TUI): ``` fzf | cat...
Hi, I'm building a new tool that requires a lot of Render calls (right now I prerender every line for a viewbox). The cpu profile shows lipgloss.Render func is taking...