aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2024-10-09 20:52:54 +0200
committerJustin M. Keyes <justinkz@gmail.com>2024-10-09 20:52:54 +0200
commitff69ecca55d83ffc70657f260a799f79a5637831 (patch)
tree3b053f4887f2a7563500c3800b3ff67b8493b86c
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-ff69ecca55d83ffc70657f260a799f79a5637831.tar
nvim-lspconfig-ff69ecca55d83ffc70657f260a799f79a5637831.tar.gz
nvim-lspconfig-ff69ecca55d83ffc70657f260a799f79a5637831.tar.bz2
nvim-lspconfig-ff69ecca55d83ffc70657f260a799f79a5637831.tar.lz
nvim-lspconfig-ff69ecca55d83ffc70657f260a799f79a5637831.tar.xz
nvim-lspconfig-ff69ecca55d83ffc70657f260a799f79a5637831.tar.zst
nvim-lspconfig-ff69ecca55d83ffc70657f260a799f79a5637831.zip
docs: fix old URL
-rw-r--r--doc/configs.md2
-rw-r--r--doc/configs.txt2
-rw-r--r--lua/lspconfig/configs/clangd.lua2
-rw-r--r--scripts/docgen.lua2
4 files changed, 4 insertions, 4 deletions
diff --git a/doc/configs.md b/doc/configs.md
index 4baafe68..742ecb9d 100644
--- a/doc/configs.md
+++ b/doc/configs.md
@@ -1976,7 +1976,7 @@ require'lspconfig'.circom-lsp.setup{}
https://clangd.llvm.org/installation.html
-- **NOTE:** Clang >= 11 is recommended! See [#23](https://github.com/neovim/nvim-lsp/issues/23).
+- **NOTE:** Clang >= 11 is recommended! See [#23](https://github.com/neovim/nvim-lspconfig/issues/23).
- If `compile_commands.json` lives in a build directory, you should
symlink it to the root of your source tree.
```
diff --git a/doc/configs.txt b/doc/configs.txt
index 4baafe68..742ecb9d 100644
--- a/doc/configs.txt
+++ b/doc/configs.txt
@@ -1976,7 +1976,7 @@ require'lspconfig'.circom-lsp.setup{}
https://clangd.llvm.org/installation.html
-- **NOTE:** Clang >= 11 is recommended! See [#23](https://github.com/neovim/nvim-lsp/issues/23).
+- **NOTE:** Clang >= 11 is recommended! See [#23](https://github.com/neovim/nvim-lspconfig/issues/23).
- If `compile_commands.json` lives in a build directory, you should
symlink it to the root of your source tree.
```
diff --git a/lua/lspconfig/configs/clangd.lua b/lua/lspconfig/configs/clangd.lua
index d6cb0295..f5fc804d 100644
--- a/lua/lspconfig/configs/clangd.lua
+++ b/lua/lspconfig/configs/clangd.lua
@@ -92,7 +92,7 @@ return {
description = [[
https://clangd.llvm.org/installation.html
-- **NOTE:** Clang >= 11 is recommended! See [#23](https://github.com/neovim/nvim-lsp/issues/23).
+- **NOTE:** Clang >= 11 is recommended! See [#23](https://github.com/neovim/nvim-lspconfig/issues/23).
- If `compile_commands.json` lives in a build directory, you should
symlink it to the root of your source tree.
```
diff --git a/scripts/docgen.lua b/scripts/docgen.lua
index cbc14ad8..719e711c 100644
--- a/scripts/docgen.lua
+++ b/scripts/docgen.lua
@@ -153,7 +153,7 @@ local function make_lsp_sections()
})
if docs then
- local tempdir = os.getenv 'DOCGEN_TEMPDIR' or uv.fs_mkdtemp '/tmp/nvim-lsp.XXXXXX'
+ local tempdir = os.getenv 'DOCGEN_TEMPDIR' or uv.fs_mkdtemp '/tmp/nvim-lspconfig.XXXXXX'
local preamble_parts = make_parts {
function()
if docs.description and #docs.description > 0 then