Johannes Altmanninger

Results 733 comments of Johannes Altmanninger

Ok I got templ to work. I get Go completions now. But no HTML tag completions from htmx-lsp2 (which works in Helix). I verified that both Helix and kakoune-lsp send...

reported as https://github.com/uros-5/htmx-lsp2/issues/4

I didn't try attribute completions because not even tag completions worked (they should appear after typing `

I'm not sure how to make it configurable without introducing a ton of faces. ``` set-option buffer lsp_inline_diagnostics %val{timestamp} 66.5,66.17|DiagnosticError set-option buffer lsp_inline_diagnostics %val{timestamp} 66.5,66.17|+s set-option buffer lsp_inline_diagnostics %val{timestamp} 66.5,66.17|+s@DiagnosticError...

I guess we could add config options that default to `s` and `d`. ```diff diff --git a/src/capabilities.rs b/src/capabilities.rs index af233dd..f9e6b78 100644 --- a/src/capabilities.rs +++ b/src/capabilities.rs @@ -274,7 +274,12 @@ pub...

oh we can probably add a new ranges highlighter next to lsp_inline_diagnostics for each tag. The faces will be applied in definition order and blend I think

One problem is that, given a deprecated struct field, an initialization of the struct field that spans multiple lines has strikethrough applied throughout, including in whitespace which looks weird. I'm...

the field name in this case would work, but I don't think we want to use a range that's different from the one given by the language server

maybe a `BufOpenFifo=\*hover\*` hook that registers a `BufCloseFifo` hook that adds your content? The reason why `*hover*` uses fifos instead of writing everything to the buffer directly is that only...

> I want to write a fish pre-exec function that echos the command entered > by the user but with aliases undone, to provide extra transparency to the > user...