From c2fa9d79814c2124da0d4f8a0c3dfcf075505ac0 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 4 Sep 2025 15:25:52 -0400 Subject: [PATCH] docs: Add configuration example for `simple-completion-language-server` (#37566) This PR adds a configuration example for the `simple-completion-language-server`. We show the user how to re-enable the `feature_paths` option, as we're now disabling it by default (https://github.com/zed-industries/zed/pull/37565). Release Notes: - N/A --- docs/src/snippets.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/src/snippets.md b/docs/src/snippets.md index 3514d08340e8f1d04287ffde0150281149625476..b5d09c6c37b6f869c11dbbc524a8515fde7d4142 100644 --- a/docs/src/snippets.md +++ b/docs/src/snippets.md @@ -40,4 +40,20 @@ To create JSX snippets you have to use `javascript.json` snippets file, instead ## See also +The `feature_paths` option in `simple-completion-language-server` is disabled by default. + +If you want to enable it you can add the following to your `settings.json`: + +```json +{ + "lsp": { + "snippet-completion-server": { + "settings": { + "feature_paths": true + } + } + } +} +``` + For more configuration information, see the [`simple-completion-language-server` instructions](https://github.com/zed-industries/simple-completion-language-server/tree/main).