From 05d25c121e07c464d6b4203204aa113453eca152 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 10 Dec 2024 01:30:45 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc, schemas and annotations --- schemas/rust_analyzer.json | 2 +- schemas/ts_ls.json | 2 +- types/lsp.lua | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/schemas/rust_analyzer.json b/schemas/rust_analyzer.json index 43ad7ac..4a99313 100644 --- a/schemas/rust_analyzer.json +++ b/schemas/rust_analyzer.json @@ -1470,7 +1470,7 @@ "type": "boolean" }, "rust-analyzer.typing.excludeChars": { - "default": "<", + "default": "|<", "markdownDescription": "Specify the characters to exclude from triggering typing assists. The default trigger characters are `.`, `=`, `<`, `>`, `{`, and `(`.", "type": [ "null", diff --git a/schemas/ts_ls.json b/schemas/ts_ls.json index ac2849d..7e0628d 100644 --- a/schemas/ts_ls.json +++ b/schemas/ts_ls.json @@ -586,7 +586,7 @@ }, "typescript.experimental.expandableHover": { "default": false, - "description": "Enable/disable expanding on hover.", + "description": "Enable expanding/contracting the hover to reveal more/less information from the TS server.", "scope": "window", "tags": [ "experimental" diff --git a/types/lsp.lua b/types/lsp.lua index 5cdee5f..7d21200 100644 --- a/types/lsp.lua +++ b/types/lsp.lua @@ -14241,7 +14241,7 @@ -- Specify the characters to exclude from triggering typing assists. The default trigger characters are `.`, `=`, `<`, `>`, `{`, and `(`. -- -- ```lua --- default = "<" +-- default = "|<" -- ``` ---@field excludeChars string @@ -16388,7 +16388,7 @@ ---@field npmIsInstalled boolean ---@class _.lspconfig.settings.ts_ls.Experimental --- Enable/disable expanding on hover. +-- Enable expanding/contracting the hover to reveal more/less information from the TS server. ---@field expandableHover boolean ---@class _.lspconfig.settings.ts_ls.Format