diff options
| author | williambotman[bot] <107473453+williambotman@users.noreply.github.com> | 2022-09-15 12:02:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-15 10:02:43 +0000 |
| commit | 395038b9610f4b95f3cf51fdf61609ba7ed74f7c (patch) | |
| tree | d88901ee9bd274873fafc5b06b0031c5895c1592 | |
| parent | fix(dotnet): remove unnecessary nil check (#420) (diff) | |
| download | mason-395038b9610f4b95f3cf51fdf61609ba7ed74f7c.tar mason-395038b9610f4b95f3cf51fdf61609ba7ed74f7c.tar.gz mason-395038b9610f4b95f3cf51fdf61609ba7ed74f7c.tar.bz2 mason-395038b9610f4b95f3cf51fdf61609ba7ed74f7c.tar.lz mason-395038b9610f4b95f3cf51fdf61609ba7ed74f7c.tar.xz mason-395038b9610f4b95f3cf51fdf61609ba7ed74f7c.tar.zst mason-395038b9610f4b95f3cf51fdf61609ba7ed74f7c.zip | |
chore: update generated code (#421)
| -rw-r--r-- | PACKAGES.md | 2 | ||||
| -rw-r--r-- | lua/mason-schemas/lsp/rome.lua | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/PACKAGES.md b/PACKAGES.md index 35b7ca56..8bedcc01 100644 --- a/PACKAGES.md +++ b/PACKAGES.md @@ -2035,6 +2035,7 @@ Categories: `LSP` <details> <summary>History:</summary> +- [`07d949a`](https://github.com/williamboman/mason.nvim/commit/07d949a) 2022-09-14 - fix(r-languageserver): use github releases as version source ([#417](https://github.com/williamboman/mason.nvim/issues/417)) by William Boman - [`976aa4f`](https://github.com/williamboman/mason.nvim/commit/976aa4f) 2022-07-08 - refactor: add mason-schemas and mason-core modules ([#29](https://github.com/williamboman/mason.nvim/issues/29)) by William Boman - [`8cad236`](https://github.com/williamboman/mason.nvim/commit/8cad236) 2022-07-08 - refactor: move packages to mason-registry ([#27](https://github.com/williamboman/mason.nvim/issues/27)) by William Boman </details> @@ -3296,6 +3297,7 @@ Categories: `LSP` <details> <summary>History:</summary> +- [`07d949a`](https://github.com/williamboman/mason.nvim/commit/07d949a) 2022-09-14 - fix(r-languageserver): use github releases as version source ([#417](https://github.com/williamboman/mason.nvim/issues/417)) by William Boman - [`18ba623`](https://github.com/williamboman/mason.nvim/commit/18ba623) 2022-07-20 - refactor(omnisharp)!: separate mono into its own package ([#101](https://github.com/williamboman/mason.nvim/issues/101)) by William Boman - [`ca2385a`](https://github.com/williamboman/mason.nvim/commit/ca2385a) 2022-07-13 - feat: add more wrapper executables for packages that don't provide one ([#63](https://github.com/williamboman/mason.nvim/issues/63)) by William Boman - [`976aa4f`](https://github.com/williamboman/mason.nvim/commit/976aa4f) 2022-07-08 - refactor: add mason-schemas and mason-core modules ([#29](https://github.com/williamboman/mason.nvim/issues/29)) by William Boman diff --git a/lua/mason-schemas/lsp/rome.lua b/lua/mason-schemas/lsp/rome.lua index c2210f46..978573ff 100644 --- a/lua/mason-schemas/lsp/rome.lua +++ b/lua/mason-schemas/lsp/rome.lua @@ -1,3 +1,3 @@ -- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. -- stylua: ignore start -return {properties = {["rome.lspBin"] = {default = vim.NIL,markdownDescription = "The rome lsp server executable.",type = { "string", "null" }},["rome_lsp.trace.server"] = {default = "off",description = "Traces the communication between VS Code and the language server.",enum = { "off", "messages", "verbose" },enumDescriptions = { "No traces", "Error only", "Full log" },scope = "window",type = "string"}},title = "Rome",type = "object"}
\ No newline at end of file +return {properties = {["rome.lspBin"] = {default = vim.NIL,markdownDescription = "The rome lsp server executable. If the path is relative, the workspace folder will be used as base path",type = { "string", "null" }},["rome_lsp.trace.server"] = {default = "off",description = "Traces the communication between VS Code and the language server.",enum = { "off", "messages", "verbose" },enumDescriptions = { "No traces", "Error only", "Full log" },scope = "window",type = "string"}},title = "Rome",type = "object"}
\ No newline at end of file |
