Thorsten Ball

Results 480 comments of Thorsten Ball

`usePlaceholders` is the default by now: https://github.com/zed-industries/zed/blob/83592306c519266814cacdf8a6abfed6b283c01d/crates/languages/src/go.rs#L237 Well, since this PR: https://github.com/zed-industries/zed/pull/7780 It works for me: https://github.com/zed-industries/zed/assets/1185253/309723ca-f42f-49bb-b393-a4f7776495c4 Do you want to disable it?

Disabling works for me: https://github.com/zed-industries/zed/assets/1185253/f622e234-811b-4094-b4df-08cf6106b72f These are the `settings.json` I used: ```json { "vim_mode": true, "lsp": { "gopls": { "initialization_options": { "usePlaceholders": false } } } } ```

Great you found it and, ugh, sorry to hear you bumped into this. Will look into whether we can make the settings show an error.

There's still no fix, I plan on working on this in the near future, but am currently busy with the Linux port. Sorry!

I'm pretty sure with these settings and the latest version of the Ruby extension (which includes this: https://github.com/zed-industries/zed/pull/12742) this is fixed: ```json { "languages": { "Ruby": { "language_servers": ["tailwindcss-language-server", "..."]...

@feketegy not separately, yet, but you can define a color like this: ```json { "experimental.theme_overrides": { "hint": "#CCCCCC" } } ```

Just to leave an update here: I'm pretty sure I fixed this in https://github.com/zed-industries/zed/pull/12086. Turns out that `gopls` got stuck when opened at the root folder because it tried to...

It does work for me as a `formatter`. It also works in `code_actions_on_format`. https://github.com/zed-industries/zed/assets/1185253/d92af664-a12b-4514-b488-9be1b4679d5e Do you have anything in the logs? `~/Library/Logs/Zed/Zed.log` or the language server logs?

> Formatting doesn't work for me in `.vue` files which have `ts` errors. Not sure what the exact problem is: should we format when there are errors? (we have other...

Yeah, I'm not even sure whether that's the problem here. In your logs there's this: ``` 2024-05-03T13:29:15+02:00 [WARN] Generic lsp request to node failed: Request textDocument/codeAction failed with message: Cannot...