Jonathan Loughlin

Results 9 comments of Jonathan Loughlin

If you are using Neovim, you can run your formatters with https://github.com/stevearc/conform.nvim, which has injected language support through tree sitter. I use it to run biome on the JavaScript portions...

``` return { "stevearc/conform.nvim", event = { "BufWritePre" }, cmd = { "ConformInfo" }, opts = { formatters_by_ft = { lua = { "stylua" }, go = { "goimports", "gofumpt"...

Just checked the discord, downgrading mesa fixed my issue `sudo pacman -U /var/cache/pacman/pkg/mesa-1:23.3.3-1-x86_64.pkg.tar.zst`

The AUR had the same issue. All that AUR package does is install the release package from warp so it shouldn't have made any difference. Are you on nvidia or...

The repo https://github.com/Melkeydev/go-blueprint had added an option for a templ/htmx starter project. An option could be to mention it in the docs.

The issue is 3 [here](https://github.com/neovim/nvim-lspconfig#troubleshooting). Tailwind's lsp looks for a file listed [here](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#tailwindcss). If it doesn't find one it doesn't know where to start. It's not a templ specific issue...

I think that bug fix should really only effect the formatting of attributes on multiple lines. It seems the generator isn't spacing the elements correctly. Gonna take a swing at...

I forgot to update my fork before throwing together this rough demo commit of what a fix would look like but I was testing on the most recent commit and...

This was a bug in `templ fmt` fixed [here](https://github.com/a-h/templ/pull/346). Update templ and the issue should be fixed.