diff options
| author | Raphael <glepnir@neovim.pro> | 2023-01-07 18:49:59 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-07 18:49:59 +0800 |
| commit | 41dc4e017395d73af0333705447e858b7db1f75e (patch) | |
| tree | bd198f56c77d22312e6441f71659c66a128da313 | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-41dc4e017395d73af0333705447e858b7db1f75e.tar nvim-lspconfig-41dc4e017395d73af0333705447e858b7db1f75e.tar.gz nvim-lspconfig-41dc4e017395d73af0333705447e858b7db1f75e.tar.bz2 nvim-lspconfig-41dc4e017395d73af0333705447e858b7db1f75e.tar.lz nvim-lspconfig-41dc4e017395d73af0333705447e858b7db1f75e.tar.xz nvim-lspconfig-41dc4e017395d73af0333705447e858b7db1f75e.tar.zst nvim-lspconfig-41dc4e017395d73af0333705447e858b7db1f75e.zip | |
docs: fix typo (#2382)
| -rw-r--r-- | doc/lspconfig.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lspconfig.txt b/doc/lspconfig.txt index 9e91d1b3..583f9778 100644 --- a/doc/lspconfig.txt +++ b/doc/lspconfig.txt @@ -237,7 +237,7 @@ configuration entry, such as `cmd`. > local lspconfig = require 'lspconfig' - lspconfig.util.on_setup = util.add_hook_before(lspconfig.util.on_setup, function(config) + lspconfig.util.on_setup = lspconfig.util.add_hook_before(lspconfig.util.on_setup, function(config) if some_condition and config.name == "clangd" then local custom_server_prefix = "/my/custom/server/prefix" config.cmd = { custom_server_prefix .. "/bin/clangd" } |
