Joe Fitzgerald

Results 79 comments of Joe Fitzgerald

Type CMD-Option-I and see if any errors are being printed to the console. This may be an issue with linter (as opposed to gometalinter-linter).

LSP support was added via https://github.com/makifdb/zed-templ/pull/2.

This seems worth doing. I will think through how we resolve this in the client in https://github.com/cloudfoundry-community/go-uaa/issues/5.

Please try updating to `v6.10.0`, which includes #301 (thanks @xanderflood!). Let me know if that resolves the issue fully.

In the meantime, I have added a `pre-commit` hook to my repo, which prevents you from committing without exiting watch mode: `.git/hooks/pre-commit` (don't forget to make the file executable: `chmod...

If the environment variable were only checked once (perhaps via `func init() { }`) per execution of the application, I would imagine the performance impact would be negligible. I would...

Given you're generating code, you could avoid a function call in production by adding a (cheap) conditional check based on a global variable. e.g. ```go // somewhere deep inside templ...

#1027 works great for me! I can run in watch mode, change a `.templ` file, see the modified `.go` file, and not worry about exiting dev mode before committing. That...

PRs are always welcome!