From 4f4c85cd3dd4d82d35c3f5cc3fa354f3bb371215 Mon Sep 17 00:00:00 2001 From: carsakiller Date: Sun, 15 Sep 2024 23:56:15 -0400 Subject: [PATCH 1/2] fix: `--configpath` typo --- src/content/wiki/configuration.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/wiki/configuration.mdx b/src/content/wiki/configuration.mdx index 8187c0d..ec844f1 100644 --- a/src/content/wiki/configuration.mdx +++ b/src/content/wiki/configuration.mdx @@ -12,8 +12,8 @@ The language server is highly configurable. You can view all of the settings in The language server loads its settings from one of the following sources, in order of priority: -1. The file specified by [`--config-path`](/wiki/arguments#config-path). -2. A [`.luarc.json`]() file in the workspace. +1. The file specified by [`--configpath`](/wiki/arguments#config-path). +2. A [`.luarc.json`](#luarcjson-file) file in the workspace. 3. The configuration file sent from the LSP client (like [`settings.json`](https://code.visualstudio.com/docs/getstarted/settings#_settingsjson) from VS Code). ## Configuration File From 0f5cf9a90a0b5f4ba32c578683eddb4f95d53c77 Mon Sep 17 00:00:00 2001 From: carsakiller Date: Sun, 15 Sep 2024 23:58:43 -0400 Subject: [PATCH 2/2] fix: link --- src/content/wiki/configuration.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/wiki/configuration.mdx b/src/content/wiki/configuration.mdx index ec844f1..c60e5a1 100644 --- a/src/content/wiki/configuration.mdx +++ b/src/content/wiki/configuration.mdx @@ -12,7 +12,7 @@ The language server is highly configurable. You can view all of the settings in The language server loads its settings from one of the following sources, in order of priority: -1. The file specified by [`--configpath`](/wiki/arguments#config-path). +1. The file specified by [`--configpath`](/wiki/usage#--configpath). 2. A [`.luarc.json`](#luarcjson-file) file in the workspace. 3. The configuration file sent from the LSP client (like [`settings.json`](https://code.visualstudio.com/docs/getstarted/settings#_settingsjson) from VS Code).