From c13322397eaf81735a97d93ba236702c218dc27b Mon Sep 17 00:00:00 2001 From: Andy Waite Date: Fri, 18 Jul 2025 05:46:36 -0400 Subject: [PATCH] docs: Document pull diagnostics support for Ruby (#34028) This is now supported. Release Notes: - N/A --- docs/src/languages/ruby.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/src/languages/ruby.md b/docs/src/languages/ruby.md index b7856b2cd0..6f530433bd 100644 --- a/docs/src/languages/ruby.md +++ b/docs/src/languages/ruby.md @@ -127,7 +127,7 @@ Solargraph reads its configuration from a file called `.solargraph.yml` in the r ## Setting up `ruby-lsp` -Ruby LSP uses pull-based diagnostics which Zed doesn't support yet. We can tell Zed to disable it by adding the following to your `settings.json`: +You can pass Ruby LSP configuration to `initialization_options`, e.g. ```json { @@ -140,8 +140,7 @@ Ruby LSP uses pull-based diagnostics which Zed doesn't support yet. We can tell "ruby-lsp": { "initialization_options": { "enabledFeatures": { - // This disables diagnostics - "diagnostics": false + // "someFeature": false } } }