aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/README_template.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/README_template.md b/scripts/README_template.md
index b7dfca0a..8b11e482 100644
--- a/scripts/README_template.md
+++ b/scripts/README_template.md
@@ -151,7 +151,11 @@ nvim_lsp.SERVER.setup({config})
{settings}
This is a table, and the keys are case sensitive. This is for the
- window/configuration event responses.
+ `workspace/configuration` event responses.
+ We also notify the server *once* on `initialize` with
+ `workspace/didChangeConfiguration`.
+ If you change the settings later on, you should send the notification
+ yourself with `client.workspace_did_change_configuration({settings})`
Example: `settings = { keyName = { subKey = 1 } }`
{on_attach}