diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-09-01 17:40:55 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-09-01 17:40:55 +0000 |
| commit | cb4765526f7201ce4ff0c49888f80c18da614e68 (patch) | |
| tree | 00be17f542377a8d4bbd917b65238775c543fec1 | |
| parent | feat(gh_actions_ls): handle "actions/readFile" request #4046 (diff) | |
| download | nvim-lspconfig-cb4765526f7201ce4ff0c49888f80c18da614e68.tar nvim-lspconfig-cb4765526f7201ce4ff0c49888f80c18da614e68.tar.gz nvim-lspconfig-cb4765526f7201ce4ff0c49888f80c18da614e68.tar.bz2 nvim-lspconfig-cb4765526f7201ce4ff0c49888f80c18da614e68.tar.lz nvim-lspconfig-cb4765526f7201ce4ff0c49888f80c18da614e68.tar.xz nvim-lspconfig-cb4765526f7201ce4ff0c49888f80c18da614e68.tar.zst nvim-lspconfig-cb4765526f7201ce4ff0c49888f80c18da614e68.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 10 | ||||
| -rw-r--r-- | doc/configs.txt | 8 |
2 files changed, 14 insertions, 4 deletions
diff --git a/doc/configs.md b/doc/configs.md index 3caad704..02a6788b 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -2344,11 +2344,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g6a330f893b" + version = "0.12.0-dev+gd4f789fd78" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+g6a330f893b" + version = "0.12.0-dev+gd4f789fd78" } } ``` @@ -4545,6 +4545,12 @@ Default config: ```lua { "yaml" } ``` +- `handlers` : + ```lua + { + ["actions/readFile"] = <function 1> + } + ``` - `init_options` : ```lua {} diff --git a/doc/configs.txt b/doc/configs.txt index 24ae0455..b6c514a3 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -1518,11 +1518,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g6a330f893b" + version = "0.12.0-dev+gd4f789fd78" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+g6a330f893b" + version = "0.12.0-dev+gd4f789fd78" } } - on_attach (use "gF" to view): ../lsp/copilot.lua:79 @@ -3192,6 +3192,10 @@ Default config: { "gh-actions-language-server", "--stdio" } - filetypes: >lua { "yaml" } +- handlers: >lua + { + ["actions/readFile"] = <function 1> + } - init_options: >lua {} - root_dir (use "gF" to view): ../lsp/gh_actions_ls.lua:18 |
