From 5f634e0c37e723fc0c33e06b4fd5c2180178db40 Mon Sep 17 00:00:00 2001 From: William Boman Date: Wed, 6 Jul 2022 19:41:43 +0200 Subject: mason.nvim --- lua/mason-lspconfig/init.lua | 139 +++ lua/mason-lspconfig/server-mapping.lua | 130 +++ .../server_configurations/angularls/init.lua | 41 + .../server_configurations/apex_ls/init.lua | 8 + .../server_configurations/bicep/init.lua | 8 + .../server_configurations/bsl_ls/init.lua | 12 + .../server_configurations/elixirls/init.lua | 15 + .../server_configurations/esbonio/init.lua | 6 + .../server_configurations/groovyls/init.lua | 8 + .../haxe_language_server/init.lua | 8 + .../server_configurations/jdtls/README.md | 33 + .../server_configurations/jdtls/init.lua | 78 ++ .../server_configurations/julials/README.md | 9 + .../server_configurations/julials/init.lua | 50 + .../server_configurations/omnisharp/README.md | 14 + .../server_configurations/omnisharp/init.lua | 32 + .../server_configurations/perlnavigator/init.lua | 12 + .../server_configurations/powershell_es/init.lua | 6 + .../server_configurations/pylsp/README.md | 16 + .../server_configurations/pylsp/init.lua | 51 + .../r_language_server/init.lua | 8 + .../server_configurations/rescriptls/init.lua | 8 + .../server_configurations/solang/init.lua | 14 + .../server_configurations/tflint/README.md | 14 + .../server_configurations/visualforce_ls/init.lua | 21 + .../server_configurations/volar/init.lua | 29 + lua/mason-lspconfig/settings.lua | 27 + lua/mason.lua | 30 + .../lsp-schemas/astro-language-server.lua | 3 + .../lsp-schemas/bash-language-server.lua | 3 + lua/mason/_generated/lsp-schemas/clangd.lua | 3 + lua/mason/_generated/lsp-schemas/deno-lsp.lua | 3 + lua/mason/_generated/lsp-schemas/elixir-ls.lua | 3 + .../_generated/lsp-schemas/elm-language-server.lua | 3 + .../_generated/lsp-schemas/fsautocomplete.lua | 3 + .../lsp-schemas/grammarly-languageserver.lua | 3 + .../lsp-schemas/haxe-language-server.lua | 3 + lua/mason/_generated/lsp-schemas/html-lsp.lua | 3 + lua/mason/_generated/lsp-schemas/intelephense.lua | 3 + lua/mason/_generated/lsp-schemas/jdtls.lua | 3 + lua/mason/_generated/lsp-schemas/json-lsp.lua | 3 + lua/mason/_generated/lsp-schemas/julia-lsp.lua | 3 + .../lsp-schemas/kotlin-language-server.lua | 3 + lua/mason/_generated/lsp-schemas/ltex-ls.lua | 3 + .../_generated/lsp-schemas/lua-language-server.lua | 3 + .../_generated/lsp-schemas/nickel-lang-lsp.lua | 3 + .../_generated/lsp-schemas/omnisharp-roslyn.lua | 3 + lua/mason/_generated/lsp-schemas/perlnavigator.lua | 3 + lua/mason/_generated/lsp-schemas/psalm.lua | 3 + .../lsp-schemas/puppet-editor-services.lua | 3 + .../lsp-schemas/purescript-language-server.lua | 3 + lua/mason/_generated/lsp-schemas/pyright.lua | 3 + .../_generated/lsp-schemas/python-lsp-server.lua | 3 + .../_generated/lsp-schemas/r-languageserver.lua | 3 + lua/mason/_generated/lsp-schemas/rescript-lsp.lua | 3 + lua/mason/_generated/lsp-schemas/rome.lua | 3 + lua/mason/_generated/lsp-schemas/rust-analyzer.lua | 3 + lua/mason/_generated/lsp-schemas/solargraph.lua | 3 + lua/mason/_generated/lsp-schemas/sorbet.lua | 3 + lua/mason/_generated/lsp-schemas/stylelint-lsp.lua | 3 + .../lsp-schemas/svelte-language-server.lua | 3 + .../lsp-schemas/tailwindcss-language-server.lua | 3 + .../lsp-schemas/typescript-language-server.lua | 3 + lua/mason/_generated/lsp-schemas/vetur-vls.lua | 3 + .../_generated/lsp-schemas/vue-language-server.lua | 3 + .../lsp-schemas/yaml-language-server.lua | 3 + lua/mason/_generated/lsp-schemas/zls.lua | 3 + lua/mason/_generated/lspconfig_filetype_map.lua | 162 +++ lua/mason/_generated/package_index.lua | 131 +++ lua/mason/command-api/init.lua | 81 ++ lua/mason/core/EventEmitter.lua | 64 ++ lua/mason/core/async/control.lua | 75 ++ lua/mason/core/async/init.lua | 245 +++++ lua/mason/core/async/uv.lua | 49 + lua/mason/core/clients/eclipse.lua | 15 + lua/mason/core/fetch.lua | 122 +++ lua/mason/core/fs.lua | 152 +++ lua/mason/core/functional/data.lua | 30 + lua/mason/core/functional/function.lua | 89 ++ lua/mason/core/functional/init.lua | 111 ++ lua/mason/core/functional/list.lua | 175 ++++ lua/mason/core/functional/logic.lua | 63 ++ lua/mason/core/functional/number.lua | 34 + lua/mason/core/functional/relation.lua | 17 + lua/mason/core/functional/string.lua | 68 ++ lua/mason/core/functional/table.lua | 45 + lua/mason/core/functional/type.lua | 14 + lua/mason/core/installer/context.lua | 262 +++++ lua/mason/core/installer/handle.lua | 214 ++++ lua/mason/core/installer/init.lua | 176 ++++ lua/mason/core/installer/linker.lua | 84 ++ lua/mason/core/managers/cargo/client.lua | 14 + lua/mason/core/managers/cargo/init.lua | 138 +++ lua/mason/core/managers/composer/init.lua | 131 +++ lua/mason/core/managers/dotnet/init.lua | 65 ++ lua/mason/core/managers/gem/init.lua | 156 +++ lua/mason/core/managers/git/init.lua | 74 ++ lua/mason/core/managers/github/client.lua | 116 ++ lua/mason/core/managers/github/init.lua | 170 +++ lua/mason/core/managers/go/init.lua | 139 +++ lua/mason/core/managers/luarocks/init.lua | 135 +++ lua/mason/core/managers/npm/init.lua | 143 +++ lua/mason/core/managers/opam/init.lua | 69 ++ lua/mason/core/managers/pip3/init.lua | 171 +++ lua/mason/core/managers/powershell/init.lua | 46 + lua/mason/core/managers/std/init.lua | 188 ++++ lua/mason/core/optional.lua | 100 ++ lua/mason/core/package/indexer.lua | 89 ++ lua/mason/core/package/init.lua | 205 ++++ lua/mason/core/package/version-check.lua | 89 ++ lua/mason/core/path.lua | 51 + lua/mason/core/platform.lua | 157 +++ lua/mason/core/process.lua | 213 ++++ lua/mason/core/receipt.lua | 180 ++++ lua/mason/core/result.lua | 152 +++ lua/mason/core/spawn.lua | 112 ++ lua/mason/core/ui/display.lua | 507 +++++++++ lua/mason/core/ui/init.lua | 203 ++++ lua/mason/core/ui/state.lua | 24 + lua/mason/health/init.lua | 299 ++++++ lua/mason/log.lua | 174 +++ lua/mason/notify.lua | 13 + .../packages/angular-language-server/init.lua | 11 + .../packages/ansible-language-server/init.lua | 11 + lua/mason/packages/apex-language-server/init.lua | 38 + .../packages/arduino-language-server/init.lua | 44 + lua/mason/packages/asm-lsp/init.lua | 13 + lua/mason/packages/astro-language-server/init.lua | 11 + lua/mason/packages/awk-language-server/init.lua | 11 + lua/mason/packages/bash-language-server/init.lua | 11 + .../packages/beancount-language-server/init.lua | 13 + lua/mason/packages/bicep-lsp/init.lua | 29 + lua/mason/packages/bsl-language-server/init.lua | 21 + lua/mason/packages/ccls/common.lua | 47 + lua/mason/packages/ccls/init.lua | 17 + lua/mason/packages/ccls/linux.lua | 73 ++ lua/mason/packages/ccls/mac.lua | 22 + lua/mason/packages/clangd/init.lua | 40 + lua/mason/packages/clarity-lsp/init.lua | 27 + lua/mason/packages/clojure-lsp/init.lua | 31 + lua/mason/packages/cmake-language-server/init.lua | 11 + lua/mason/packages/codelldb/init.lua | 32 + lua/mason/packages/codeql/init.lua | 28 + lua/mason/packages/cpptools/init.lua | 40 + lua/mason/packages/crystalline/init.lua | 29 + lua/mason/packages/csharp-language-server/init.lua | 11 + lua/mason/packages/css-lsp/init.lua | 11 + .../packages/cssmodules-language-server/init.lua | 11 + .../packages/cucumber-language-server/init.lua | 11 + lua/mason/packages/debugpy/init.lua | 11 + lua/mason/packages/deno/init.lua | 28 + lua/mason/packages/dhall-lsp/init.lua | 67 ++ .../packages/diagnostic-languageserver/init.lua | 11 + .../packages/dockerfile-language-server/init.lua | 11 + lua/mason/packages/dot-language-server/init.lua | 11 + lua/mason/packages/efm/init.lua | 11 + lua/mason/packages/elixir-ls/init.lua | 19 + lua/mason/packages/elm-format/init.lua | 11 + lua/mason/packages/elm-language-server/init.lua | 11 + lua/mason/packages/ember-language-server/init.lua | 11 + lua/mason/packages/emmet-ls/init.lua | 11 + lua/mason/packages/erlang-ls/init.lua | 34 + lua/mason/packages/esbonio/init.lua | 11 + lua/mason/packages/eslint-lsp/init.lua | 11 + lua/mason/packages/flux-lsp/init.lua | 14 + lua/mason/packages/foam-language-server/init.lua | 11 + lua/mason/packages/fortls/init.lua | 11 + lua/mason/packages/fsautocomplete/init.lua | 13 + .../packages/golangci-lint-langserver/init.lua | 11 + lua/mason/packages/golangci-lint/init.lua | 11 + lua/mason/packages/gopls/init.lua | 11 + .../packages/grammarly-languageserver/init.lua | 11 + .../packages/graphql-language-service-cli/init.lua | 11 + lua/mason/packages/groovy-language-server/init.lua | 22 + .../packages/haskell-language-server/init.lua | 65 ++ lua/mason/packages/haxe-language-server/init.lua | 25 + lua/mason/packages/hoon-language-server/init.lua | 11 + lua/mason/packages/html-lsp/init.lua | 11 + lua/mason/packages/intelephense/init.lua | 11 + lua/mason/packages/jdtls/init.lua | 44 + lua/mason/packages/jedi-language-server/init.lua | 11 + lua/mason/packages/json-lsp/init.lua | 11 + .../packages/jsonnet-language-server/init.lua | 11 + lua/mason/packages/julia-lsp/init.lua | 57 + lua/mason/packages/kotlin-language-server/init.lua | 28 + lua/mason/packages/lelwel/init.lua | 14 + lua/mason/packages/lemminx/init.lua | 41 + lua/mason/packages/lemmy-help/init.lua | 14 + lua/mason/packages/ltex-ls/init.lua | 72 ++ lua/mason/packages/lua-language-server/init.lua | 60 ++ lua/mason/packages/marksman/init.lua | 30 + lua/mason/packages/metamath-zero-lsp/init.lua | 24 + lua/mason/packages/mockdebug/init.lua | 23 + lua/mason/packages/nickel-lang-lsp/init.lua | 15 + lua/mason/packages/nimlsp/init.lua | 22 + lua/mason/packages/ocaml-lsp/init.lua | 11 + lua/mason/packages/omnisharp-roslyn/init.lua | 41 + lua/mason/packages/opencl-language-server/init.lua | 40 + lua/mason/packages/perlnavigator/init.lua | 11 + lua/mason/packages/phpactor/init.lua | 25 + .../packages/powershell-editor-services/init.lua | 19 + lua/mason/packages/prisma-language-server/init.lua | 11 + lua/mason/packages/prosemd-lsp/init.lua | 30 + lua/mason/packages/psalm/init.lua | 20 + lua/mason/packages/puppet-editor-services/init.lua | 24 + .../packages/purescript-language-server/init.lua | 11 + lua/mason/packages/pyright/init.lua | 11 + lua/mason/packages/python-lsp-server/init.lua | 11 + lua/mason/packages/quick-lint-js/init.lua | 50 + lua/mason/packages/r-languageserver/init.lua | 71 ++ lua/mason/packages/reason-language-server/init.lua | 36 + lua/mason/packages/remark-language-server/init.lua | 11 + lua/mason/packages/rescript-lsp/init.lua | 19 + lua/mason/packages/rnix-lsp/init.lua | 13 + lua/mason/packages/robotframework-lsp/init.lua | 11 + lua/mason/packages/rome/init.lua | 19 + lua/mason/packages/rust-analyzer/init.lua | 51 + lua/mason/packages/salt-lsp/init.lua | 11 + lua/mason/packages/serve-d/init.lua | 47 + lua/mason/packages/shellcheck/init.lua | 38 + lua/mason/packages/shopify-theme-check/init.lua | 11 + lua/mason/packages/slint-lsp/init.lua | 32 + lua/mason/packages/solang/init.lua | 61 ++ lua/mason/packages/solargraph/init.lua | 11 + lua/mason/packages/solidity/init.lua | 30 + lua/mason/packages/sorbet/init.lua | 11 + lua/mason/packages/sourcery/init.lua | 11 + lua/mason/packages/sqlls/init.lua | 11 + lua/mason/packages/sqls/init.lua | 11 + lua/mason/packages/stylelint-lsp/init.lua | 11 + lua/mason/packages/stylua/init.lua | 13 + lua/mason/packages/svelte-language-server/init.lua | 11 + lua/mason/packages/svlangserver/init.lua | 11 + lua/mason/packages/svls/init.lua | 13 + .../packages/tailwindcss-language-server/init.lua | 11 + lua/mason/packages/taplo/init.lua | 14 + lua/mason/packages/teal-language-server/init.lua | 14 + lua/mason/packages/terraform-ls/init.lua | 33 + lua/mason/packages/texlab/init.lua | 39 + lua/mason/packages/tflint/init.lua | 30 + .../packages/typescript-language-server/init.lua | 11 + lua/mason/packages/vala-language-server/init.lua | 40 + lua/mason/packages/verible/init.lua | 85 ++ lua/mason/packages/vetur-vls/init.lua | 11 + lua/mason/packages/vim-language-server/init.lua | 11 + .../packages/visualforce-language-server/init.lua | 32 + lua/mason/packages/vls/init.lua | 36 + lua/mason/packages/vue-language-server/init.lua | 11 + lua/mason/packages/wgsl-analyzer/init.lua | 16 + lua/mason/packages/yaml-language-server/init.lua | 11 + lua/mason/packages/zk/init.lua | 51 + lua/mason/packages/zls/init.lua | 32 + lua/mason/settings.lua | 79 ++ lua/mason/ui/components/footer.lua | 17 + lua/mason/ui/components/header.lua | 22 + lua/mason/ui/components/help/dap.lua | 20 + lua/mason/ui/components/help/init.lua | 153 +++ lua/mason/ui/components/help/lsp.lua | 23 + lua/mason/ui/components/json-schema.lua | 177 ++++ lua/mason/ui/components/language-filter.lua | 31 + lua/mason/ui/components/main/init.lua | 12 + lua/mason/ui/components/main/package_list.lua | 291 +++++ lua/mason/ui/components/tabs.lua | 38 + lua/mason/ui/init.lua | 11 + lua/mason/ui/instance.lua | 578 ++++++++++ lua/mason/ui/palette.lua | 55 + lua/nvim-lsp-installer.lua | 284 ----- lua/nvim-lsp-installer/_generated/filetype_map.lua | 167 --- .../_generated/language_autocomplete_map.lua | 47 - lua/nvim-lsp-installer/_generated/metadata.lua | 373 ------- .../_generated/schemas/astro.lua | 3 - .../_generated/schemas/bashls.lua | 3 - .../_generated/schemas/clangd.lua | 3 - .../_generated/schemas/denols.lua | 3 - .../_generated/schemas/elixirls.lua | 3 - .../_generated/schemas/elmls.lua | 3 - .../_generated/schemas/grammarly.lua | 3 - .../_generated/schemas/intelephense.lua | 3 - .../_generated/schemas/jdtls.lua | 3 - .../_generated/schemas/jsonls.lua | 3 - .../_generated/schemas/julials.lua | 3 - .../_generated/schemas/kotlin_language_server.lua | 3 - lua/nvim-lsp-installer/_generated/schemas/ltex.lua | 3 - .../_generated/schemas/nickel_ls.lua | 3 - .../_generated/schemas/perlnavigator.lua | 3 - .../_generated/schemas/psalm.lua | 3 - .../_generated/schemas/puppet.lua | 3 - .../_generated/schemas/purescriptls.lua | 3 - .../_generated/schemas/pylsp.lua | 3 - .../_generated/schemas/pyright.lua | 3 - .../_generated/schemas/r_language_server.lua | 3 - lua/nvim-lsp-installer/_generated/schemas/rome.lua | 3 - .../_generated/schemas/rust_analyzer.lua | 3 - .../_generated/schemas/solargraph.lua | 3 - .../_generated/schemas/sorbet.lua | 3 - .../_generated/schemas/stylelint_lsp.lua | 3 - .../_generated/schemas/sumneko_lua.lua | 3 - .../_generated/schemas/svelte.lua | 3 - .../_generated/schemas/volar.lua | 3 - .../_generated/schemas/vuels.lua | 3 - .../_generated/schemas/yamlls.lua | 3 - lua/nvim-lsp-installer/core/async/init.lua | 224 ---- lua/nvim-lsp-installer/core/async/uv.lua | 49 - lua/nvim-lsp-installer/core/clients/eclipse.lua | 15 - lua/nvim-lsp-installer/core/fetch.lua | 54 - lua/nvim-lsp-installer/core/fs.lua | 147 --- lua/nvim-lsp-installer/core/functional/data.lua | 30 - .../core/functional/function.lua | 89 -- lua/nvim-lsp-installer/core/functional/init.lua | 97 -- lua/nvim-lsp-installer/core/functional/list.lua | 123 --- lua/nvim-lsp-installer/core/functional/logic.lua | 51 - lua/nvim-lsp-installer/core/functional/number.lua | 34 - .../core/functional/relation.lua | 17 - lua/nvim-lsp-installer/core/functional/string.lua | 30 - lua/nvim-lsp-installer/core/functional/table.lua | 9 - lua/nvim-lsp-installer/core/functional/type.lua | 14 - lua/nvim-lsp-installer/core/installer/context.lua | 199 ---- lua/nvim-lsp-installer/core/installer/init.lua | 87 -- .../core/managers/cargo/client.lua | 14 - .../core/managers/cargo/init.lua | 126 --- .../core/managers/composer/init.lua | 120 --- .../core/managers/dotnet/init.lua | 50 - lua/nvim-lsp-installer/core/managers/gem/init.lua | 145 --- lua/nvim-lsp-installer/core/managers/git/init.lua | 73 -- .../core/managers/github/client.lua | 120 --- .../core/managers/github/init.lua | 175 ---- lua/nvim-lsp-installer/core/managers/go/init.lua | 130 --- .../core/managers/luarocks/init.lua | 130 --- lua/nvim-lsp-installer/core/managers/npm/init.lua | 132 --- lua/nvim-lsp-installer/core/managers/opam/init.lua | 58 - lua/nvim-lsp-installer/core/managers/pip3/init.lua | 160 --- .../core/managers/powershell/init.lua | 46 - lua/nvim-lsp-installer/core/managers/std/init.lua | 187 ---- lua/nvim-lsp-installer/core/optional.lua | 100 -- lua/nvim-lsp-installer/core/path.lua | 36 - lua/nvim-lsp-installer/core/platform.lua | 154 --- lua/nvim-lsp-installer/core/process.lua | 314 ------ lua/nvim-lsp-installer/core/receipt.lua | 170 --- lua/nvim-lsp-installer/core/result.lua | 152 --- lua/nvim-lsp-installer/core/spawn.lua | 121 --- lua/nvim-lsp-installer/core/ui/display.lua | 458 -------- lua/nvim-lsp-installer/core/ui/init.lua | 141 --- lua/nvim-lsp-installer/core/ui/state.lua | 24 - lua/nvim-lsp-installer/dispatcher.lua | 23 - lua/nvim-lsp-installer/health/init.lua | 278 ----- .../jobs/outdated-servers/init.lua | 94 -- .../jobs/outdated-servers/jdtls.lua | 16 - .../jobs/outdated-servers/version-check-result.lua | 39 - lua/nvim-lsp-installer/jobs/pool.lua | 41 - lua/nvim-lsp-installer/jobs/version-check/init.lua | 78 -- lua/nvim-lsp-installer/log.lua | 161 --- lua/nvim-lsp-installer/middleware.lua | 76 -- lua/nvim-lsp-installer/notify.lua | 13 - lua/nvim-lsp-installer/server.lua | 182 ---- lua/nvim-lsp-installer/servers/angularls/init.lua | 49 - lua/nvim-lsp-installer/servers/ansiblels/init.lua | 23 - lua/nvim-lsp-installer/servers/apex_ls/init.lua | 43 - .../servers/arduino_language_server/README.md | 68 -- .../servers/arduino_language_server/init.lua | 62 -- lua/nvim-lsp-installer/servers/asm_lsp/init.lua | 15 - lua/nvim-lsp-installer/servers/astro/init.lua | 15 - lua/nvim-lsp-installer/servers/awk_ls/init.lua | 15 - lua/nvim-lsp-installer/servers/bashls/init.lua | 15 - lua/nvim-lsp-installer/servers/beancount/init.lua | 15 - lua/nvim-lsp-installer/servers/bicep/init.lua | 32 - lua/nvim-lsp-installer/servers/bsl_ls/init.lua | 31 - lua/nvim-lsp-installer/servers/ccls/common.lua | 41 - lua/nvim-lsp-installer/servers/ccls/init.lua | 24 - lua/nvim-lsp-installer/servers/ccls/linux.lua | 73 -- lua/nvim-lsp-installer/servers/ccls/mac.lua | 22 - lua/nvim-lsp-installer/servers/clangd/init.lua | 38 - .../servers/clarity_lsp/init.lua | 31 - .../servers/clojure_lsp/init.lua | 33 - lua/nvim-lsp-installer/servers/cmake/init.lua | 15 - lua/nvim-lsp-installer/servers/codeqlls/init.lua | 31 - .../servers/crystalline/init.lua | 34 - lua/nvim-lsp-installer/servers/csharp_ls/init.lua | 15 - lua/nvim-lsp-installer/servers/cssls/init.lua | 1 - .../servers/cssmodules_ls/init.lua | 15 - .../servers/cucumber_language_server/init.lua | 15 - lua/nvim-lsp-installer/servers/dartls/init.lua | 13 - lua/nvim-lsp-installer/servers/denols/init.lua | 37 - .../servers/dhall_lsp_server/init.lua | 68 -- .../servers/diagnosticls/init.lua | 15 - lua/nvim-lsp-installer/servers/dockerls/init.lua | 15 - lua/nvim-lsp-installer/servers/dotls/init.lua | 15 - lua/nvim-lsp-installer/servers/efm/init.lua | 15 - lua/nvim-lsp-installer/servers/elixirls/init.lua | 35 - lua/nvim-lsp-installer/servers/elmls/init.lua | 15 - lua/nvim-lsp-installer/servers/ember/init.lua | 15 - lua/nvim-lsp-installer/servers/emmet_ls/init.lua | 15 - lua/nvim-lsp-installer/servers/erlangls/init.lua | 36 - lua/nvim-lsp-installer/servers/esbonio/init.lua | 15 - lua/nvim-lsp-installer/servers/eslint/README.md | 15 - lua/nvim-lsp-installer/servers/eslint/init.lua | 1 - lua/nvim-lsp-installer/servers/flux_lsp/init.lua | 17 - lua/nvim-lsp-installer/servers/foam_ls/init.lua | 15 - lua/nvim-lsp-installer/servers/fortls/init.lua | 15 - .../servers/fsautocomplete/init.lua | 15 - .../servers/golangci_lint_ls/init.lua | 18 - lua/nvim-lsp-installer/servers/gopls/init.lua | 15 - lua/nvim-lsp-installer/servers/grammarly/init.lua | 15 - lua/nvim-lsp-installer/servers/graphql/init.lua | 15 - lua/nvim-lsp-installer/servers/groovyls/init.lua | 26 - .../servers/haxe_language_server/init.lua | 24 - lua/nvim-lsp-installer/servers/hls/init.lua | 42 - lua/nvim-lsp-installer/servers/hoon_ls/init.lua | 15 - lua/nvim-lsp-installer/servers/html/init.lua | 1 - lua/nvim-lsp-installer/servers/init.lua | 297 ------ .../servers/intelephense/init.lua | 15 - lua/nvim-lsp-installer/servers/jdtls/init.lua | 97 -- .../servers/jedi_language_server/init.lua | 15 - lua/nvim-lsp-installer/servers/jsonls/init.lua | 1 - lua/nvim-lsp-installer/servers/jsonnet_ls/init.lua | 16 - lua/nvim-lsp-installer/servers/julials/README.md | 9 - lua/nvim-lsp-installer/servers/julials/init.lua | 102 -- .../servers/kotlin_language_server/init.lua | 30 - lua/nvim-lsp-installer/servers/lelwel_ls/init.lua | 17 - lua/nvim-lsp-installer/servers/lemminx/init.lua | 46 - lua/nvim-lsp-installer/servers/ltex/init.lua | 77 -- lua/nvim-lsp-installer/servers/marksman/init.lua | 34 - lua/nvim-lsp-installer/servers/mm0_ls/init.lua | 25 - lua/nvim-lsp-installer/servers/nickel_ls/init.lua | 26 - lua/nvim-lsp-installer/servers/nimls/init.lua | 22 - lua/nvim-lsp-installer/servers/ocamlls/init.lua | 19 - lua/nvim-lsp-installer/servers/ocamllsp/init.lua | 15 - lua/nvim-lsp-installer/servers/omnisharp/README.md | 14 - lua/nvim-lsp-installer/servers/omnisharp/init.lua | 76 -- lua/nvim-lsp-installer/servers/opencl_ls/init.lua | 41 - .../servers/perlnavigator/init.lua | 20 - lua/nvim-lsp-installer/servers/phpactor/init.lua | 25 - .../servers/powershell_es/init.lua | 23 - lua/nvim-lsp-installer/servers/prismals/init.lua | 15 - .../servers/prosemd_lsp/init.lua | 34 - lua/nvim-lsp-installer/servers/psalm/init.lua | 15 - lua/nvim-lsp-installer/servers/puppet/init.lua | 25 - .../servers/purescriptls/init.lua | 15 - lua/nvim-lsp-installer/servers/pylsp/README.md | 16 - lua/nvim-lsp-installer/servers/pylsp/init.lua | 63 -- lua/nvim-lsp-installer/servers/pyright/init.lua | 15 - .../servers/quick_lint_js/init.lua | 55 - .../servers/r_language_server/init.lua | 71 -- lua/nvim-lsp-installer/servers/reason_ls/init.lua | 35 - lua/nvim-lsp-installer/servers/remark_ls/init.lua | 15 - lua/nvim-lsp-installer/servers/rescriptls/init.lua | 23 - lua/nvim-lsp-installer/servers/rnix/init.lua | 15 - .../servers/robotframework_ls/init.lua | 15 - lua/nvim-lsp-installer/servers/rome/init.lua | 22 - .../servers/rust_analyzer/init.lua | 65 -- lua/nvim-lsp-installer/servers/salt_ls/init.lua | 15 - lua/nvim-lsp-installer/servers/scry/init.lua | 30 - lua/nvim-lsp-installer/servers/serve_d/init.lua | 47 - lua/nvim-lsp-installer/servers/slint_lsp/init.lua | 36 - lua/nvim-lsp-installer/servers/solang/init.lua | 70 -- lua/nvim-lsp-installer/servers/solargraph/init.lua | 15 - lua/nvim-lsp-installer/servers/solc/init.lua | 34 - .../servers/solidity_ls/init.lua | 15 - lua/nvim-lsp-installer/servers/sorbet/init.lua | 15 - lua/nvim-lsp-installer/servers/sourcekit/init.lua | 13 - lua/nvim-lsp-installer/servers/sourcery/init.lua | 15 - lua/nvim-lsp-installer/servers/sqlls/init.lua | 15 - lua/nvim-lsp-installer/servers/sqls/init.lua | 15 - .../servers/stylelint_lsp/init.lua | 15 - .../servers/sumneko_lua/init.lua | 56 - lua/nvim-lsp-installer/servers/svelte/init.lua | 15 - .../servers/svlangserver/init.lua | 15 - lua/nvim-lsp-installer/servers/svls/init.lua | 15 - .../servers/tailwindcss/init.lua | 14 - lua/nvim-lsp-installer/servers/taplo/init.lua | 15 - lua/nvim-lsp-installer/servers/teal_ls/init.lua | 15 - .../servers/terraformls/init.lua | 50 - lua/nvim-lsp-installer/servers/texlab/init.lua | 41 - lua/nvim-lsp-installer/servers/tflint/README.md | 14 - lua/nvim-lsp-installer/servers/tflint/init.lua | 66 -- .../servers/theme_check/init.lua | 15 - lua/nvim-lsp-installer/servers/tsserver/init.lua | 15 - lua/nvim-lsp-installer/servers/vala_ls/init.lua | 41 - lua/nvim-lsp-installer/servers/verible/init.lua | 73 -- lua/nvim-lsp-installer/servers/vimls/init.lua | 15 - .../servers/visualforce_ls/init.lua | 50 - lua/nvim-lsp-installer/servers/vls/init.lua | 42 - lua/nvim-lsp-installer/servers/volar/init.lua | 37 - .../servers/vscode-langservers-extracted/init.lua | 17 - lua/nvim-lsp-installer/servers/vuels/init.lua | 15 - .../servers/wgsl_analyzer/init.lua | 19 - lua/nvim-lsp-installer/servers/yamlls/init.lua | 15 - lua/nvim-lsp-installer/servers/zk/init.lua | 54 - lua/nvim-lsp-installer/servers/zls/init.lua | 43 - lua/nvim-lsp-installer/settings.lua | 94 -- .../ui/components/settings-schema.lua | 169 --- lua/nvim-lsp-installer/ui/init.lua | 1106 -------------------- lua/nvim-lsp-installer/ui/server_hints.lua | 41 - 492 files changed, 12279 insertions(+), 12002 deletions(-) create mode 100644 lua/mason-lspconfig/init.lua create mode 100644 lua/mason-lspconfig/server-mapping.lua create mode 100644 lua/mason-lspconfig/server_configurations/angularls/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/apex_ls/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/bicep/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/bsl_ls/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/elixirls/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/esbonio/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/groovyls/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/haxe_language_server/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/jdtls/README.md create mode 100644 lua/mason-lspconfig/server_configurations/jdtls/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/julials/README.md create mode 100644 lua/mason-lspconfig/server_configurations/julials/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/omnisharp/README.md create mode 100644 lua/mason-lspconfig/server_configurations/omnisharp/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/perlnavigator/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/powershell_es/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/pylsp/README.md create mode 100644 lua/mason-lspconfig/server_configurations/pylsp/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/r_language_server/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/rescriptls/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/solang/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/tflint/README.md create mode 100644 lua/mason-lspconfig/server_configurations/visualforce_ls/init.lua create mode 100644 lua/mason-lspconfig/server_configurations/volar/init.lua create mode 100644 lua/mason-lspconfig/settings.lua create mode 100644 lua/mason.lua create mode 100644 lua/mason/_generated/lsp-schemas/astro-language-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/bash-language-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/clangd.lua create mode 100644 lua/mason/_generated/lsp-schemas/deno-lsp.lua create mode 100644 lua/mason/_generated/lsp-schemas/elixir-ls.lua create mode 100644 lua/mason/_generated/lsp-schemas/elm-language-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/fsautocomplete.lua create mode 100644 lua/mason/_generated/lsp-schemas/grammarly-languageserver.lua create mode 100644 lua/mason/_generated/lsp-schemas/haxe-language-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/html-lsp.lua create mode 100644 lua/mason/_generated/lsp-schemas/intelephense.lua create mode 100644 lua/mason/_generated/lsp-schemas/jdtls.lua create mode 100644 lua/mason/_generated/lsp-schemas/json-lsp.lua create mode 100644 lua/mason/_generated/lsp-schemas/julia-lsp.lua create mode 100644 lua/mason/_generated/lsp-schemas/kotlin-language-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/ltex-ls.lua create mode 100644 lua/mason/_generated/lsp-schemas/lua-language-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/nickel-lang-lsp.lua create mode 100644 lua/mason/_generated/lsp-schemas/omnisharp-roslyn.lua create mode 100644 lua/mason/_generated/lsp-schemas/perlnavigator.lua create mode 100644 lua/mason/_generated/lsp-schemas/psalm.lua create mode 100644 lua/mason/_generated/lsp-schemas/puppet-editor-services.lua create mode 100644 lua/mason/_generated/lsp-schemas/purescript-language-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/pyright.lua create mode 100644 lua/mason/_generated/lsp-schemas/python-lsp-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/r-languageserver.lua create mode 100644 lua/mason/_generated/lsp-schemas/rescript-lsp.lua create mode 100644 lua/mason/_generated/lsp-schemas/rome.lua create mode 100644 lua/mason/_generated/lsp-schemas/rust-analyzer.lua create mode 100644 lua/mason/_generated/lsp-schemas/solargraph.lua create mode 100644 lua/mason/_generated/lsp-schemas/sorbet.lua create mode 100644 lua/mason/_generated/lsp-schemas/stylelint-lsp.lua create mode 100644 lua/mason/_generated/lsp-schemas/svelte-language-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/tailwindcss-language-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/typescript-language-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/vetur-vls.lua create mode 100644 lua/mason/_generated/lsp-schemas/vue-language-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/yaml-language-server.lua create mode 100644 lua/mason/_generated/lsp-schemas/zls.lua create mode 100644 lua/mason/_generated/lspconfig_filetype_map.lua create mode 100644 lua/mason/_generated/package_index.lua create mode 100644 lua/mason/command-api/init.lua create mode 100644 lua/mason/core/EventEmitter.lua create mode 100644 lua/mason/core/async/control.lua create mode 100644 lua/mason/core/async/init.lua create mode 100644 lua/mason/core/async/uv.lua create mode 100644 lua/mason/core/clients/eclipse.lua create mode 100644 lua/mason/core/fetch.lua create mode 100644 lua/mason/core/fs.lua create mode 100644 lua/mason/core/functional/data.lua create mode 100644 lua/mason/core/functional/function.lua create mode 100644 lua/mason/core/functional/init.lua create mode 100644 lua/mason/core/functional/list.lua create mode 100644 lua/mason/core/functional/logic.lua create mode 100644 lua/mason/core/functional/number.lua create mode 100644 lua/mason/core/functional/relation.lua create mode 100644 lua/mason/core/functional/string.lua create mode 100644 lua/mason/core/functional/table.lua create mode 100644 lua/mason/core/functional/type.lua create mode 100644 lua/mason/core/installer/context.lua create mode 100644 lua/mason/core/installer/handle.lua create mode 100644 lua/mason/core/installer/init.lua create mode 100644 lua/mason/core/installer/linker.lua create mode 100644 lua/mason/core/managers/cargo/client.lua create mode 100644 lua/mason/core/managers/cargo/init.lua create mode 100644 lua/mason/core/managers/composer/init.lua create mode 100644 lua/mason/core/managers/dotnet/init.lua create mode 100644 lua/mason/core/managers/gem/init.lua create mode 100644 lua/mason/core/managers/git/init.lua create mode 100644 lua/mason/core/managers/github/client.lua create mode 100644 lua/mason/core/managers/github/init.lua create mode 100644 lua/mason/core/managers/go/init.lua create mode 100644 lua/mason/core/managers/luarocks/init.lua create mode 100644 lua/mason/core/managers/npm/init.lua create mode 100644 lua/mason/core/managers/opam/init.lua create mode 100644 lua/mason/core/managers/pip3/init.lua create mode 100644 lua/mason/core/managers/powershell/init.lua create mode 100644 lua/mason/core/managers/std/init.lua create mode 100644 lua/mason/core/optional.lua create mode 100644 lua/mason/core/package/indexer.lua create mode 100644 lua/mason/core/package/init.lua create mode 100644 lua/mason/core/package/version-check.lua create mode 100644 lua/mason/core/path.lua create mode 100644 lua/mason/core/platform.lua create mode 100644 lua/mason/core/process.lua create mode 100644 lua/mason/core/receipt.lua create mode 100644 lua/mason/core/result.lua create mode 100644 lua/mason/core/spawn.lua create mode 100644 lua/mason/core/ui/display.lua create mode 100644 lua/mason/core/ui/init.lua create mode 100644 lua/mason/core/ui/state.lua create mode 100644 lua/mason/health/init.lua create mode 100644 lua/mason/log.lua create mode 100644 lua/mason/notify.lua create mode 100644 lua/mason/packages/angular-language-server/init.lua create mode 100644 lua/mason/packages/ansible-language-server/init.lua create mode 100644 lua/mason/packages/apex-language-server/init.lua create mode 100644 lua/mason/packages/arduino-language-server/init.lua create mode 100644 lua/mason/packages/asm-lsp/init.lua create mode 100644 lua/mason/packages/astro-language-server/init.lua create mode 100644 lua/mason/packages/awk-language-server/init.lua create mode 100644 lua/mason/packages/bash-language-server/init.lua create mode 100644 lua/mason/packages/beancount-language-server/init.lua create mode 100644 lua/mason/packages/bicep-lsp/init.lua create mode 100644 lua/mason/packages/bsl-language-server/init.lua create mode 100644 lua/mason/packages/ccls/common.lua create mode 100644 lua/mason/packages/ccls/init.lua create mode 100644 lua/mason/packages/ccls/linux.lua create mode 100644 lua/mason/packages/ccls/mac.lua create mode 100644 lua/mason/packages/clangd/init.lua create mode 100644 lua/mason/packages/clarity-lsp/init.lua create mode 100644 lua/mason/packages/clojure-lsp/init.lua create mode 100644 lua/mason/packages/cmake-language-server/init.lua create mode 100644 lua/mason/packages/codelldb/init.lua create mode 100644 lua/mason/packages/codeql/init.lua create mode 100644 lua/mason/packages/cpptools/init.lua create mode 100644 lua/mason/packages/crystalline/init.lua create mode 100644 lua/mason/packages/csharp-language-server/init.lua create mode 100644 lua/mason/packages/css-lsp/init.lua create mode 100644 lua/mason/packages/cssmodules-language-server/init.lua create mode 100644 lua/mason/packages/cucumber-language-server/init.lua create mode 100644 lua/mason/packages/debugpy/init.lua create mode 100644 lua/mason/packages/deno/init.lua create mode 100644 lua/mason/packages/dhall-lsp/init.lua create mode 100644 lua/mason/packages/diagnostic-languageserver/init.lua create mode 100644 lua/mason/packages/dockerfile-language-server/init.lua create mode 100644 lua/mason/packages/dot-language-server/init.lua create mode 100644 lua/mason/packages/efm/init.lua create mode 100644 lua/mason/packages/elixir-ls/init.lua create mode 100644 lua/mason/packages/elm-format/init.lua create mode 100644 lua/mason/packages/elm-language-server/init.lua create mode 100644 lua/mason/packages/ember-language-server/init.lua create mode 100644 lua/mason/packages/emmet-ls/init.lua create mode 100644 lua/mason/packages/erlang-ls/init.lua create mode 100644 lua/mason/packages/esbonio/init.lua create mode 100644 lua/mason/packages/eslint-lsp/init.lua create mode 100644 lua/mason/packages/flux-lsp/init.lua create mode 100644 lua/mason/packages/foam-language-server/init.lua create mode 100644 lua/mason/packages/fortls/init.lua create mode 100644 lua/mason/packages/fsautocomplete/init.lua create mode 100644 lua/mason/packages/golangci-lint-langserver/init.lua create mode 100644 lua/mason/packages/golangci-lint/init.lua create mode 100644 lua/mason/packages/gopls/init.lua create mode 100644 lua/mason/packages/grammarly-languageserver/init.lua create mode 100644 lua/mason/packages/graphql-language-service-cli/init.lua create mode 100644 lua/mason/packages/groovy-language-server/init.lua create mode 100644 lua/mason/packages/haskell-language-server/init.lua create mode 100644 lua/mason/packages/haxe-language-server/init.lua create mode 100644 lua/mason/packages/hoon-language-server/init.lua create mode 100644 lua/mason/packages/html-lsp/init.lua create mode 100644 lua/mason/packages/intelephense/init.lua create mode 100644 lua/mason/packages/jdtls/init.lua create mode 100644 lua/mason/packages/jedi-language-server/init.lua create mode 100644 lua/mason/packages/json-lsp/init.lua create mode 100644 lua/mason/packages/jsonnet-language-server/init.lua create mode 100644 lua/mason/packages/julia-lsp/init.lua create mode 100644 lua/mason/packages/kotlin-language-server/init.lua create mode 100644 lua/mason/packages/lelwel/init.lua create mode 100644 lua/mason/packages/lemminx/init.lua create mode 100644 lua/mason/packages/lemmy-help/init.lua create mode 100644 lua/mason/packages/ltex-ls/init.lua create mode 100644 lua/mason/packages/lua-language-server/init.lua create mode 100644 lua/mason/packages/marksman/init.lua create mode 100644 lua/mason/packages/metamath-zero-lsp/init.lua create mode 100644 lua/mason/packages/mockdebug/init.lua create mode 100644 lua/mason/packages/nickel-lang-lsp/init.lua create mode 100644 lua/mason/packages/nimlsp/init.lua create mode 100644 lua/mason/packages/ocaml-lsp/init.lua create mode 100644 lua/mason/packages/omnisharp-roslyn/init.lua create mode 100644 lua/mason/packages/opencl-language-server/init.lua create mode 100644 lua/mason/packages/perlnavigator/init.lua create mode 100644 lua/mason/packages/phpactor/init.lua create mode 100644 lua/mason/packages/powershell-editor-services/init.lua create mode 100644 lua/mason/packages/prisma-language-server/init.lua create mode 100644 lua/mason/packages/prosemd-lsp/init.lua create mode 100644 lua/mason/packages/psalm/init.lua create mode 100644 lua/mason/packages/puppet-editor-services/init.lua create mode 100644 lua/mason/packages/purescript-language-server/init.lua create mode 100644 lua/mason/packages/pyright/init.lua create mode 100644 lua/mason/packages/python-lsp-server/init.lua create mode 100644 lua/mason/packages/quick-lint-js/init.lua create mode 100644 lua/mason/packages/r-languageserver/init.lua create mode 100644 lua/mason/packages/reason-language-server/init.lua create mode 100644 lua/mason/packages/remark-language-server/init.lua create mode 100644 lua/mason/packages/rescript-lsp/init.lua create mode 100644 lua/mason/packages/rnix-lsp/init.lua create mode 100644 lua/mason/packages/robotframework-lsp/init.lua create mode 100644 lua/mason/packages/rome/init.lua create mode 100644 lua/mason/packages/rust-analyzer/init.lua create mode 100644 lua/mason/packages/salt-lsp/init.lua create mode 100644 lua/mason/packages/serve-d/init.lua create mode 100644 lua/mason/packages/shellcheck/init.lua create mode 100644 lua/mason/packages/shopify-theme-check/init.lua create mode 100644 lua/mason/packages/slint-lsp/init.lua create mode 100644 lua/mason/packages/solang/init.lua create mode 100644 lua/mason/packages/solargraph/init.lua create mode 100644 lua/mason/packages/solidity/init.lua create mode 100644 lua/mason/packages/sorbet/init.lua create mode 100644 lua/mason/packages/sourcery/init.lua create mode 100644 lua/mason/packages/sqlls/init.lua create mode 100644 lua/mason/packages/sqls/init.lua create mode 100644 lua/mason/packages/stylelint-lsp/init.lua create mode 100644 lua/mason/packages/stylua/init.lua create mode 100644 lua/mason/packages/svelte-language-server/init.lua create mode 100644 lua/mason/packages/svlangserver/init.lua create mode 100644 lua/mason/packages/svls/init.lua create mode 100644 lua/mason/packages/tailwindcss-language-server/init.lua create mode 100644 lua/mason/packages/taplo/init.lua create mode 100644 lua/mason/packages/teal-language-server/init.lua create mode 100644 lua/mason/packages/terraform-ls/init.lua create mode 100644 lua/mason/packages/texlab/init.lua create mode 100644 lua/mason/packages/tflint/init.lua create mode 100644 lua/mason/packages/typescript-language-server/init.lua create mode 100644 lua/mason/packages/vala-language-server/init.lua create mode 100644 lua/mason/packages/verible/init.lua create mode 100644 lua/mason/packages/vetur-vls/init.lua create mode 100644 lua/mason/packages/vim-language-server/init.lua create mode 100644 lua/mason/packages/visualforce-language-server/init.lua create mode 100644 lua/mason/packages/vls/init.lua create mode 100644 lua/mason/packages/vue-language-server/init.lua create mode 100644 lua/mason/packages/wgsl-analyzer/init.lua create mode 100644 lua/mason/packages/yaml-language-server/init.lua create mode 100644 lua/mason/packages/zk/init.lua create mode 100644 lua/mason/packages/zls/init.lua create mode 100644 lua/mason/settings.lua create mode 100644 lua/mason/ui/components/footer.lua create mode 100644 lua/mason/ui/components/header.lua create mode 100644 lua/mason/ui/components/help/dap.lua create mode 100644 lua/mason/ui/components/help/init.lua create mode 100644 lua/mason/ui/components/help/lsp.lua create mode 100644 lua/mason/ui/components/json-schema.lua create mode 100644 lua/mason/ui/components/language-filter.lua create mode 100644 lua/mason/ui/components/main/init.lua create mode 100644 lua/mason/ui/components/main/package_list.lua create mode 100644 lua/mason/ui/components/tabs.lua create mode 100644 lua/mason/ui/init.lua create mode 100644 lua/mason/ui/instance.lua create mode 100644 lua/mason/ui/palette.lua delete mode 100644 lua/nvim-lsp-installer.lua delete mode 100644 lua/nvim-lsp-installer/_generated/filetype_map.lua delete mode 100644 lua/nvim-lsp-installer/_generated/language_autocomplete_map.lua delete mode 100644 lua/nvim-lsp-installer/_generated/metadata.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/astro.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/bashls.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/clangd.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/denols.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/elixirls.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/elmls.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/grammarly.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/intelephense.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/jdtls.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/jsonls.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/julials.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/kotlin_language_server.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/ltex.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/nickel_ls.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/perlnavigator.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/psalm.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/puppet.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/purescriptls.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/pylsp.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/pyright.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/r_language_server.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/rome.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/rust_analyzer.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/solargraph.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/sorbet.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/stylelint_lsp.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/sumneko_lua.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/svelte.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/volar.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/vuels.lua delete mode 100644 lua/nvim-lsp-installer/_generated/schemas/yamlls.lua delete mode 100644 lua/nvim-lsp-installer/core/async/init.lua delete mode 100644 lua/nvim-lsp-installer/core/async/uv.lua delete mode 100644 lua/nvim-lsp-installer/core/clients/eclipse.lua delete mode 100644 lua/nvim-lsp-installer/core/fetch.lua delete mode 100644 lua/nvim-lsp-installer/core/fs.lua delete mode 100644 lua/nvim-lsp-installer/core/functional/data.lua delete mode 100644 lua/nvim-lsp-installer/core/functional/function.lua delete mode 100644 lua/nvim-lsp-installer/core/functional/init.lua delete mode 100644 lua/nvim-lsp-installer/core/functional/list.lua delete mode 100644 lua/nvim-lsp-installer/core/functional/logic.lua delete mode 100644 lua/nvim-lsp-installer/core/functional/number.lua delete mode 100644 lua/nvim-lsp-installer/core/functional/relation.lua delete mode 100644 lua/nvim-lsp-installer/core/functional/string.lua delete mode 100644 lua/nvim-lsp-installer/core/functional/table.lua delete mode 100644 lua/nvim-lsp-installer/core/functional/type.lua delete mode 100644 lua/nvim-lsp-installer/core/installer/context.lua delete mode 100644 lua/nvim-lsp-installer/core/installer/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/cargo/client.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/cargo/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/composer/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/dotnet/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/gem/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/git/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/github/client.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/github/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/go/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/luarocks/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/npm/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/opam/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/pip3/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/powershell/init.lua delete mode 100644 lua/nvim-lsp-installer/core/managers/std/init.lua delete mode 100644 lua/nvim-lsp-installer/core/optional.lua delete mode 100644 lua/nvim-lsp-installer/core/path.lua delete mode 100644 lua/nvim-lsp-installer/core/platform.lua delete mode 100644 lua/nvim-lsp-installer/core/process.lua delete mode 100644 lua/nvim-lsp-installer/core/receipt.lua delete mode 100644 lua/nvim-lsp-installer/core/result.lua delete mode 100644 lua/nvim-lsp-installer/core/spawn.lua delete mode 100644 lua/nvim-lsp-installer/core/ui/display.lua delete mode 100644 lua/nvim-lsp-installer/core/ui/init.lua delete mode 100644 lua/nvim-lsp-installer/core/ui/state.lua delete mode 100644 lua/nvim-lsp-installer/dispatcher.lua delete mode 100644 lua/nvim-lsp-installer/health/init.lua delete mode 100644 lua/nvim-lsp-installer/jobs/outdated-servers/init.lua delete mode 100644 lua/nvim-lsp-installer/jobs/outdated-servers/jdtls.lua delete mode 100644 lua/nvim-lsp-installer/jobs/outdated-servers/version-check-result.lua delete mode 100644 lua/nvim-lsp-installer/jobs/pool.lua delete mode 100644 lua/nvim-lsp-installer/jobs/version-check/init.lua delete mode 100644 lua/nvim-lsp-installer/log.lua delete mode 100644 lua/nvim-lsp-installer/middleware.lua delete mode 100644 lua/nvim-lsp-installer/notify.lua delete mode 100644 lua/nvim-lsp-installer/server.lua delete mode 100644 lua/nvim-lsp-installer/servers/angularls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/ansiblels/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/apex_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/arduino_language_server/README.md delete mode 100644 lua/nvim-lsp-installer/servers/arduino_language_server/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/asm_lsp/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/astro/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/awk_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/bashls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/beancount/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/bicep/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/bsl_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/ccls/common.lua delete mode 100644 lua/nvim-lsp-installer/servers/ccls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/ccls/linux.lua delete mode 100644 lua/nvim-lsp-installer/servers/ccls/mac.lua delete mode 100644 lua/nvim-lsp-installer/servers/clangd/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/clarity_lsp/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/clojure_lsp/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/cmake/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/codeqlls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/crystalline/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/csharp_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/cssls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/cssmodules_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/cucumber_language_server/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/dartls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/denols/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/dhall_lsp_server/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/diagnosticls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/dockerls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/dotls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/efm/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/elixirls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/elmls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/ember/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/emmet_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/erlangls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/esbonio/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/eslint/README.md delete mode 100644 lua/nvim-lsp-installer/servers/eslint/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/flux_lsp/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/foam_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/fortls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/fsautocomplete/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/golangci_lint_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/gopls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/grammarly/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/graphql/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/groovyls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/haxe_language_server/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/hls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/hoon_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/html/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/intelephense/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/jdtls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/jedi_language_server/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/jsonls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/jsonnet_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/julials/README.md delete mode 100644 lua/nvim-lsp-installer/servers/julials/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/kotlin_language_server/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/lelwel_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/lemminx/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/ltex/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/marksman/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/mm0_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/nickel_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/nimls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/ocamlls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/ocamllsp/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/omnisharp/README.md delete mode 100644 lua/nvim-lsp-installer/servers/omnisharp/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/opencl_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/perlnavigator/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/phpactor/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/powershell_es/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/prismals/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/prosemd_lsp/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/psalm/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/puppet/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/purescriptls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/pylsp/README.md delete mode 100644 lua/nvim-lsp-installer/servers/pylsp/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/pyright/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/quick_lint_js/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/r_language_server/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/reason_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/remark_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/rescriptls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/rnix/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/robotframework_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/rome/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/rust_analyzer/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/salt_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/scry/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/serve_d/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/slint_lsp/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/solang/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/solargraph/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/solc/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/solidity_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/sorbet/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/sourcekit/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/sourcery/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/sqlls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/sqls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/stylelint_lsp/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/sumneko_lua/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/svelte/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/svlangserver/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/svls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/tailwindcss/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/taplo/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/teal_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/terraformls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/texlab/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/tflint/README.md delete mode 100644 lua/nvim-lsp-installer/servers/tflint/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/theme_check/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/tsserver/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/vala_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/verible/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/vimls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/visualforce_ls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/vls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/volar/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/vscode-langservers-extracted/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/vuels/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/wgsl_analyzer/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/yamlls/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/zk/init.lua delete mode 100644 lua/nvim-lsp-installer/servers/zls/init.lua delete mode 100644 lua/nvim-lsp-installer/settings.lua delete mode 100644 lua/nvim-lsp-installer/ui/components/settings-schema.lua delete mode 100644 lua/nvim-lsp-installer/ui/init.lua delete mode 100644 lua/nvim-lsp-installer/ui/server_hints.lua (limited to 'lua') diff --git a/lua/mason-lspconfig/init.lua b/lua/mason-lspconfig/init.lua new file mode 100644 index 00000000..850c1069 --- /dev/null +++ b/lua/mason-lspconfig/init.lua @@ -0,0 +1,139 @@ +local log = require "mason.log" +local Package = require "mason.core.package" +local Optional = require "mason.core.optional" +local _ = require "mason.core.functional" +local settings = require "mason-lspconfig.settings" +local server_mapping = require "mason-lspconfig.server-mapping" + +local M = {} + +---@param lspconfig_server_name string +function M.resolve_package(lspconfig_server_name) + return Optional.of_nilable(server_mapping.lspconfig_to_package[lspconfig_server_name]):map(function(package_name) + local ok, package = pcall(require, ("mason.packages.%s"):format(package_name)) + if ok then + return package + end + end) +end + +---@param lspconfig_server_name string +function M.resolve_server_config_factory(lspconfig_server_name) + local ok, server_config = pcall( + require, + ("mason.adapters.lspconfig.server_configurations.%s"):format(lspconfig_server_name) + ) + if ok then + return Optional.of(server_config) + end + return Optional.empty() +end + +---@param t1 table +---@param t2 table +local function merge_in_place(t1, t2) + for k, v in pairs(t2) do + if type(v) == "table" then + if type(t1[k]) == "table" and not vim.tbl_islist(t1[k]) then + merge_in_place(t1[k], v) + else + t1[k] = v + end + else + t1[k] = v + end + end + return t1 +end + +local memoized_set = _.memoize(_.set_of) + +---@param server_name string +local function should_auto_install(server_name) + if settings.current.automatic_installation == true then + return true + end + if type(settings.current.automatic_installation) == "table" then + return not memoized_set(settings.current.automatic_installation.exclude)[server_name] + end + return false +end + +local function setup_lspconfig_hook() + local util = require "lspconfig.util" + util.on_setup = util.add_hook_before(util.on_setup, function(config) + M.resolve_package(config.name):if_present( + ---@param pkg Package + function(pkg) + if pkg:is_installed() then + M.resolve_server_config_factory(config.name):if_present(function(config_factory) + merge_in_place(config, config_factory(pkg:get_install_path())) + end) + else + if should_auto_install(config.name) then + pkg:install() + end + end + end + ) + end) +end + +local function ensure_installed() + for _, server_identifier in ipairs(settings.current.ensure_installed) do + local server_name, version = Package.Parse(server_identifier) + M.resolve_package(server_name):if_present( + ---@param pkg Package + function(pkg) + if not pkg:is_installed() then + pkg:install { + version = version, + } + end + end + ) + end +end + +---@param config MasonLspconfigSettings | nil +function M.setup(config) + if config then + settings.set(config) + end + + setup_lspconfig_hook() + ensure_installed() +end + +---@param handlers table +function M.setup_handlers(handlers) + local default_handler = Optional.of_nilable(handlers[1]) + local indexer = require "mason.core.package.indexer" + + ---@param pkg_name string + local function get_server_name(pkg_name) + return Optional.of_nilable(server_mapping.package_to_lspconfig[pkg_name]) + end + + local function call_handler(server_name) + log.fmt_trace("Checking handler for %s", server_name) + Optional.of_nilable(handlers[server_name]):or_(_.always(default_handler)):if_present(function(handler) + log.fmt_trace("Calling handler for %s", server_name) + local ok, err = pcall(handler, server_name) + if not ok then + vim.notify(err, vim.log.levels.ERROR) + end + end) + end + + local installed_servers = _.filter_map(get_server_name, indexer.get_installed_package_names()) + _.each(call_handler, installed_servers) + indexer:on( + "package:install:success", + vim.schedule_wrap(function(pkg) + get_server_name(pkg.name):if_present(call_handler) + end) + ) +end + +return M diff --git a/lua/mason-lspconfig/server-mapping.lua b/lua/mason-lspconfig/server-mapping.lua new file mode 100644 index 00000000..89290c1c --- /dev/null +++ b/lua/mason-lspconfig/server-mapping.lua @@ -0,0 +1,130 @@ +local _ = require "mason.core.functional" + +local M = {} + +---Maps lspconfig server config name to its corresponding package name. +-- TODO go through these.. fun times +M.lspconfig_to_package = { + ["angularls"] = "angular-language-server", + ["ansiblels"] = "ansible-language-server", + ["apex_ls"] = "apex-language-server", + ["arduino_language_server"] = "arduino-language-server", + ["asm_lsp"] = "asm-lsp", + ["astro"] = "astro-language-server", + ["awk_ls"] = "awk-language-server", + ["bashls"] = "bash-language-server", + ["beancount"] = "beancount-language-server", + ["bicep"] = "bicep-lsp", + ["bsl_ls"] = "bsl-language-server", + ["ccls"] = "ccls", + ["clangd"] = "clangd", + ["clarity_lsp"] = "clarity-lsp", + ["clojure_lsp"] = "clojure-lsp", + ["cmake"] = "cmake-language-server", + ["codeqlls"] = "codeql", + ["crystalline"] = "crystalline", + ["csharp_ls"] = "csharp-language-server", + ["cssls"] = "css-lsp", + ["cssmodules_ls"] = "cucumber-language-server", + ["cucumber_language_server"] = "cucumber-language-server", + ["denols"] = "deno-lsp", + ["dhall_lsp_server"] = "dhall-lsp", + ["diagnosticls"] = "diagnostic-languageserver", + ["dockerls"] = "dockerfile-language-server", + ["dotls"] = "dot-language-server", + ["efm"] = "efm", + ["elixirls"] = "elixir-ls", + ["elmls"] = "elm-language-server", + ["ember"] = "ember-language-server", + ["emmet_ls"] = "emmet-ls", + ["erlangls"] = "erlang-ls", + ["esbonio"] = "esbonio", + ["eslint"] = "eslint-lsp", + ["flux_lsp"] = "flux-lsp", + ["foam_ls"] = "foam-language-server", + ["fortls"] = "fortls", + ["fsautocomplete"] = "fsautocomplete", + ["golangci_lint_ls"] = "golangci-lint-langserver", + ["gopls"] = "gopls", + ["grammarly"] = "grammarly-languageserver", + ["graphql"] = "graphql-language-service-cli", + ["groovyls"] = "groovy-language-server", + ["haxe_language_server"] = "haxe-language-server", + ["hls"] = "haskell-language-server", + ["hoon_ls"] = "hoon-language-server", + ["html"] = "html-lsp", + ["intelephense"] = "intelephense", + ["jdtls"] = "jdtls", + ["jedi_language_server"] = "jedi-language-server", + ["jsonls"] = "json-lsp", + ["jsonnet_ls"] = "jsonnet-language-server", + ["julials"] = "julia-lsp", + ["kotlin_language_server"] = "kotlin-language-server", + ["lelwel_ls"] = "lelwel", + ["lemminx"] = "lemminx", + ["ltex"] = "ltex-ls", + ["marksman"] = "marksman", + ["mm0_ls"] = "metamath-zero-lsp", + ["nickel_ls"] = "nickel-lang-lsp", + ["nimls"] = "nimlsp", + ["ocamllsp"] = "ocaml-lsp", + ["omnisharp"] = "omnisharp-roslyn", + ["opencl_ls"] = "opencl-language-server", + ["perlnavigator"] = "perlnavigator", + ["phpactor"] = "phpactor", + ["powershell_es"] = "powershell-editor-services", + ["prismals"] = "prisma-language-server", + ["prosemd_lsp"] = "prosemd-lsp", + ["psalm"] = "psalm", + ["puppet"] = "puppet-editor-services", + ["purescriptls"] = "purescript-language-server", + ["pylsp"] = "python-lsp-server", + ["pyright"] = "pyright", + ["quick_lint_js"] = "quick-lint-js", + ["r_language_server"] = "r-languageserver", + ["reason_ls"] = "reason-language-server", + ["remark_ls"] = "remark-language-server", + ["rescriptls"] = "rescript-lsp", + ["rnix"] = "rnix-lsp", + ["robotframework_ls"] = "robotframework-lsp", + ["rome"] = "rome", + ["rust_analyzer"] = "rust-analyzer", + ["salt_ls"] = "salt-lsp", + ["scry"] = "scry", + ["serve_d"] = "serve-d", + ["slint_lsp"] = "slint-lsp", + ["solang"] = "solang", + ["solargraph"] = "solargraph", + ["solc"] = "solidity", + ["sorbet"] = "sorbet", + ["sourcery"] = "sourcery", + ["sqlls"] = "sqlls", + ["sqls"] = "sqls", + ["stylelint_lsp"] = "stylelint-lsp", + ["sumneko_lua"] = "lua-language-server", + ["svelte"] = "svelte-language-server", + ["svlangserver"] = "svlangserver", + ["svls"] = "svls", + ["tailwindcss"] = "tailwindcss-language-server", + ["taplo"] = "taplo", + ["teal_ls"] = "teal-language-server", + ["terraformls"] = "terraform-ls", + ["texlab"] = "texlab", + ["tflint"] = "tflint", + ["theme_check"] = "shopify-theme-check", + ["tsserver"] = "typescript-language-server", + ["vala_ls"] = "vala-language-server", + ["verible"] = "verible", + ["vimls"] = "vim-language-server", + ["visualforce_ls"] = "visualforce-language-server", + ["vls"] = "vls", + ["volar"] = "vue-language-server", + ["vuels"] = "vetur-vls", + ["yamlls"] = "yaml-language-server", + ["zk"] = "zk", + ["zls"] = "zls", +} + +M.package_to_lspconfig = _.invert(M.lspconfig_to_package) + +return M diff --git a/lua/mason-lspconfig/server_configurations/angularls/init.lua b/lua/mason-lspconfig/server_configurations/angularls/init.lua new file mode 100644 index 00000000..c9076c4e --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/angularls/init.lua @@ -0,0 +1,41 @@ +local platform = require "mason.core.platform" +local npm = require "mason.core.managers.npm" +local _ = require "mason.core.functional" +local path = require "mason.core.path" + +---@param install_dir string +return function(install_dir) + local append_node_modules = _.map(function(dir) + return path.concat { dir, "node_modules" } + end) + + local function get_cmd(workspace_dir) + local cmd = { + "ngserver", + "--stdio", + "--tsProbeLocations", + table.concat(append_node_modules { install_dir, workspace_dir }, ","), + "--ngProbeLocations", + table.concat( + append_node_modules { + path.concat { install_dir, "node_modules", "@angular", "language-server" }, + workspace_dir, + }, + "," + ), + } + if platform.is_win then + cmd[1] = vim.fn.exepath(cmd[1]) + end + + return cmd + end + + return { + cmd = get_cmd(vim.loop.cwd()), + cmd_env = npm.env(install_dir), + on_new_config = function(new_config, root_dir) + new_config.cmd = get_cmd(root_dir) + end, + } +end diff --git a/lua/mason-lspconfig/server_configurations/apex_ls/init.lua b/lua/mason-lspconfig/server_configurations/apex_ls/init.lua new file mode 100644 index 00000000..3067a080 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/apex_ls/init.lua @@ -0,0 +1,8 @@ +local path = require "mason.core.path" + +---@param install_dir string +return function(install_dir) + return { + apex_jar_path = path.concat { install_dir, "apex-jorje-lsp.jar" }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/bicep/init.lua b/lua/mason-lspconfig/server_configurations/bicep/init.lua new file mode 100644 index 00000000..93bac594 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/bicep/init.lua @@ -0,0 +1,8 @@ +local path = require "mason.core.path" + +---@param install_dir string +return function(install_dir) + return { + cmd = { "dotnet", path.concat { install_dir, "Bicep.LangServer.dll" } }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/bsl_ls/init.lua b/lua/mason-lspconfig/server_configurations/bsl_ls/init.lua new file mode 100644 index 00000000..51c3b328 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/bsl_ls/init.lua @@ -0,0 +1,12 @@ +local path = require "mason.core.path" + +---@param install_dir string +return function(install_dir) + return { + cmd = { + "java", + "-jar", + path.concat { install_dir, "bsl-lsp.jar" }, + }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/elixirls/init.lua b/lua/mason-lspconfig/server_configurations/elixirls/init.lua new file mode 100644 index 00000000..08bf6315 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/elixirls/init.lua @@ -0,0 +1,15 @@ +local path = require "mason.core.path" +local platform = require "mason.core.platform" + +---@param install_dir string +return function(install_dir) + return { + cmd = { + path.concat { + install_dir, + "elixir-ls", + platform.is_win and "language_server.bat" or "language_server.sh", + }, + }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/esbonio/init.lua b/lua/mason-lspconfig/server_configurations/esbonio/init.lua new file mode 100644 index 00000000..998c5594 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/esbonio/init.lua @@ -0,0 +1,6 @@ +---@param install_dir string +return function(install_dir) + return { + cmd = { "esbonio" }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/groovyls/init.lua b/lua/mason-lspconfig/server_configurations/groovyls/init.lua new file mode 100644 index 00000000..c917fcf2 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/groovyls/init.lua @@ -0,0 +1,8 @@ +local path = require "mason.core.path" + +---@param install_dir string +return function(install_dir) + return { + cmd = { "java", "-jar", path.concat { install_dir, "build", "libs", "groovyls-all.jar" } }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/haxe_language_server/init.lua b/lua/mason-lspconfig/server_configurations/haxe_language_server/init.lua new file mode 100644 index 00000000..4f8fb070 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/haxe_language_server/init.lua @@ -0,0 +1,8 @@ +local path = require "mason.core.path" + +---@param install_dir string +return function(install_dir) + return { + cmd = { "node", path.concat { install_dir, "bin", "server.js" } }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/jdtls/README.md b/lua/mason-lspconfig/server_configurations/jdtls/README.md new file mode 100644 index 00000000..fa801337 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/jdtls/README.md @@ -0,0 +1,33 @@ +# jdtls + +## Customizing JVM arguments + +It's possible to customize some of the JVM arguments used to launch the server by setting the `vmargs` configuration. +This can for example be used to change the memory configuration. + +Example:: + +```lua +lspconfig.jdtls.setup { + vmargs = { + "-XX:+UseParallelGC", + "-XX:GCTimeRatio=4", + "-XX:AdaptiveSizePolicyWeight=90", + "-Dsun.zip.disableMemoryMapping=true", + "-Djava.import.generatesMetadataFilesAtProjectRoot=false", + "-Xmx1G", + "-Xms100m", + } +} +``` + +## Enable Lombok support + +Lombok support is disabled by default. To enable Lombok support, set the `use_lombok_agent` configuration to `true` +during setup, like so: + +```lua +lspconfig.jdtls.setup { + use_lombok_agent = true +} +``` diff --git a/lua/mason-lspconfig/server_configurations/jdtls/init.lua b/lua/mason-lspconfig/server_configurations/jdtls/init.lua new file mode 100644 index 00000000..28b69d30 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/jdtls/init.lua @@ -0,0 +1,78 @@ +local path = require "mason.core.path" +local _ = require "mason.core.functional" +local platform = require "mason.core.platform" + +---@param install_dir string +return function(install_dir) + ---@param workspace_root string + ---@param workspace_path string|nil @The path to the server instance's current workspace. Can be nil when running in single file mode. + ---@param vmargs string[] + ---@param use_lombok_agent boolean + local function get_cmd(workspace_root, workspace_path, vmargs, use_lombok_agent) + local executable = vim.env.JAVA_HOME and path.concat { vim.env.JAVA_HOME, "bin", "java" } or "java" + local jar = vim.fn.expand(path.concat { install_dir, "plugins", "org.eclipse.equinox.launcher_*.jar" }) + local lombok = vim.fn.expand(path.concat { install_dir, "lombok.jar" }) + local workspace_dir = vim.fn.fnamemodify(workspace_path or vim.fn.getcwd(), ":p:h:t") + + local cmd = _.list_not_nil( + platform.is_win and ("%s.exe"):format(executable) or executable, + "-Declipse.application=org.eclipse.jdt.ls.core.id1", + "-Dosgi.bundles.defaultStartLevel=4", + "-Declipse.product=org.eclipse.jdt.ls.core.product", + _.when(platform.is.win, "-DwatchParentProcess=false"), -- https://github.com/redhat-developer/vscode-java/pull/847 + "--add-modules=ALL-SYSTEM", + "--add-opens", + "java.base/java.util=ALL-UNNAMED", + "--add-opens", + "java.base/java.lang=ALL-UNNAMED", + "--add-opens", + "java.base/sun.nio.fs=ALL-UNNAMED", -- https://github.com/redhat-developer/vscode-java/issues/2264 + _.when(use_lombok_agent, "-javaagent:" .. lombok), -- javaagent needs to come before -jar flag + "-jar", + jar, + "-configuration", + path.concat { + install_dir, + _.coalesce( + _.when(platform.is.mac, "config_mac"), + _.when(platform.is.linux, "config_linux"), + _.when(platform.is.win, "config_win") + ), + }, + "-data", + path.concat { workspace_root, workspace_dir } + ) + + return vim.list_extend(cmd, vmargs) + end + + local DEFAULT_VMARGS = { + "-XX:+UseParallelGC", + "-XX:GCTimeRatio=4", + "-XX:AdaptiveSizePolicyWeight=90", + "-Dsun.zip.disableMemoryMapping=true", + "-Djava.import.generatesMetadataFilesAtProjectRoot=false", + "-Xmx1G", + "-Xms100m", + } + + return { + cmd = get_cmd( + vim.env.WORKSPACE and vim.env.WORKSPACE or path.concat { vim.env.HOME, "workspace" }, + vim.loop.cwd(), + DEFAULT_VMARGS, + false + ), + on_new_config = function(config, workspace_path) + -- We redefine the cmd in on_new_config because `cmd` will be invalid if the user has not installed + -- jdtls when starting the session (due to vim.fn.expand returning an empty string, because it can't + -- locate the file). + config.cmd = get_cmd( + vim.env.WORKSPACE and vim.env.WORKSPACE or path.concat { vim.env.HOME, "workspace" }, + workspace_path, + config.vmargs or DEFAULT_VMARGS, + config.use_lombok_agent or false + ) + end, + } +end diff --git a/lua/mason-lspconfig/server_configurations/julials/README.md b/lua/mason-lspconfig/server_configurations/julials/README.md new file mode 100644 index 00000000..18e6880d --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/julials/README.md @@ -0,0 +1,9 @@ +# julials + +## Configuring the Julia Environment + +The Julia Environment will be identified in the following order: + +1) user configuration (`lspconfig.julials.setup { julia_env_path = "/my/env" }`) +2) if the `Project.toml` & `Manifest.toml` (or `JuliaProject.toml` & `JuliaManifest.toml`) files exists in the current project working directory, the current project working directory is used as the environment +3) the result of `Pkg.Types.Context().env.project_file` diff --git a/lua/mason-lspconfig/server_configurations/julials/init.lua b/lua/mason-lspconfig/server_configurations/julials/init.lua new file mode 100644 index 00000000..afa89662 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/julials/init.lua @@ -0,0 +1,50 @@ +local path = require "mason.core.path" +local platform = require "mason.core.platform" +local fs = require "mason.core.fs" +local _ = require "mason.core.functional" + +---@param install_dir string +return function(install_dir) + return { + on_new_config = function(config, workspace_dir) + local env_path = config.julia_env_path and vim.fn.expand(config.julia_env_path) + if not env_path then + local file_exists = _.compose(fs.sync.file_exists, path.concat, _.concat { workspace_dir }) + if file_exists { "Project.toml" } and file_exists { "Manifest.toml" } then + env_path = workspace_dir + elseif file_exists { "JuliaProject.toml" } and file_exists { "JuliaManifest.toml" } then + env_path = workspace_dir + end + end + + if not env_path then + local ok, env = pcall(vim.fn.system, { + "julia", + "--startup-file=no", + "--history-file=no", + "-e", + "using Pkg; print(dirname(Pkg.Types.Context().env.project_file))", + }) + if ok then + env_path = env + end + end + + config.cmd = { + "julia", + "--startup-file=no", + "--history-file=no", + "--depwarn=no", + ("--project=%s"):format(path.concat { install_dir, "scripts", "environments", "languageserver" }), + path.concat { install_dir, "nvim-lsp.jl" }, + vim.env.JULIA_DEPOT_PATH or "", + path.concat { install_dir, "symbolstorev5" }, + env_path, + } + end, + cmd_env = { + JULIA_DEPOT_PATH = path.concat { install_dir, "lsdepot" }, + JULIA_LOAD_PATH = platform.is.win and ";" or ":", + }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/omnisharp/README.md b/lua/mason-lspconfig/server_configurations/omnisharp/README.md new file mode 100644 index 00000000..3aec548b --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/omnisharp/README.md @@ -0,0 +1,14 @@ +# omnisharp + +## How to enable Omnisharp Mono + +By default, the `omnisharp` server will use the `dotnet` (NET6) runtime to run the server. +To run the server using the Mono runtime, set the `use_mono` setting like so: + +```lua +local lspconfig = require("lspconfig") + +lspconfig.omnisharp.setup { + use_mono = true +} +``` diff --git a/lua/mason-lspconfig/server_configurations/omnisharp/init.lua b/lua/mason-lspconfig/server_configurations/omnisharp/init.lua new file mode 100644 index 00000000..5ff2b9fc --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/omnisharp/init.lua @@ -0,0 +1,32 @@ +local path = require "mason.core.path" + +---@param install_dir string +---@param use_mono boolean +local function generate_cmd(install_dir, use_mono) + if use_mono then + return { + "mono", + path.concat { install_dir, "omnisharp-mono", "OmniSharp.exe" }, + "--languageserver", + "--hostPID", + tostring(vim.fn.getpid()), + } + else + return { + "dotnet", + path.concat { install_dir, "omnisharp", "OmniSharp.dll" }, + "--languageserver", + "--hostPID", + tostring(vim.fn.getpid()), + } + end +end + +---@param install_dir string +return function(install_dir) + return { + on_new_config = function(config) + config.cmd = generate_cmd(install_dir, config.use_mono) + end, + } +end diff --git a/lua/mason-lspconfig/server_configurations/perlnavigator/init.lua b/lua/mason-lspconfig/server_configurations/perlnavigator/init.lua new file mode 100644 index 00000000..bf59e06d --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/perlnavigator/init.lua @@ -0,0 +1,12 @@ +local path = require "mason.core.path" + +---@param install_dir string +return function(install_dir) + return { + cmd = { + "node", + path.concat { install_dir, "node_modules", "perlnavigator-server", "out", "server.js" }, + "--stdio", + }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/powershell_es/init.lua b/lua/mason-lspconfig/server_configurations/powershell_es/init.lua new file mode 100644 index 00000000..d36a580b --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/powershell_es/init.lua @@ -0,0 +1,6 @@ +---@param install_dir string +return function(install_dir) + return { + bundle_path = install_dir, + } +end diff --git a/lua/mason-lspconfig/server_configurations/pylsp/README.md b/lua/mason-lspconfig/server_configurations/pylsp/README.md new file mode 100644 index 00000000..2434bb4b --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/pylsp/README.md @@ -0,0 +1,16 @@ +# Pylsp + +## Installing pylsp plugins + +Pylsp has [third party plugins](https://github.com/python-lsp/python-lsp-server#3rd-party-plugins) which are not installed by default. + +In order for these plugins to work with the `pylsp` server managed by this plugin, they need to be installed in the same [virtual environment](https://docs.python.org/3/library/venv.html) as `pylsp`. For these reasons, there's a convenient `:PylspInstall ` command that does this for you, for example: + +```vim +:PylspInstall pyls-flake8 pylsp-mypy pyls-isort +``` + +The `:PylspInstall` command will only be available once the `pylsp` server has been set up. + +**Note that these extra pylsp plugins will not be reinstalled if you update/reinstall the `pylsp` server, you will have to manage +them manually.** diff --git a/lua/mason-lspconfig/server_configurations/pylsp/init.lua b/lua/mason-lspconfig/server_configurations/pylsp/init.lua new file mode 100644 index 00000000..26da1dfd --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/pylsp/init.lua @@ -0,0 +1,51 @@ +local a = require "mason.core.async" +local _ = require "mason.core.functional" +local pip3 = require "mason.core.managers.pip3" +local process = require "mason.core.process" +local notify = require "mason.notify" +local spawn = require "mason.core.spawn" + +---@param install_dir string +return function(install_dir) + vim.api.nvim_create_user_command( + "PylspInstall", + a.scope(function(opts) + local plugins = opts.fargs + local plugins_str = table.concat(plugins, ", ") + notify(("Installing %s..."):format(plugins_str)) + local result = spawn.pip { + "install", + "-U", + "--disable-pip-version-check", + plugins, + stdio_sink = process.simple_sink(), + with_paths = { pip3.venv_path(install_dir) }, + } + if vim.in_fast_event() then + a.scheduler() + end + result + :on_success(function() + notify(("Successfully installed pylsp plugins %s"):format(plugins_str)) + end) + :on_failure(function() + notify("Failed to install requested pylsp plugins.", vim.log.levels.ERROR) + end) + end), + { + desc = "[mason.nvim] Installs the provided packages in the same venv as pylsp.", + nargs = "+", + complete = _.always { + "pyls-flake8", + "pylsp-mypy", + "pyls-spyder", + "pyls-isort", + "python-lsp-black", + "pyls-memestra", + "pylsp-rope", + }, + } + ) + + return {} +end diff --git a/lua/mason-lspconfig/server_configurations/r_language_server/init.lua b/lua/mason-lspconfig/server_configurations/r_language_server/init.lua new file mode 100644 index 00000000..b4659995 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/r_language_server/init.lua @@ -0,0 +1,8 @@ +local path = require "mason.core.path" + +---@param install_dir string +return function(install_dir) + return { + cmd = { "R", "--slave", "-f", path.concat { install_dir, "server.R" } }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/rescriptls/init.lua b/lua/mason-lspconfig/server_configurations/rescriptls/init.lua new file mode 100644 index 00000000..557af1cd --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/rescriptls/init.lua @@ -0,0 +1,8 @@ +local path = require "mason.core.path" + +---@param install_dir string +return function(install_dir) + return { + cmd = { "node", path.concat { install_dir, "extension", "server", "out", "server.js" }, "--stdio" }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/solang/init.lua b/lua/mason-lspconfig/server_configurations/solang/init.lua new file mode 100644 index 00000000..ab756afd --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/solang/init.lua @@ -0,0 +1,14 @@ +local path = require "mason.core.path" +local process = require "mason.core.process" + +---@param install_dir string +return function(install_dir) + return { + cmd_env = { + PATH = process.extend_path { + path.concat { install_dir, "llvm13.0", "bin" }, + path.concat { install_dir, "llvm12.0", "bin" }, -- kept for backwards compatibility + }, + }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/tflint/README.md b/lua/mason-lspconfig/server_configurations/tflint/README.md new file mode 100644 index 00000000..51298d69 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/tflint/README.md @@ -0,0 +1,14 @@ +# tflint + +## Installing TFLint plugins + +TFLint has [third party plugins](https://github.com/terraform-linters/tflint/blob/master/docs/user-guide/plugins.md) which are not installed by default. + +To install TFLint plugins, there's a convenient `:TFLintInit` command that does this for you. It will use Neovim's +current working directory to locate the plugins to install (according to `tflint --init`): + +``` +:TFLintInit +``` + +The `:TFLintInit` command will only be available once the `tflint` server has been set up. diff --git a/lua/mason-lspconfig/server_configurations/visualforce_ls/init.lua b/lua/mason-lspconfig/server_configurations/visualforce_ls/init.lua new file mode 100644 index 00000000..b6209385 --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/visualforce_ls/init.lua @@ -0,0 +1,21 @@ +local path = require "mason.core.path" + +---@param install_dir string +return function(install_dir) + return { + cmd = { + "node", + path.concat { + install_dir, + "extension", + "node_modules", + "@salesforce", + "salesforcedx-visualforce-language-server", + "out", + "src", + "visualforceServer.js", + }, + "--stdio", + }, + } +end diff --git a/lua/mason-lspconfig/server_configurations/volar/init.lua b/lua/mason-lspconfig/server_configurations/volar/init.lua new file mode 100644 index 00000000..80b9841a --- /dev/null +++ b/lua/mason-lspconfig/server_configurations/volar/init.lua @@ -0,0 +1,29 @@ +local npm = require "mason.core.managers.npm" +local fs = require "mason.core.fs" +local path = require "mason.core.path" + +---@param install_dir string +return function(install_dir) + ---@param dir string + local function get_tsserverlib_path(dir) + return path.concat { dir, "node_modules", "typescript", "lib", "tsserverlibrary.js" } + end + + ---@param workspace_dir string|nil + local function get_typescript_server_path(workspace_dir) + local local_tsserverlib = workspace_dir ~= nil and get_tsserverlib_path(workspace_dir) + local vendored_tsserverlib = get_tsserverlib_path(install_dir) + if local_tsserverlib and fs.sync.file_exists(local_tsserverlib) then + return local_tsserverlib + else + return vendored_tsserverlib + end + end + + return { + cmd_env = npm.env(install_dir), + on_new_config = function(new_config, new_install_dir) + new_config.init_options.typescript.serverPath = get_typescript_server_path(new_install_dir) + end, + } +end diff --git a/lua/mason-lspconfig/settings.lua b/lua/mason-lspconfig/settings.lua new file mode 100644 index 00000000..e7dc0e57 --- /dev/null +++ b/lua/mason-lspconfig/settings.lua @@ -0,0 +1,27 @@ +local M = {} + +---@class MasonLspconfigSettings +local DEFAULT_SETTINGS = { + -- A list of servers to automatically install if they're not already installed. Example: { "rust-analyzer@nightly", "sumneko_lua" } + -- This setting has no relation with the `automatic_installation` setting. + ensure_installed = {}, + + -- Whether servers that are set up (via lspconfig) should be automatically installed if they're not already installed. + -- This setting has no relation with the `ensure_installed` setting. + -- Can either be: + -- - false: Servers are not automatically installed. + -- - true: All servers set up via lspconfig are automatically installed. + -- - { exclude: string[] }: All servers set up via lspconfig, except the ones provided in the list, are automatically installed. + -- Example: automatic_installation = { exclude = { "rust_analyzer", "solargraph" } } + automatic_installation = false, +} + +M._DEFAULT_SETTINGS = DEFAULT_SETTINGS +M.current = M._DEFAULT_SETTINGS + +---@param opts MasonLspconfigSettings +function M.set(opts) + M.current = vim.tbl_deep_extend("force", M.current, opts) +end + +return M diff --git a/lua/mason.lua b/lua/mason.lua new file mode 100644 index 00000000..82da0570 --- /dev/null +++ b/lua/mason.lua @@ -0,0 +1,30 @@ +local settings = require "mason.settings" +local path = require "mason.core.path" +local platform = require "mason.core.platform" + +local M = {} + +---@param config MasonSettings | nil +function M.setup(config) + if config then + settings.set(config) + end + + vim.env.PATH = path.bin_prefix() .. platform.path_sep .. vim.env.PATH + + require "mason.command-api" +end + +---@param pkg_path string +local function lazy_require(pkg_path) + return setmetatable({}, { + __index = function(_, k) + return require(pkg_path)[k] + end, + __call = function(_, ...) + return require(pkg_path)(...) + end, + }) +end + +return M diff --git a/lua/mason/_generated/lsp-schemas/astro-language-server.lua b/lua/mason/_generated/lsp-schemas/astro-language-server.lua new file mode 100644 index 00000000..9a97d138 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/astro-language-server.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["astro.css.completions.emmet"] = {default = true,description = "Enable Emmet completions for CSS",title = "CSS: Emmet Completions",type = "boolean"},["astro.css.completions.enabled"] = {default = true,description = "Enable completions for CSS",title = "CSS: Completions",type = "boolean"},["astro.css.documentColors.enabled"] = {default = true,description = "Enable color picker for CSS",title = "CSS: Document Colors",type = "boolean"},["astro.css.documentSymbols.enabled"] = {default = true,description = "Enable document symbols for CSS",title = "CSS: Symbols in Outline",type = "boolean"},["astro.css.enabled"] = {default = true,description = "Enable CSS features",title = "CSS",type = "boolean"},["astro.css.hover.enabled"] = {default = true,description = "Enable hover info for CSS",title = "CSS: Hover Info",type = "boolean"},["astro.format.indentFrontmatter"] = {default = false,description = "Indent the formatter by one level of indentation",title = "Formatting: Indent frontmatter",type = "boolean"},["astro.format.newLineAfterFrontmatter"] = {default = true,description = "Add a line return between the frontmatter and the template",title = "Formatting: Add line return after the frontmatter",type = "boolean"},["astro.html.completions.emmet"] = {default = true,description = "Enable Emmet completions for HTML",title = "HTML: Emmet Completions",type = "boolean"},["astro.html.completions.enabled"] = {default = true,description = "Enable completions for HTML",title = "HTML: Completions",type = "boolean"},["astro.html.documentSymbols.enabled"] = {default = true,description = "Enable document symbols for CSS",title = "HTML: Symbols in Outline",type = "boolean"},["astro.html.enabled"] = {default = true,description = "Enable HTML features",title = "HTML",type = "boolean"},["astro.html.hover.enabled"] = {default = true,description = "Enable hover info for HTML",title = "HTML: Hover Info",type = "boolean"},["astro.html.tagComplete.enabled"] = {default = true,description = "Enable tag completion for HTML",title = "HTML: Tag Completion",type = "boolean"},["astro.trace.server"] = {default = "off",description = "Traces the communication between VS Code and the language server.",enum = { "off", "messages", "verbose" },scope = "window",type = "string"},["astro.typescript.allowArbitraryAttributes"] = {default = false,description = "Enable the usage of non-standard HTML attributes, such as the ones added by AlpineJS or petite-vue",title = "TypeScript: Allow arbitrary attributes on HTML elements",type = "boolean"},["astro.typescript.codeActions.enabled"] = {default = true,description = "Enable code actions for TypeScript",title = "TypeScript: Code Actions",type = "boolean"},["astro.typescript.completions.enabled"] = {default = true,description = "Enable completions for TypeScript",title = "TypeScript: Completions",type = "boolean"},["astro.typescript.definitions.enabled"] = {default = true,description = "Enable go to definition for TypeScript",title = "TypeScript: Go to Definition",type = "boolean"},["astro.typescript.diagnostics.enabled"] = {default = true,description = "Enable diagnostic messages for TypeScript",title = "TypeScript: Diagnostics",type = "boolean"},["astro.typescript.documentSymbols.enabled"] = {default = true,description = "Enable document symbols for TypeScript",title = "TypeScript: Symbols in Outline",type = "boolean"},["astro.typescript.enabled"] = {default = true,description = "Enable TypeScript features",title = "TypeScript",type = "boolean"},["astro.typescript.hover.enabled"] = {default = true,description = "Enable hover info for TypeScript",title = "TypeScript: Hover Info",type = "boolean"},["astro.typescript.rename.enabled"] = {default = true,description = "Enable rename functionality for JS/TS variables inside Astro files",title = "TypeScript: Rename",type = "boolean"},["astro.typescript.semanticTokens.enabled"] = {default = true,description = "Enable semantic tokens (used for semantic highlighting) for TypeScript.",title = "TypeScript: Semantic Tokens",type = "boolean"},["astro.typescript.signatureHelp.enabled"] = {default = true,description = "Enable signature help (parameter hints) for TypeScript",title = "TypeScript: Signature Help",type = "boolean"}},title = "Astro configuration",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/bash-language-server.lua b/lua/mason/_generated/lsp-schemas/bash-language-server.lua new file mode 100644 index 00000000..293d2dcd --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/bash-language-server.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["bashIde.explainshellEndpoint"] = {default = "",description = "Configure explainshell server in order to get hover documentation on flags and options.",type = "string"},["bashIde.globPattern"] = {default = "**/*@(.sh|.inc|.bash|.command)",description = "Glob pattern for finding and parsing shell script files.",type = "string"},["bashIde.highlightParsingErrors"] = {default = false,description = "Controls if parsing errors will be highlighted as problems.",type = "boolean"}},title = "Bash IDE configuration",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/clangd.lua b/lua/mason/_generated/lsp-schemas/clangd.lua new file mode 100644 index 00000000..d9147c25 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/clangd.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["clangd.arguments"] = {default = {},description = "Arguments for clangd server.",items = {type = "string"},type = "array"},["clangd.checkUpdates"] = {default = false,description = "Check for language server updates on startup.",type = "boolean"},["clangd.detectExtensionConflicts"] = {default = true,description = "Warn about conflicting extensions and suggest disabling them.",type = "boolean"},["clangd.fallbackFlags"] = {default = {},description = "Extra clang flags used to parse files when no compilation database is found.",items = {type = "string"},type = "array"},["clangd.onConfigChanged"] = {default = "prompt",description = "What to do when clangd configuration files are changed. Ignored for clangd 12+, which can reload such files itself.",enum = { "prompt", "restart", "ignore" },enumDescriptions = { "Prompt the user for restarting the server", "Automatically restart the server", "Do nothing" },type = "string"},["clangd.path"] = {default = "clangd",description = "The path to clangd executable, e.g.: /usr/bin/clangd.",scope = "machine-overridable",type = "string"},["clangd.restartAfterCrash"] = {default = true,description = "Auto restart clangd (up to 4 times) if it crashes.",type = "boolean"},["clangd.semanticHighlighting"] = {default = true,deprecationMessage = "Legacy semanticHighlights is no longer supported. Please use `editor.semanticHighlighting.enabled` instead.",description = "Enable semantic highlighting in clangd.",type = "boolean"},["clangd.serverCompletionRanking"] = {default = true,description = "Always rank completion items on the server as you type. This produces more accurate results at the cost of higher latency than client-side filtering.",type = "boolean"},["clangd.trace"] = {description = "Names a file that clangd should log a performance trace to, in chrome trace-viewer JSON format.",type = "string"}},title = "clangd",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/deno-lsp.lua b/lua/mason/_generated/lsp-schemas/deno-lsp.lua new file mode 100644 index 00000000..5ad46765 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/deno-lsp.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["deno.cache"] = {default = vim.NIL,markdownDescription = "A path to the cache directory for Deno. By default, the operating system's cache path plus `deno` is used, or the `DENO_DIR` environment variable, but if set, this path will be used instead.",scope = "window",type = "string"},["deno.certificateStores"] = {default = vim.NIL,items = {type = "string"},markdownDescription = "A list of root certificate stores used to validate TLS certificates when fetching and caching remote resources. This overrides the `DENO_TLS_CA_STORE` environment variable if set.",scope = "window",type = "array"},["deno.codeLens.implementations"] = {default = false,examples = { true, false },markdownDescription = "Enables or disables the display of code lens information for implementations of items in the code.",scope = "window",type = "boolean"},["deno.codeLens.references"] = {default = false,examples = { true, false },markdownDescription = "Enables or disables the display of code lens information for references of items in the code.",scope = "window",type = "boolean"},["deno.codeLens.referencesAllFunctions"] = {default = false,examples = { true, false },markdownDescription = "Enables or disables the display of code lens information for all functions in the code.",scope = "window",type = "boolean"},["deno.codeLens.test"] = {default = false,markdownDescription = "Enables or disables the display of code lenses that allow running of individual tests in the code.",scope = "resource",type = "boolean"},["deno.codeLens.testArgs"] = {default = { "--allow-all", "--no-check" },items = {type = "string"},markdownDescription = 'Additional arguments to use with the run test code lens. Defaults to `[ "--allow-all", "--no-check" ]`.',scope = "resource",type = "array"},["deno.config"] = {default = vim.NIL,examples = { "./deno.jsonc", "/path/to/deno.jsonc", "C:\\path\\to\\deno.jsonc" },markdownDescription = "The file path to a configuration file. This is the equivalent to using `--config` on the command line. The path can be either be relative to the workspace, or an absolute path.\n\nIt is recommend you name it `deno.json` or `deno.jsonc`.\n\n**Not recommended to be set globally.**",scope = "window",type = "string"},["deno.enable"] = {default = false,examples = { true, false },markdownDescription = "Controls if the Deno Language Server is enabled. When enabled, the extension will disable the built-in VSCode JavaScript and TypeScript language services, and will use the Deno Language Server instead.\n\nIf you want to enable only part of your workspace folder, consider using `deno.enablePaths` setting instead.\n\n**Not recommended to be enabled globally.**",scope = "resource",type = "boolean"},["deno.enablePaths"] = {default = {},examples = { { "./worker" } },items = {type = "string"},markdownDescription = 'Enables the Deno Language Server for specific paths, instead of for the whole workspace folder. This will disable the built in TypeScript/JavaScript language server for those paths.\n\nWhen a value is set, the value of `"deno.enable"` is ignored.\n\nThe workspace folder is used as the base for the supplied paths. If for example you have all your Deno code in `worker` path in your workspace, you can add an item with the value of `./worker`, and the Deno will only provide diagnostics for the files within `worker` or any of its sub paths.\n\n**Not recommended to be enabled in user settings.**',scope = "resource",type = "array"},["deno.importMap"] = {default = vim.NIL,examples = { "./import_map.json", "/path/to/import_map.json", "C:\\path\\to\\import_map.json" },markdownDescription = 'The file path to an import map. This is the equivalent to using `--import-map` on the command line.\n\n[Import maps](https://deno.land/manual@v1.6.0/linking_to_external_code/import_maps) provide a way to "relocate" modules based on their specifiers. The path can either be relative to the workspace, or an absolute path.\n\n**Not recommended to be set globally.**',scope = "window",type = "string"},["deno.internalDebug"] = {default = false,examples = { true, false },markdownDescription = "Determines if the internal debugging information for the Deno language server will be logged to the _Deno Language Server_ console.",scope = "window",type = "boolean"},["deno.lint"] = {default = true,examples = { true, false },markdownDescription = "Controls if linting information will be provided by the Deno Language Server.\n\n**Not recommended to be enabled globally.**",scope = "window",type = "boolean"},["deno.path"] = {default = vim.NIL,examples = { "/usr/bin/deno", "C:\\Program Files\\deno\\deno.exe" },markdownDescription = "A path to the `deno` CLI executable. By default, the extension looks for `deno` in the `PATH`, but if set, will use the path specified instead.",scope = "window",type = "string"},["deno.suggest.autoImports"] = {default = true,scope = "window",type = "boolean"},["deno.suggest.completeFunctionCalls"] = {default = false,scope = "window",type = "boolean"},["deno.suggest.imports.autoDiscover"] = {default = true,markdownDescription = "If enabled, when new hosts/origins are encountered that support import suggestions, you will be prompted to enable or disable it. Defaults to `true`.",scope = "window",type = "boolean"},["deno.suggest.imports.hosts"] = {default = {["https://crux.land"] = true,["https://deno.land"] = true,["https://x.nest.land"] = true},examples = {["https://deno.land"] = true},markdownDescription = "Controls which hosts are enabled for import suggestions.",scope = "window",type = "object"},["deno.suggest.names"] = {default = true,scope = "window",type = "boolean"},["deno.suggest.paths"] = {default = true,scope = "window",type = "boolean"},["deno.testing.args"] = {default = { "--allow-all", "--no-check" },items = {type = "string"},markdownDescription = 'Arguments to use when running tests via the Test Explorer. Defaults to `[ "--allow-all" ]`.',scope = "window",type = "array"},["deno.testing.enable"] = {default = true,markdownDescription = "Enable the testing API for the language server. When folder is Deno enabled, tests will be available in the Test Explorer view.",scope = "window",type = "boolean"},["deno.tlsCertificate"] = {default = vim.NIL,markdownDescription = "A path to a PEM certificate to use as the certificate authority when validating TLS certificates when fetching and caching remote resources. This is like using `--cert` on the Deno CLI and overrides the `DENO_CERT` environment variable if set.",scope = "window",type = "string"},["deno.unsafelyIgnoreCertificateErrors"] = {default = vim.NIL,items = {type = "string"},markdownDescription = "**DANGER** disables verification of TLS certificates for the hosts provided. There is likely a better way to deal with any errors than use this option. This is like using `--unsafely-ignore-certificate-errors` in the Deno CLI.",scope = "window",type = "array"},["deno.unstable"] = {default = false,examples = { true, false },markdownDescription = "Controls if code will be type checked with Deno's unstable APIs. This is the equivalent to using `--unstable` on the command line.\n\n**Not recommended to be enabled globally.**",scope = "window",type = "boolean"}},title = "Deno",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/elixir-ls.lua b/lua/mason/_generated/lsp-schemas/elixir-ls.lua new file mode 100644 index 00000000..ab43558b --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/elixir-ls.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["elixirLS.additionalWatchedExtensions"] = {default = {},description = "Additional file types capable of triggering a build on change",items = {type = "string"},type = "array",uniqueItems = true},["elixirLS.dialyzerEnabled"] = {default = true,description = "Run ElixirLS's rapid Dialyzer when code is saved",scope = "resource",type = "boolean"},["elixirLS.dialyzerFormat"] = {default = "dialyxir_long",description = "Formatter to use for Dialyzer warnings",enum = { "dialyzer", "dialyxir_short", "dialyxir_long" },markdownEnumDescriptions = { "Original Dialyzer format", "Same as `mix dialyzer --format short`", "Same as `mix dialyzer --format long`" },scope = "resource",type = "string"},["elixirLS.dialyzerWarnOpts"] = {default = {},description = "Dialyzer options to enable or disable warnings. See Dialyzer's documentation for options. Note that the \"race_conditions\" option is unsupported",items = {enum = { "error_handling", "extra_return", "missing_return", "no_behaviours", "no_contracts", "no_fail_call", "no_fun_app", "no_improper_lists", "no_match", "no_missing_calls", "no_opaque", "no_return", "no_undefined_callbacks", "no_unused", "underspecs", "unknown", "unmatched_returns", "overspecs", "specdiffs", "no_underspecs", "no_extra_return", "no_missing_return" },type = "string"},scope = "resource",type = "array",uniqueItems = true},["elixirLS.enableTestLenses"] = {default = false,description = "Show code lenses to run tests in terminal",type = "boolean"},["elixirLS.envVariables"] = {description = "Environment variables to use for compilation",minLength = 0,scope = "resource",type = "object"},["elixirLS.fetchDeps"] = {default = false,description = "Automatically fetch project dependencies when compiling",scope = "resource",type = "boolean"},["elixirLS.mixEnv"] = {default = "test",description = "Mix environment to use for compilation",minLength = 1,scope = "resource",type = "string"},["elixirLS.mixTarget"] = {description = "Mix target to use for compilation",minLength = 0,scope = "resource",type = "string"},["elixirLS.projectDir"] = {default = "",description = "Subdirectory containing Mix project if not in the project root",minLength = 0,scope = "resource",type = "string"},["elixirLS.signatureAfterComplete"] = {default = true,description = "Show signature help after confirming autocomplete",type = "boolean"},["elixirLS.suggestSpecs"] = {default = true,description = "Suggest @spec annotations inline using Dialyzer's inferred success typings (Requires Dialyzer)",scope = "resource",type = "boolean"},["elixirLS.trace.server"] = {default = "off",description = "Traces the communication between VS Code and the Elixir language server.",enum = { "off", "messages", "verbose" },type = "string"}},title = "ElixirLS"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/elm-language-server.lua b/lua/mason/_generated/lsp-schemas/elm-language-server.lua new file mode 100644 index 00000000..9d0d0c7e --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/elm-language-server.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["elmLS.disableElmLSDiagnostics"] = {default = false,description = "Disable linting diagnostics from the language server.",scope = "window",type = "boolean"},["elmLS.elmFormatPath"] = {default = "",description = "The path to your elm-format executable. Should be empty by default, in that case it will assume the name and try to first get it from a local npm installation or a global one. If you set it manually it will not try to load from the npm folder.",scope = "window",type = "string"},["elmLS.elmPath"] = {default = "",description = "The path to your elm executable. Should be empty by default, in that case it will assume the name and try to first get it from a local npm installation or a global one. If you set it manually it will not try to load from the npm folder.",scope = "window",type = "string"},["elmLS.elmReviewDiagnostics"] = {default = "off",description = "Set severity or disable linting diagnostics for elm-review.",enum = { "off", "warning", "error" },scope = "window",type = "string"},["elmLS.elmReviewPath"] = {default = "",description = "The path to your elm-review executable. Should be empty by default, in that case it will assume the name and try to first get it from a local npm installation or a global one. If you set it manually it will not try to load from the npm folder.",scope = "window",type = "string"},["elmLS.elmTestPath"] = {default = "",description = "The path to your elm-test executable. Should be empty by default, in that case it will assume the name and try to first get it from a local npm installation or a global one. If you set it manually it will not try to load from the npm folder.",scope = "window",type = "string"},["elmLS.elmTestRunner.showElmTestOutput"] = {description = "Show output of elm-test as terminal task",scope = "resource",type = "boolean"},["elmLS.onlyUpdateDiagnosticsOnSave"] = {default = false,description = "Only update compiler diagnostics on save, not on document change.",scope = "window",type = "boolean"},["elmLS.skipInstallPackageConfirmation"] = {default = false,description = "Skips confirmation for the Install Package code action.",scope = "window",type = "boolean"},["elmLS.trace.server"] = {default = "off",description = "Traces the communication between VS Code and the language server.",enum = { "off", "messages", "verbose" },scope = "window",type = "string"}},title = "Elm",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/fsautocomplete.lua b/lua/mason/_generated/lsp-schemas/fsautocomplete.lua new file mode 100644 index 00000000..72a08868 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/fsautocomplete.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["FAKE.showTargetsOutlineIn"] = {default = "explorer",description = "Set the activity (left bar) where the FAKE targets outline view will be displayed.\nRequires restart.",enum = { "explorer", "fsharp" },scope = "application",type = "string"},["FAKE.targetsOutline"] = {default = true,description = "Enables the Targets Outline tree view.",scope = "resource",type = "boolean"},["FSharp.abstractClassStubGeneration"] = {default = true,description = "Enables a codefix that generates missing members for an abstract class when in an type inheriting from that abstract class.",type = "boolean"},["FSharp.abstractClassStubGenerationMethodBody"] = {default = 'failwith "Not Implemented"',description = "The expression to fill in the right-hand side of inherited members when generating missing members for an abstract base class",type = "string"},["FSharp.abstractClassStubGenerationObjectIdentifier"] = {default = "this",description = "The name of the 'self' identifier in an inherited member. For example, `this` in the expression `this.Member(x: int) = ()`",type = "string"},["FSharp.addFsiWatcher"] = {default = false,description = "Enables a panel for FSI that shows the value of all existing bindings in the FSI session",type = "boolean"},["FSharp.analyzersPath"] = {default = { "packages/Analyzers", "analyzers" },description = "Directories in the array are used as a source of custom analyzers. Requires restart.",scope = "machine-overridable",type = "array"},["FSharp.autoRevealInExplorer"] = {default = "sameAsFileExplorer",description = "Controls whether the solution explorer should automatically reveal and select files when opening them. If `sameAsFileExplorer` is set, then the value of the `explorer.autoReveal` setting will be used instead.",enum = { "sameAsFileExplorer", "enabled", "disabled" },scope = "window",type = "string"},["FSharp.codeLenses.references.enabled"] = {default = true,description = "If enabled, code lenses for reference counts for methods and functions will be shown.",type = "boolean"},["FSharp.codeLenses.signature.enabled"] = {default = true,description = "If enabled, code lenses for type signatures on methods and functions will be shown.",type = "boolean"},["FSharp.disableFailedProjectNotifications"] = {default = false,description = "Disables popup notifications for failed project loading",type = "boolean"},["FSharp.dotnetRoot"] = {description = "Sets the root path for finding locating the dotnet CLI binary. Defaults to the `dotnet` binary found on your system PATH.",type = "string"},["FSharp.enableAnalyzers"] = {default = false,description = "EXPERIMENTAL. Enables F# analyzers for custom code diagnostics. Requires restart.",type = "boolean"},["FSharp.enableBackgroundServices"] = {default = true,description = "Enables background services responsible for creating symbol cache and typechecking files in the background. Requires restart.",type = "boolean"},["FSharp.enableMSBuildProjectGraph"] = {default = false,description = "EXPERIMENTAL. Enables support for loading workspaces with MsBuild's ProjectGraph. This can improve load times. Requires restart.",type = "boolean"},["FSharp.enableReferenceCodeLens"] = {default = true,deprecationMessage = "This setting is deprecated. Use FSharp.codeLenses.references.enabled instead.",description = "Enables additional code lenses showing number of references of a function or value. Requires background services to be enabled.",markdownDeprecationMessage = "This setting is **deprecated**. Use `#FSharp.codeLenses.references.enabled#` instead.",type = "boolean"},["FSharp.enableTouchBar"] = {default = true,description = "Enables TouchBar integration of build/run/debug buttons",type = "boolean"},["FSharp.enableTreeView"] = {default = true,description = "Enables the solution explorer view of the current workspace, which shows the workspace as MSBuild sees it",type = "boolean"},["FSharp.excludeProjectDirectories"] = {default = { ".git", "paket-files", ".fable", "packages", "node_modules" },description = "Directories in the array are excluded from project file search. Requires restart.",type = "array"},["FSharp.externalAutocomplete"] = {default = false,description = "Includes external (from unopened modules and namespaces) symbols in autocomplete",type = "boolean"},["FSharp.fsac.attachDebugger"] = {default = false,description = "Appends the '--attachdebugger' argument to fsac, this will allow you to attach a debugger.",type = "boolean"},["FSharp.fsac.dotnetArgs"] = {default = {},description = "additional CLI arguments to be provided to the dotnet runner for FSAC",items = {type = "string"},type = "array"},["FSharp.fsac.netCoreDllPath"] = {default = "",description = "The path to the 'fsautocomplete.dll', useful for debugging a self-built fsac.",scope = "machine-overridable",type = "string"},["FSharp.fsac.silencedLogs"] = {default = {},description = "An array of log categories for FSAC to filter out. These can be found by viewing your log output and noting the text in between the brackets in the log line. For example, in the log line `[16:07:14.626 INF] [Compiler] done compiling foo.fsx`, the category is 'Compiler'. ",items = {type = "string"},type = "array"},["FSharp.fsiExtraParameters"] = {default = {},markdownDescription = "An array of additional command line parameters to pass to FSI when it is started. See [the Microsoft documentation](https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/fsharp-interactive-options) for an exhaustive list.",type = "array"},["FSharp.fsiFilePath"] = {default = "",description = "The path to the F# Interactive tool used by Ionide-FSharp (.NET Framework only, on .NET Core `FSharp.fsiSdkFilePath` is used)",scope = "machine-overridable",type = "string"},["FSharp.fsiSdkFilePath"] = {default = "",description = "The path to the F# Interactive tool used by Ionide-FSharp (When using .NET SDK scripts)",scope = "machine-overridable",type = "string"},["FSharp.generateBinlog"] = {default = false,markdownDescription = "Enables generation of `msbuild.binlog` files for project loading. It works only for fresh, non-cached project loading. Run `F#: Clear Project Cache` and reload window to force fresh loading of all projects. These files can be loaded and inspected using the [MSBuild Structured Logger](https://github.com/KirillOsenkov/MSBuildStructuredLog)",type = "boolean"},["FSharp.indentationSize"] = {description = "The number of spaces used for indentation when generating code, e.g. for interface stubs",minimum = 0,type = "number"},["FSharp.infoPanelReplaceHover"] = {default = false,description = "Controls whether the info panel replaces tooltips",type = "boolean"},["FSharp.infoPanelShowOnStartup"] = {default = false,description = "Controls whether the info panel should be displayed at startup",type = "boolean"},["FSharp.infoPanelStartLocked"] = {default = false,description = "Controls whether the info panel should be locked at startup",type = "boolean"},["FSharp.infoPanelUpdate"] = {default = "onCursorMove",description = "Controls when the info panel is updated",enum = { "onCursorMove", "onHover", "both", "none" },type = "string"},["FSharp.inlayHints.disableLongTooltip"] = {default = false,description = "Hides the explanatory tooltip that appears on InlayHints to describe the different configuration toggles.",type = "boolean"},["FSharp.inlayHints.enabled"] = {default = true,description = "Controls if the inlay hints feature is enabled",type = "boolean"},["FSharp.inlayHints.parameterNames"] = {default = true,description = "Controls if parameter-name inlay hints will be displayed for functions and methods",type = "boolean"},["FSharp.inlayHints.typeAnnotations"] = {default = true,description = "Controls if type-annotation inlay hints will be displayed for bindings.",type = "boolean"},["FSharp.interfaceStubGeneration"] = {default = true,description = "Enables a codefix that generates missing interface members when inside of an interface implementation expression",type = "boolean"},["FSharp.interfaceStubGenerationMethodBody"] = {default = 'failwith "Not Implemented"',description = "The expression to fill in the right-hand side of interface members when generating missing members for an interface implementation expression",type = "string"},["FSharp.interfaceStubGenerationObjectIdentifier"] = {default = "this",description = "The name of the 'self' identifier in an interface member. For example, `this` in the expression `this.Member(x: int) = ()`",type = "string"},["FSharp.keywordsAutocomplete"] = {default = true,description = "Includes keywords in autocomplete",type = "boolean"},["FSharp.lineLens.enabled"] = {default = "replaceCodeLens",description = "Usage mode for LineLens. If `never`, LineLens will never be shown. If `replaceCodeLens`, LineLens will be placed in a decoration on top of the current line.",enum = { "never", "replaceCodeLens", "always" },type = "string"},["FSharp.lineLens.prefix"] = {default = " // ",description = "The prefix displayed before the signature in a LineLens",type = "string"},["FSharp.linter"] = {default = true,markdownDescription = "Enables integration with [FSharpLint](https://fsprojects.github.io/FSharpLint/) for additional (user-defined) warnings",type = "boolean"},["FSharp.msbuildAutoshow"] = {default = false,description = "Automatically shows the MSBuild output panel when MSBuild functionality is invoked",type = "boolean"},["FSharp.pipelineHints.enabled"] = {default = true,description = "Enables PipeLine hints, which are like LineLenses that appear along each step of a chain of piped expressions",type = "boolean"},["FSharp.pipelineHints.prefix"] = {default = " // ",description = "The prefix displayed before the signature",type = "string"},["FSharp.recordStubGeneration"] = {default = true,description = "Enables a codefix that will generate missing record fields when inside a record construction expression",type = "boolean"},["FSharp.recordStubGenerationBody"] = {default = 'failwith "Not Implemented"',description = "The expression to fill in the right-hand side of record fields when generating missing fields for a record construction expression",type = "string"},["FSharp.resolveNamespaces"] = {default = true,description = "Enables a codefix that will suggest namespaces or module to open when a name is not recognized",type = "boolean"},["FSharp.saveOnSendLastSelection"] = {default = false,description = "If enabled, the current file will be saved before sending the last selection to FSI for evaluation",type = "boolean"},["FSharp.showExplorerOnStartup"] = {default = true,description = "Automatically shows solution explorer on plugin startup",type = "boolean"},["FSharp.showProjectExplorerIn"] = {default = "fsharp",description = "Set the activity (left bar) where the project explorer view will be displayed. If `explorer`, then the project explorer will be a collapsible tab in the main explorer view, a sibling to the file system explorer. If `fsharp`, a new activity with the F# logo will be added and the project explorer will be rendered in this activity.Requires restart.",enum = { "explorer", "fsharp" },scope = "application",type = "string"},["FSharp.simplifyNameAnalyzer"] = {default = true,description = "Enables detection of cases when names of functions and values can be simplified",type = "boolean"},["FSharp.smartIndent"] = {default = false,description = "Enables smart indent feature",type = "boolean"},["FSharp.suggestGitignore"] = {default = true,description = "Allow Ionide to prompt whenever internal data files aren't included in your project's .gitignore",type = "boolean"},["FSharp.suggestSdkScripts"] = {default = true,description = "Allow Ionide to prompt to use SdkScripts",type = "boolean"},["FSharp.trace.server"] = {default = "off",description = "Trace server messages at the LSP protocol level for diagnostics.",enum = { "off", "messages", "verbose" },scope = "window",type = "string"},["FSharp.unionCaseStubGeneration"] = {default = true,description = "Enables a codefix that generates missing union cases when in a match expression",type = "boolean"},["FSharp.unionCaseStubGenerationBody"] = {default = 'failwith "Not Implemented"',description = "The expression to fill in the right-hand side of match cases when generating missing cases for a match on a discriminated union",type = "string"},["FSharp.unusedDeclarationsAnalyzer"] = {default = true,description = "Enables detection of unused declarations",type = "boolean"},["FSharp.unusedOpensAnalyzer"] = {default = true,description = "Enables detection of unused opens",type = "boolean"},["FSharp.useSdkScripts"] = {default = true,description = "Use 'dotnet fsi' instead of 'fsi.exe'/'fsharpi' to start an FSI session",type = "boolean"},["FSharp.verboseLogging"] = {default = false,description = "Logs additional information to F# output channel. This is equivalent to passing the `--verbose` flag to FSAC. Requires restart.",type = "boolean"},["FSharp.workspaceModePeekDeepLevel"] = {default = 4,description = "The deep level of directory hierarchy when searching for sln/projects",type = "integer"},["FSharp.workspacePath"] = {description = "Path to the directory or solution file that should be loaded as a workspace. If set, no workspace probing or discovery is done by Ionide at all.",scope = "window",type = "string"}},title = "F#",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/grammarly-languageserver.lua b/lua/mason/_generated/lsp-schemas/grammarly-languageserver.lua new file mode 100644 index 00000000..d1063c86 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/grammarly-languageserver.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["grammarly.config.documentDialect"] = {default = "auto-text",enum = { "american", "australian", "british", "canadian", "auto-text" },enumDescriptions = { "", "", "", "", "An appropriate value based on the text." },markdownDescription = "Specific variety of English being written. See [this article](https://support.grammarly.com/hc/en-us/articles/115000089992-Select-between-British-English-American-English-Canadian-English-and-Australian-English) for differences.",scope = "language-overridable"},["grammarly.config.documentDomain"] = {default = "general",enum = { "academic", "business", "general", "mail", "casual", "creative" },enumDescriptions = { "Academic is the strictest style of writing. On top of catching grammar and punctuation issues, Grammarly will make suggestions around passive voice, contractions, and informal pronouns (I, you), and will point out unclear antecedents (e.g., sentences starting with “This is…”).", "The business style setting checks the text against formal writing criteria. However, unlike the Academic domain, it allows the use of some informal expressions, informal pronouns, and unclear antecedents.", "This is the default style and uses a medium level of strictness.", "The email genre is similar to the General domain and helps ensure that your email communication is engaging. In addition to catching grammar, spelling, and punctuation mistakes, Grammarly also points out the use of overly direct language that may sound harsh to a reader.", "Casual is designed for informal types of writing and ignores most style issues. It does not flag contractions, passive voice, informal pronouns, who-versus-whom usage, split infinitives, or run-on sentences. This style is suitable for personal communication.", "This is the most permissive style. It catches grammar, punctuation, and spelling mistakes but allows some leeway for those who want to intentionally bend grammar rules to achieve certain effects. Creative doesn’t flag sentence fragments (missing subjects or verbs), wordy sentences, colloquialisms, informal pronouns, passive voice, incomplete comparisons, or run-on sentences." },markdownDescription = "The style or type of writing to be checked. See [What is domain/document type](https://support.grammarly.com/hc/en-us/articles/115000091472-What-is-domain-document-type-)?",scope = "language-overridable"},["grammarly.config.suggestions.ConjunctionAtStartOfSentence"] = {default = false,description = "Flags use of conjunctions such as 'but' and 'and' at the beginning of sentences.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.Fluency"] = {default = true,description = "Suggests ways to sound more natural and fluent.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.InformalPronounsAcademic"] = {default = false,description = "Flags use of personal pronouns such as 'I' and 'you' in academic writing.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.MissingSpaces"] = {default = true,description = "Suggests adding missing spacing after a numeral when writing times.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.NounStrings"] = {default = true,description = "Flags a series of nouns that modify a final noun.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.NumbersBeginningSentences"] = {default = true,description = "Suggests spelling out numbers at the beginning of sentences.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.NumbersZeroThroughTen"] = {default = true,description = "Suggests spelling out numbers zero through ten.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.OxfordComma"] = {default = false,description = "Suggests adding the Oxford comma after the second-to-last item in a list of things.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PassiveVoice"] = {default = false,description = "Flags use of passive voice.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PersonFirstLanguage"] = {default = true,description = "Suggests using person-first language to refer respectfully to an individual with a disability.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PossiblyBiasedLanguageAgeRelated"] = {default = true,description = "Suggests alternatives to potentially biased language related to older adults.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PossiblyBiasedLanguageDisabilityRelated"] = {default = true,description = "Suggests alternatives to potentially ableist language.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PossiblyBiasedLanguageFamilyRelated"] = {default = true,description = "Suggests alternatives to potentially biased language related to parenting and family systems.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PossiblyBiasedLanguageGenderRelated"] = {default = true,description = "Suggests alternatives to potentially gender-biased and non-inclusive phrasing.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PossiblyBiasedLanguageHumanRights"] = {default = true,description = "Suggests alternatives to language related to human slavery.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PossiblyBiasedLanguageHumanRightsRelated"] = {default = true,description = "Suggests alternatives to terms with origins in the institution of slavery.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PossiblyBiasedLanguageLgbtqiaRelated"] = {default = true,description = "Flags LGBTQIA+-related terms that may be seen as biased, outdated, or disrespectful in some contexts.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PossiblyBiasedLanguageRaceEthnicityRelated"] = {default = true,description = "Suggests alternatives to potentially biased language related to race and ethnicity.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PossiblyPoliticallyIncorrectLanguage"] = {default = true,description = "Suggests alternatives to language that may be considered politically incorrect.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PrepositionAtTheEndOfSentence"] = {default = false,description = "Flags use of prepositions such as 'with' and 'in' at the end of sentences.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.PunctuationWithQuotation"] = {default = true,description = "Suggests placing punctuation before closing quotation marks.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.ReadabilityFillerwords"] = {default = true,description = "Flags long, complicated sentences that could potentially confuse your reader.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.ReadabilityTransforms"] = {default = true,description = "Suggests splitting long, complicated sentences that could potentially confuse your reader.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.SentenceVariety"] = {default = true,description = "Flags series of sentences that follow the same pattern.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.SpacesSurroundingSlash"] = {default = true,description = "Suggests removing extra spaces surrounding a slash.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.SplitInfinitive"] = {default = true,description = "Suggests rewriting split infinitives so that an adverb doesn't come between 'to' and the verb.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.StylisticFragments"] = {default = false,description = "Suggests completing all incomplete sentences, including stylistic sentence fragments that may be intentional.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.UnnecessaryEllipses"] = {default = false,description = "Flags unnecessary use of ellipses (...).",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.Variety"] = {default = true,description = "Suggests alternatives to words that occur frequently in the same paragraph.",scope = "language-overridable",type = "boolean"},["grammarly.config.suggestions.Vocabulary"] = {default = true,description = "Suggests alternatives to bland and overused words such as 'good' and 'nice'.",scope = "language-overridable",type = "boolean"},["grammarly.files.exclude"] = {default = {},items = {type = "string"},markdownDescription = "Configure [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) for excluding files and folders.",order = 2,required = true,scope = "window",type = "array"},["grammarly.files.include"] = {default = { "**/readme.md", "**/README.md", "**/*.txt" },items = {type = "string"},markdownDescription = "Configure [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) for including files and folders.",order = 1,required = true,scope = "window",type = "array"},["grammarly.patterns"] = {default = { "**/readme.md", "**/README.md", "**/*.txt" },description = "A glob pattern, like `*.{md,txt}` for file scheme.",items = {type = "string"},markdownDeprecationMessage = "Use [Files: Include](#grammarly.files.include#)",order = 0,required = true,scope = "window",type = "array"},["grammarly.selectors"] = {default = {},description = "Filter documents to be checked with Grammarly.",items = {properties = {language = {description = "A language id, like `typescript`.",type = "string"},pattern = {description = "A glob pattern, like `*.{md,txt}`.",type = "string"},scheme = {description = "A Uri scheme, like `file` or `untitled`.",type = "string"}},type = "object"},order = 99,required = true,scope = "window",type = "array"},["grammarly.startTextCheckInPausedState"] = {default = false,description = "Start text checking session in paused state",type = "boolean"}},title = "Grammarly"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/haxe-language-server.lua b/lua/mason/_generated/lsp-schemas/haxe-language-server.lua new file mode 100644 index 00000000..c8c4adfc --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/haxe-language-server.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["haxe.buildCompletionCache"] = {default = true,markdownDescription = "Speed up completion by building the project once on startup to initialize the cache.",type = "boolean"},["haxe.codeGeneration"] = {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "Options for code generation",properties = {functions = {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "Options for generating functions",properties = {anonymous = {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "Options for generating anonymous functions",properties = {argumentTypeHints = {default = false,markdownDescription = "Whether to include type hints for arguments",type = "boolean"},explicitNull = {default = false,markdownDescription = "Whether to wrap types in `Null` even if it can be omitted (for optional arguments with `?`)",type = "boolean"},returnTypeHint = {default = "never",enum = { "always", "never", "non-void" },markdownDescription = "In which case to include return type hints",type = "string"},useArrowSyntax = {default = true,markdownDescription = "Whether to use arrow function syntax (Haxe 4+)",type = "boolean"}},type = "object"},field = {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "Options for generating field-level functions",properties = {argumentTypeHints = {default = true,markdownDescription = "Whether to include type hints for arguments",type = "boolean"},explicitNull = {default = false,markdownDescription = "Whether to wrap types in `Null` even if it can be omitted (for optional arguments with `?`)",type = "boolean"},explicitPrivate = {default = false,markdownDescription = "Whether to include the private visibility modifier even if it can be omitted",type = "boolean"},explicitPublic = {default = false,markdownDescription = "Whether to include the public visibility modifier even if it can be omitted",type = "boolean"},placeOpenBraceOnNewLine = {default = false,markdownDescription = "Whether to place `{` in a new line",type = "boolean"},returnTypeHint = {default = "non-void",enum = { "always", "never", "non-void" },markdownDescription = "In which case to include return type hints",type = "string"}},type = "object"}},type = "object"},imports = {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "Options for generating imports",properties = {enableAutoImports = {default = true,markdownDescription = "Whether to insert an import automatically when selecting a not-yet-imported type from completion. If `false`, the fully qualified name is inserted instead.",type = "boolean"},style = {default = "type",enum = { "type", "module" },markdownDescription = "How to deal with module subtypes when generating imports.",markdownEnumDescriptions = { "Import only the specific sub-type (`import pack.Foo.Type`).", "Import the entire module the sub-type lives in (`import pack.Foo`)." },type = "string"}},type = "object"},switch = {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "Options for generating switch expressions",properties = {parentheses = {default = false,markdownDescription = "Whether to wrap the switch subject in parentheses",type = "boolean"}},type = "object"}},type = "object"},["haxe.configurations"] = {default = {},items = {markdownDescription = "Command-line arguments passed to the Haxe completion server. Can contain HXML files. Relative paths will be resolved against workspace root.",oneOf = { {items = {type = "string"},type = "array"}, {additionalProperties = false,properties = {args = {items = {type = "string"},markdownDescription = "The Haxe command-line arguments.",type = "array"},label = {markdownDescription = "The label to use for displaying this configuration in the UI.",type = "string"}},type = "object"} }},markdownDescription = "Array of switchable configurations for the Haxe completion server. Each configuration is an array of command-line arguments, see item documentation for more details.",type = "array"},["haxe.diagnosticsPathFilter"] = {default = "${workspaceRoot}",markdownDescription = 'A regex that paths of source files have to match to be included in diagnostics. Defaults to `"${workspaceRoot}"` so only files within your workspace are included. You can use `"${haxelibPath}/"` to only show results for a specific haxelib. Use `".*?"` to see all results, including haxelibs.',type = "string"},["haxe.displayConfigurations"] = {default = {},deprecationMessage = 'Use "haxe.configurations" instead',type = "array"},["haxe.displayPort"] = {default = "auto",markdownDescription = 'Integer value for the port to open on the display server, or `"auto"`. Can be used to `--connect` Haxe build commands.',oneOf = { {type = "integer"}, {enum = { "auto" },type = "string"} }},["haxe.displayServer"] = {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "Haxe completion server configuration",properties = {arguments = {default = {},items = {type = "string"},markdownDescription = 'Array of arguments passed to the Haxe completion server at start. Can be used for debugging completion server issues, for example by adding the `"-v"` argument.',type = "array"},print = {additionalProperties = false,default = {completion = false,reusing = false},markdownDescription = "Which debug output to print to the Haxe output channel. With `-v`, all flags default to `true`, and without it to `false`. Setting a flag here overrides the default. Only works with Haxe 4.0.0-preview.4 or newer.",properties = {addedDirectory = {type = "boolean"},arguments = {type = "boolean"},cachedModules = {type = "boolean"},changedDirectories = {type = "boolean"},completion = {type = "boolean"},defines = {type = "boolean"},displayPosition = {type = "boolean"},foundDirectories = {type = "boolean"},message = {type = "boolean"},modulePathChanged = {type = "boolean"},newContext = {type = "boolean"},notCached = {type = "boolean"},parsed = {type = "boolean"},removedDirectory = {type = "boolean"},reusing = {type = "boolean"},signature = {type = "boolean"},skippingDep = {type = "boolean"},socketMessage = {type = "boolean"},stats = {type = "boolean"},uncaughtError = {type = "boolean"},unchangedContent = {type = "boolean"}},type = "object"},useSocket = {default = true,markdownDescription = "If possible, use a socket for communication with Haxe rather than stdio.",type = "boolean"}},type = "object"},["haxe.enableBraceBodyWrapping"] = {default = false,markdownDescription = "Add closing brace at the end of one-line `if/for/while` body expressions",type = "boolean"},["haxe.enableCodeLens"] = {default = false,markdownDescription = "Enable code lens to show some statistics",type = "boolean"},["haxe.enableCompilationServer"] = {default = true,markdownDescription = "Use the extension's Haxe server to compile auto-generated tasks. Requires `\"haxe.displayPort\"` to be set.",type = "boolean"},["haxe.enableCompletionCacheWarning"] = {default = true,markdownDescription = "Whether a warning popup should be shown if the completion cache build has failed.",type = "boolean"},["haxe.enableDiagnostics"] = {default = true,markdownDescription = "Enable automatic diagnostics of Haxe files, run automatically on open and save.",type = "boolean"},["haxe.enableExtendedIndentation"] = {default = false,markdownDescription = "Align new line brackets with Allman style. Can have typing overhead and is incompatible with the Vim extension.",type = "boolean"},["haxe.enableMethodsView"] = {default = false,deprecationMessage = 'Use "haxe.enableServerView" instead',type = "boolean"},["haxe.enableServerView"] = {default = false,markdownDescription = 'Enable the "Haxe Server" view container for performance and cache debugging.',type = "boolean"},["haxe.enableSignatureHelpDocumentation"] = {default = true,markdownDescription = "Whether signature help should include documentation or not.",type = "boolean"},["haxe.exclude"] = {default = { "zpp_nape" },markdownDescription = "A list of dot paths (packages, modules, types) to exclude from classpath parsing, completion and workspace symbols. Can be useful to improve performance.",type = "array"},["haxe.executable"] = {default = "auto",markdownDescription = "Path to the Haxe executable or an object containing a Haxe executable configuration",oneOf = { {anyOf = { {enum = { "auto" },markdownEnumDescriptions = { "Auto-detect the Haxe executable." },type = "string"}, {type = "string"} },default = "auto",markdownDescription = "Path to the Haxe executable",type = "string"}, {additionalProperties = false,markdownDescription = "Haxe executable configuration",properties = {env = {additionalProperties = {type = "string"},default = vim.empty_dict(),markdownDescription = "Additional environment variables used for running Haxe executable",type = "object"},linux = {default = "auto",markdownDescription = "Linux-specific path to the Haxe executable or an object containing a Haxe executable configuration",oneOf = { {anyOf = { {enum = { "auto" },markdownEnumDescriptions = { "Auto-detect the Haxe executable." },type = "string"}, {type = "string"} },default = "auto",markdownDescription = "Path to the Haxe executable",type = "string"}, {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "Overrides for Linux",properties = {env = {additionalProperties = {type = "string"},default = vim.empty_dict(),markdownDescription = "Additional environment variables used for running Haxe executable",type = "object"},path = {anyOf = { {enum = { "auto" },markdownEnumDescriptions = { "Auto-detect the Haxe executable." },type = "string"}, {type = "string"} },default = "auto",markdownDescription = "Path to the Haxe executable",type = "string"}},type = "object"} }},osx = {default = "auto",markdownDescription = "Mac-specific path to the Haxe executable or an object containing a Haxe executable configuration",oneOf = { {anyOf = { {enum = { "auto" },markdownEnumDescriptions = { "Auto-detect the Haxe executable." },type = "string"}, {type = "string"} },default = "auto",markdownDescription = "Path to the Haxe executable",type = "string"}, {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "Overrides for Mac",properties = {env = {additionalProperties = {type = "string"},default = vim.empty_dict(),markdownDescription = "Additional environment variables used for running Haxe executable",type = "object"},path = {anyOf = { {enum = { "auto" },markdownEnumDescriptions = { "Auto-detect the Haxe executable." },type = "string"}, {type = "string"} },default = "auto",markdownDescription = "Path to the Haxe executable",type = "string"}},type = "object"} }},path = {anyOf = { {enum = { "auto" },markdownEnumDescriptions = { "Auto-detect the Haxe executable." },type = "string"}, {type = "string"} },default = "auto",markdownDescription = "Path to the Haxe executable",type = "string"},windows = {default = "auto",markdownDescription = "Windows-specific path to the Haxe executable or an object containing a Haxe executable configuration",oneOf = { {anyOf = { {enum = { "auto" },markdownEnumDescriptions = { "Auto-detect the Haxe executable." },type = "string"}, {type = "string"} },default = "auto",markdownDescription = "Path to the Haxe executable",type = "string"}, {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "Overrides for Windows",properties = {env = {additionalProperties = {type = "string"},default = vim.empty_dict(),markdownDescription = "Additional environment variables used for running Haxe executable",type = "object"},path = {anyOf = { {enum = { "auto" },markdownEnumDescriptions = { "Auto-detect the Haxe executable." },type = "string"}, {type = "string"} },default = "auto",markdownDescription = "Path to the Haxe executable",type = "string"}},type = "object"} }}},type = "object"} },scope = "resource"},["haxe.maxCompletionItems"] = {default = 1000,markdownDescription = "Upper limit for the number of completion items that can be shown at once.",type = "integer"},["haxe.postfixCompletion"] = {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "Options for postfix completion",properties = {level = {default = "full",enum = { "full", "filtered", "off" },markdownDescription = "Which kinds of postfix completions to include",markdownEnumDescriptions = { "Show all postfix completion items.", "Only show items that apply to specific types like `for` and `switch`.", "Disable postfix completion." },type = "string"}},type = "object"},["haxe.taskPresentation"] = {additionalProperties = false,default = {clear = false,echo = true,focus = false,panel = "shared",reveal = "always",showReuseMessage = true},markdownDescription = "Configures which presentation options to use for generated tasks by default (see `presentation` in `tasks.json`).",properties = {clear = {default = false,markdownDescription = "Controls whether the terminal is cleared before executing the task.",type = "boolean"},echo = {default = true,markdownDescription = "Controls whether the executed command is echoed to the panel. Default is `true`.",type = "boolean"},focus = {default = false,markdownDescription = "Controls whether the panel takes focus. Default is `false`. If set to `true` the panel is revealed as well.",type = "boolean"},panel = {default = "shared",enum = { "shared", "dedicated", "new" },markdownDescription = "Controls if the panel is shared between tasks, dedicated to this task or a new one is created on every run.",type = "string"},reveal = {default = "always",enum = { "always", "silent", "never" },markdownDescription = 'Controls whether the panel running the task is revealed or not. Default is `"always"`.',markdownEnumDescriptions = { "Always reveals the terminal when this task is executed.", "Only reveals the terminal if no problem matcher is associated with the task and an errors occurs executing it.", "Never reveals the terminal when this task is executed." },type = "string"},showReuseMessage = {default = true,markdownDescription = "Controls whether to show the `Terminal will be reused by tasks, press any key to close it` message.",type = "boolean"}},type = "object"},["haxe.useLegacyCompletion"] = {default = false,markdownDescription = "Whether to revert to a Haxe 3 style completion where only toplevel packages and imported types are shown (effectively making it incompatible with auto-imports). *Note:* this setting has no effect with Haxe versions earlier than 4.0.0-rc.4.",type = "boolean"},["haxelib.executable"] = {anyOf = { {enum = { "auto" },markdownEnumDescriptions = { "Auto-detect the Haxelib executable." },type = "string"}, {type = "string"} },default = "auto",markdownDescription = "Path to the Haxelib executable",scope = "resource",type = "string"}},title = "Haxe"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/html-lsp.lua b/lua/mason/_generated/lsp-schemas/html-lsp.lua new file mode 100644 index 00000000..605ccb49 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/html-lsp.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {id = "html",order = 20,properties = {["html.autoClosingTags"] = {default = true,description = "%html.autoClosingTags%",scope = "resource",type = "boolean"},["html.autoCreateQuotes"] = {default = true,description = "%html.autoCreateQuotes%",scope = "resource",type = "boolean"},["html.completion.attributeDefaultValue"] = {default = "doublequotes",description = "%html.completion.attributeDefaultValue%",enum = { "doublequotes", "singlequotes", "empty" },enumDescriptions = { "%html.completion.attributeDefaultValue.doublequotes%", "%html.completion.attributeDefaultValue.singlequotes%", "%html.completion.attributeDefaultValue.empty%" },scope = "resource",type = "string"},["html.customData"] = {default = {},items = {type = "string"},markdownDescription = "%html.customData.desc%",scope = "resource",type = "array"},["html.format.contentUnformatted"] = {default = "pre,code,textarea",markdownDescription = "%html.format.contentUnformatted.desc%",scope = "resource",type = { "string", "null" }},["html.format.enable"] = {default = true,description = "%html.format.enable.desc%",scope = "window",type = "boolean"},["html.format.extraLiners"] = {default = "head, body, /html",markdownDescription = "%html.format.extraLiners.desc%",scope = "resource",type = { "string", "null" }},["html.format.indentHandlebars"] = {default = false,markdownDescription = "%html.format.indentHandlebars.desc%",scope = "resource",type = "boolean"},["html.format.indentInnerHtml"] = {default = false,markdownDescription = "%html.format.indentInnerHtml.desc%",scope = "resource",type = "boolean"},["html.format.maxPreserveNewLines"] = {default = vim.NIL,markdownDescription = "%html.format.maxPreserveNewLines.desc%",scope = "resource",type = { "number", "null" }},["html.format.preserveNewLines"] = {default = true,description = "%html.format.preserveNewLines.desc%",scope = "resource",type = "boolean"},["html.format.templating"] = {default = false,description = "%html.format.templating.desc%",scope = "resource",type = "boolean"},["html.format.unformatted"] = {default = "wbr",markdownDescription = "%html.format.unformatted.desc%",scope = "resource",type = { "string", "null" }},["html.format.unformattedContentDelimiter"] = {default = "",markdownDescription = "%html.format.unformattedContentDelimiter.desc%",scope = "resource",type = "string"},["html.format.wrapAttributes"] = {default = "auto",description = "%html.format.wrapAttributes.desc%",enum = { "auto", "force", "force-aligned", "force-expand-multiline", "aligned-multiple", "preserve", "preserve-aligned" },enumDescriptions = { "%html.format.wrapAttributes.auto%", "%html.format.wrapAttributes.force%", "%html.format.wrapAttributes.forcealign%", "%html.format.wrapAttributes.forcemultiline%", "%html.format.wrapAttributes.alignedmultiple%", "%html.format.wrapAttributes.preserve%", "%html.format.wrapAttributes.preservealigned%" },scope = "resource",type = "string"},["html.format.wrapAttributesIndentSize"] = {default = vim.NIL,markdownDescription = "%html.format.wrapAttributesIndentSize.desc%",scope = "resource",type = { "number", "null" }},["html.format.wrapLineLength"] = {default = 120,description = "%html.format.wrapLineLength.desc%",scope = "resource",type = "integer"},["html.hover.documentation"] = {default = true,description = "%html.hover.documentation%",scope = "resource",type = "boolean"},["html.hover.references"] = {default = true,description = "%html.hover.references%",scope = "resource",type = "boolean"},["html.mirrorCursorOnMatchingTag"] = {default = false,deprecationMessage = "%html.mirrorCursorOnMatchingTagDeprecationMessage%",description = "%html.mirrorCursorOnMatchingTag%",scope = "resource",type = "boolean"},["html.suggest.html5"] = {default = true,description = "%html.suggest.html5.desc%",scope = "resource",type = "boolean"},["html.trace.server"] = {default = "off",description = "%html.trace.server.desc%",enum = { "off", "messages", "verbose" },scope = "window",type = "string"},["html.validate.scripts"] = {default = true,description = "%html.validate.scripts%",scope = "resource",type = "boolean"},["html.validate.styles"] = {default = true,description = "%html.validate.styles%",scope = "resource",type = "boolean"}},title = "HTML",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/intelephense.lua b/lua/mason/_generated/lsp-schemas/intelephense.lua new file mode 100644 index 00000000..10d4a5c7 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/intelephense.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["intelephense.compatibility.correctForArrayAccessArrayAndTraversableArrayUnionTypes"] = {default = true,description = "Resolves `ArrayAccess` and `Traversable` implementations that are unioned with a typed array to generic syntax. eg `ArrayAccessOrTraversable|ElementType[]` => `ArrayAccessOrTraversable`.",scope = "window",type = "boolean"},["intelephense.compatibility.correctForBaseClassStaticUnionTypes"] = {default = true,description = "Resolves `BaseClass|static` union types to `static` instead of `BaseClass`.",scope = "window",type = "boolean"},["intelephense.completion.fullyQualifyGlobalConstantsAndFunctions"] = {default = false,description = "Global namespace constants and functions will be fully qualified (prefixed with a backslash).",scope = "window",type = "boolean"},["intelephense.completion.insertUseDeclaration"] = {default = true,description = "Use declarations will be automatically inserted for namespaced classes, traits, interfaces, functions, and constants.",scope = "window",type = "boolean"},["intelephense.completion.maxItems"] = {default = 100,description = "The maximum number of completion items returned per request.",scope = "window",type = "number"},["intelephense.completion.triggerParameterHints"] = {default = true,description = "Method and function completions will include parentheses and trigger parameter hints.",scope = "window",type = "boolean"},["intelephense.diagnostics.argumentCount"] = {default = true,description = "Enables argument count diagnostics.",scope = "window",type = "boolean"},["intelephense.diagnostics.deprecated"] = {default = true,description = "Enables deprecated diagnostics.",scope = "window",type = "boolean"},["intelephense.diagnostics.duplicateSymbols"] = {default = true,description = "Enables duplicate symbol diagnostics.",scope = "window",type = "boolean"},["intelephense.diagnostics.embeddedLanguages"] = {default = true,description = "Enables diagnostics in embedded languages.",scope = "window",type = "boolean"},["intelephense.diagnostics.enable"] = {default = true,description = "Enables diagnostics.",scope = "window",type = "boolean"},["intelephense.diagnostics.implementationErrors"] = {default = true,description = "Enables reporting of problems associated with method and class implementations. For example, unimplemented methods or method signature incompatibilities.",scope = "window",type = "boolean"},["intelephense.diagnostics.languageConstraints"] = {default = true,description = "Enables reporting of various language constraint errors.",scope = "window",type = "boolean"},["intelephense.diagnostics.run"] = {default = "onType",description = "Controls when diagnostics are run.",enum = { "onType", "onSave" },enumDescriptions = { "Diagnostics will run as changes are made to the document.", "Diagnostics will run when the document is saved." },scope = "window",type = "string"},["intelephense.diagnostics.typeErrors"] = {default = true,description = "Enables diagnostics on type compatibility of arguments, property assignments, and return statements where types have been declared.",scope = "window",type = "boolean"},["intelephense.diagnostics.undefinedClassConstants"] = {default = true,description = "Enables undefined class constant diagnostics.",scope = "window",type = "boolean"},["intelephense.diagnostics.undefinedConstants"] = {default = true,description = "Enables undefined constant diagnostics.",scope = "window",type = "boolean"},["intelephense.diagnostics.undefinedFunctions"] = {default = true,description = "Enables undefined function diagnostics.",scope = "window",type = "boolean"},["intelephense.diagnostics.undefinedMethods"] = {default = true,description = "Enables undefined method diagnostics.",scope = "window",type = "boolean"},["intelephense.diagnostics.undefinedProperties"] = {default = true,description = "Enables undefined static property diagnostics.",scope = "window",type = "boolean"},["intelephense.diagnostics.undefinedSymbols"] = {default = true,description = "DEPRECATED. Use the setting for each symbol category.",scope = "window",type = "boolean"},["intelephense.diagnostics.undefinedTypes"] = {default = true,description = "Enables undefined class, interface and trait diagnostics.",scope = "window",type = "boolean"},["intelephense.diagnostics.undefinedVariables"] = {default = true,description = "Enables undefined variable diagnostics.",scope = "window",type = "boolean"},["intelephense.diagnostics.unexpectedTokens"] = {default = true,description = "Enables unexpected token diagnostics.",scope = "window",type = "boolean"},["intelephense.diagnostics.unusedSymbols"] = {default = true,description = "Enables unused variable, private member, and import diagnostics.",scope = "window",type = "boolean"},["intelephense.environment.documentRoot"] = {description = "The directory of the entry point to the application (directory of index.php). Can be absolute or relative to the workspace folder. Used for resolving script inclusion and path suggestions.",scope = "resource",type = "string"},["intelephense.environment.includePaths"] = {description = "The include paths (as individual path items) as defined in the include_path ini setting or paths to external libraries. Can be absolute or relative to the workspace folder. Used for resolving script inclusion and/or adding external symbols to folder.",items = {type = "string"},scope = "resource",type = "array"},["intelephense.environment.phpVersion"] = {default = "8.1.0",description = "A semver compatible string that represents the target PHP version. Used for providing version appropriate suggestions and diagnostics. PHP 5.3.0 and greater supported.",scope = "window",type = "string"},["intelephense.environment.shortOpenTag"] = {default = true,description = "When enabled '` or `}`",scope = "window",type = "boolean"},["java.format.settings.profile"] = {default = vim.NIL,description = "Optional formatter profile name from the Eclipse formatter settings.",scope = "window",type = "string"},["java.format.settings.url"] = {default = vim.NIL,markdownDescription = "Specifies the url or file path to the [Eclipse formatter xml settings](https://github.com/redhat-developer/vscode-java/wiki/Formatter-settings).",scope = "window",type = "string"},["java.home"] = {default = vim.NIL,deprecationMessage = "This setting is deprecated, please use 'java.jdt.ls.java.home' instead.",description = 'Specifies the folder path to the JDK (17 or more recent) used to launch the Java Language Server.\nOn Windows, backslashes must be escaped, i.e.\n"java.home":"C:\\\\Program Files\\\\Java\\\\jdk-17.0_3"',scope = "machine-overridable",type = { "string", "null" }},["java.implementationsCodeLens.enabled"] = {default = false,description = "Enable/disable the implementations code lens.",scope = "window",type = "boolean"},["java.import.exclusions"] = {default = { "**/node_modules/**", "**/.metadata/**", "**/archetype-resources/**", "**/META-INF/maven/**" },description = "Configure glob patterns for excluding folders. Use `!` to negate patterns to allow subfolders imports. You have to include a parent directory. The order is important.",scope = "window",type = "array"},["java.import.generatesMetadataFilesAtProjectRoot"] = {default = false,markdownDescription = "Specify whether the project metadata files(.project, .classpath, .factorypath, .settings/) will be generated at the project root. Click [HERE](command:_java.metadataFilesGeneration) to learn how to change the setting to make it take effect.",scope = "window",type = "boolean"},["java.import.gradle.arguments"] = {default = vim.NIL,description = "Arguments to pass to Gradle.",scope = "machine",type = "string"},["java.import.gradle.enabled"] = {default = true,description = "Enable/disable the Gradle importer.",scope = "window",type = "boolean"},["java.import.gradle.home"] = {default = vim.NIL,description = "Use Gradle from the specified local installation directory or GRADLE_HOME if the Gradle wrapper is missing or disabled and no 'java.import.gradle.version' is specified.",scope = "window",type = "string"},["java.import.gradle.java.home"] = {default = vim.NIL,description = "The location to the JVM used to run the Gradle daemon.",scope = "machine",type = "string"},["java.import.gradle.jvmArguments"] = {default = vim.NIL,description = "JVM arguments to pass to Gradle.",scope = "machine",type = "string"},["java.import.gradle.offline.enabled"] = {default = false,description = "Enable/disable the Gradle offline mode.",scope = "window",type = "boolean"},["java.import.gradle.user.home"] = {default = vim.NIL,description = "Setting for GRADLE_USER_HOME.",scope = "window",type = "string"},["java.import.gradle.version"] = {default = vim.NIL,description = "Use Gradle from the specific version if the Gradle wrapper is missing or disabled.",scope = "window",type = "string"},["java.import.gradle.wrapper.enabled"] = {default = true,description = "Use Gradle from the 'gradle-wrapper.properties' file.",scope = "window",type = "boolean"},["java.import.maven.enabled"] = {default = true,description = "Enable/disable the Maven importer.",scope = "window",type = "boolean"},["java.imports.gradle.wrapper.checksums"] = {default = {},description = "Defines allowed/disallowed SHA-256 checksums of Gradle Wrappers",items = {additionalProperties = false,default = vim.empty_dict(),properties = {allowed = {default = true,label = "Is allowed?",type = "boolean"},sha256 = {label = "SHA-256 checksum.",type = "string"}},required = { "sha256" },type = "object",uniqueItems = true},scope = "application",type = "array"},["java.inlayHints.parameterNames.enabled"] = {default = "literals",enum = { "none", "literals", "all" },enumDescriptions = { "Disable parameter name hints", "Enable parameter name hints only for literal arguments", "Enable parameter name hints for literal and non-literal arguments" },markdownDescription = "Enable/disable inlay hints for parameter names:\n```java\n\nInteger.valueOf(/* s: */ '123', /* radix: */ 10)\n \n```\n `#java.inlayHints.parameterNames.exclusions#` can be used to disable the inlay hints for methods.",scope = "window",type = "string"},["java.inlayHints.parameterNames.exclusions"] = {default = {},items = {type = "string"},markdownDescription = "The patterns for the methods that will be disabled to show the inlay hints. Supported pattern examples:\n - `java.lang.Math.*` - All the methods from java.lang.Math.\n - `*.Arrays.asList` - Methods named as 'asList' in the types named as 'Arrays'.\n - `*.println(*)` - Methods named as 'println'.\n - `(from, to)` - Methods with two parameters named as 'from' and 'to'.\n - `(arg*)` - Methods with one parameter whose name starts with 'arg'.",scope = "window",type = "array"},["java.jdt.ls.java.home"] = {default = vim.NIL,description = "Specifies the folder path to the JDK (17 or more recent) used to launch the Java Language Server. This setting will replace the Java extension's embedded JRE to start the Java Language Server. \n\nOn Windows, backslashes must be escaped, i.e.\n\"java.jdt.ls.java.home\":\"C:\\\\Program Files\\\\Java\\\\jdk-17.0_3\"",scope = "machine-overridable",type = { "string", "null" }},["java.jdt.ls.lombokSupport.enabled"] = {default = true,description = "Whether to load lombok processors from project classpath",scope = "window",type = "boolean"},["java.jdt.ls.vmargs"] = {default = "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m",description = "Specifies extra VM arguments used to launch the Java Language Server. Eg. use `-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m ` to optimize memory usage with the parallel garbage collector",scope = "machine-overridable",type = { "string", "null" }},["java.maven.downloadSources"] = {default = false,description = "Enable/disable download of Maven source artifacts as part of importing Maven projects.",scope = "window",type = "boolean"},["java.maven.updateSnapshots"] = {default = false,description = "Force update of Snapshots/Releases.",scope = "window",type = "boolean"},["java.maxConcurrentBuilds"] = {default = 1,description = "Max simultaneous project builds",minimum = 1,scope = "window",type = "integer"},["java.progressReports.enabled"] = {default = true,description = "[Experimental] Enable/disable progress reports from background processes on the server.",scope = "window",type = "boolean"},["java.project.encoding"] = {default = "ignore",enum = { "ignore", "warning", "setDefault" },enumDescriptions = { "Ignore project encoding settings", "Show warning if a project has no explicit encoding set", "Set the default workspace encoding settings" },markdownDescription = "Project encoding settings",scope = "window"},["java.project.importHint"] = {default = true,description = "Enable/disable the server-mode switch information, when Java projects import is skipped on startup.",scope = "application",type = "boolean"},["java.project.importOnFirstTimeStartup"] = {default = "automatic",description = "Specifies whether to import the Java projects, when opening the folder in Hybrid mode for the first time.",enum = { "disabled", "interactive", "automatic" },scope = "application",type = "string"},["java.project.outputPath"] = {default = "",markdownDescription = "A relative path to the workspace where stores the compiled output. `Only` effective in the `WORKSPACE` scope. The setting will `NOT` affect Maven or Gradle project.",scope = "window",type = { "string", "null" }},["java.project.referencedLibraries"] = {additionalProperties = false,default = { "lib/**/*.jar" },description = "Configure glob patterns for referencing local libraries to a Java project.",properties = {exclude = {type = "array"},include = {type = "array"},sources = {type = "object"}},required = { "include" },scope = "window",type = { "array", "object" }},["java.project.resourceFilters"] = {default = { "node_modules", ".git" },description = "Excludes files and folders from being refreshed by the Java Language Server, which can improve the overall performance. For example, [\"node_modules\",\".git\"] will exclude all files and folders named 'node_modules' or '.git'. Defaults to [\"node_modules\",\".git\"].",scope = "window",type = "array"},["java.project.sourcePaths"] = {default = {},items = {type = "string"},markdownDescription = "Relative paths to the workspace where stores the source files. `Only` effective in the `WORKSPACE` scope. The setting will `NOT` affect Maven or Gradle project.",scope = "window",type = "array"},["java.quickfix.showAt"] = {default = "line",description = "Show quickfixes at the problem or line level.",enum = { "line", "problem" },scope = "window",type = "string"},["java.recommendations.dependency.analytics.show"] = {default = true,description = "Show the recommended Dependency Analytics extension.",scope = "window",type = "boolean"},["java.references.includeAccessors"] = {default = true,description = "Include getter, setter and builder/constructor when finding references.",scope = "window",type = "boolean"},["java.references.includeDecompiledSources"] = {default = true,description = "Include the decompiled sources when finding references.",scope = "window",type = "boolean"},["java.referencesCodeLens.enabled"] = {default = false,description = "Enable/disable the references code lens.",scope = "window",type = "boolean"},["java.saveActions.organizeImports"] = {default = false,description = "Enable/disable auto organize imports on save action",scope = "window",type = "boolean"},["java.selectionRange.enabled"] = {default = true,description = "Enable/disable Smart Selection support for Java. Disabling this option will not affect the VS Code built-in word-based and bracket-based smart selection.",scope = "window",type = "boolean"},["java.server.launchMode"] = {default = "Hybrid",description = "The launch mode for the Java extension",enum = { "Standard", "LightWeight", "Hybrid" },enumDescriptions = { "Provides full features such as intellisense, refactoring, building, Maven/Gradle support etc.", "Starts a syntax server with lower start-up cost. Only provides syntax features such as outline, navigation, javadoc, syntax errors.", "Provides full features with better responsiveness. It starts a standard language server and a secondary syntax server. The syntax server provides syntax features until the standard server is ready." },scope = "window",type = "string"},["java.settings.url"] = {default = vim.NIL,markdownDescription = "Specifies the url or file path to the workspace Java settings. See [Setting Global Preferences](https://github.com/redhat-developer/vscode-java/wiki/Settings-Global-Preferences)",scope = "window",type = "string"},["java.showBuildStatusOnStart.enabled"] = {anyOf = { {enum = { "notification", "terminal", "off" },enumDescriptions = { "Show the build status via progress notification on start", "Show the build status via terminal on start", "Do not show any build status on start" }}, "boolean" },default = "notification",description = "Automatically show build status on startup.",scope = "window"},["java.signatureHelp.description.enabled"] = {default = false,description = "Enable/disable to show the description in signature help.",scope = "window",type = "boolean"},["java.signatureHelp.enabled"] = {default = false,description = "Enable/disable the signature help.",scope = "window",type = "boolean"},["java.sources.organizeImports.starThreshold"] = {default = 99,description = "Specifies the number of imports added before a star-import declaration is used.",minimum = 1,scope = "window",type = "integer"},["java.sources.organizeImports.staticStarThreshold"] = {default = 99,description = "Specifies the number of static imports added before a star-import declaration is used.",minimum = 1,scope = "window",type = "integer"},["java.symbols.includeSourceMethodDeclarations"] = {default = false,markdownDescription = "Include method declarations from source files in symbol search.",scope = "window",type = "boolean"},["java.templates.fileHeader"] = {default = {},markdownDescription = "Specifies the file header comment for new Java file. Supports configuring multi-line comments with an array of strings, and using ${variable} to reference the [predefined variables](command:_java.templateVariables).",scope = "window",type = "array"},["java.templates.typeComment"] = {default = {},markdownDescription = "Specifies the type comment for new Java type. Supports configuring multi-line comments with an array of strings, and using ${variable} to reference the [predefined variables](command:_java.templateVariables).",scope = "window",type = "array"},["java.trace.server"] = {default = "off",description = "Traces the communication between VS Code and the Java language server.",enum = { "off", "messages", "verbose" },scope = "window",type = "string"},["java.typeHierarchy.lazyLoad"] = {default = false,description = "Enable/disable lazy loading the content in type hierarchy. Lazy loading could save a lot of loading time but every type should be expanded manually to load its content.",scope = "window",type = "boolean"}},title = "Java",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/json-lsp.lua b/lua/mason/_generated/lsp-schemas/json-lsp.lua new file mode 100644 index 00000000..1bbd6b5d --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/json-lsp.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {id = "json",order = 20,properties = {["json.colorDecorators.enable"] = {default = true,deprecationMessage = "%json.colorDecorators.enable.deprecationMessage%",description = "%json.colorDecorators.enable.desc%",scope = "window",type = "boolean"},["json.format.enable"] = {default = true,description = "%json.format.enable.desc%",scope = "window",type = "boolean"},["json.maxItemsComputed"] = {default = 5000,description = "%json.maxItemsComputed.desc%",type = "number"},["json.schemaDownload.enable"] = {default = true,description = "%json.enableSchemaDownload.desc%",tags = { "usesOnlineServices" },type = "boolean"},["json.schemas"] = {description = "%json.schemas.desc%",items = {default = {fileMatch = { "/myfile" },url = "schemaURL"},properties = {fileMatch = {description = "%json.schemas.fileMatch.desc%",items = {default = "MyFile.json",description = "%json.schemas.fileMatch.item.desc%",type = "string"},minItems = 1,type = "array"},schema = {["$ref"] = "http://json-schema.org/draft-07/schema#",description = "%json.schemas.schema.desc%"},url = {default = "/user.schema.json",description = "%json.schemas.url.desc%",type = "string"}},type = "object"},scope = "resource",type = "array"},["json.trace.server"] = {default = "off",description = "%json.tracing.desc%",enum = { "off", "messages", "verbose" },scope = "window",type = "string"},["json.validate.enable"] = {default = true,description = "%json.validate.enable.desc%",scope = "window",type = "boolean"}},title = "JSON",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/julia-lsp.lua b/lua/mason/_generated/lsp-schemas/julia-lsp.lua new file mode 100644 index 00000000..d4aad042 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/julia-lsp.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["julia.NumThreads"] = {default = vim.NIL,markdownDescription = "Number of threads to use for Julia processes. A value of `auto` works on Julia versions that allow for `--threads=auto`.",scope = "machine-overridable",type = { "integer", "string", "null" }},["julia.additionalArgs"] = {default = {},description = "Additional Julia arguments.",type = "array"},["julia.cellDelimiters"] = {default = { "^##(?!#)", "^#(\\s?)%%", "^#-" },description = "Cell delimiter regular expressions for Julia files.",type = "array"},["julia.completionmode"] = {default = "qualify",description = "Sets the mode for completions.",enum = { "exportedonly", "import", "qualify" },enumDescriptions = { "Show completions for the current namespace.", "Show completions for the current namespace and unexported variables of `using`ed modules. Selection of an unexported variable will result in the automatic insertion of an explicit `using` statement.", "Show completions for the current namespace and unexported variables of `using`ed modules. Selection of an unexported variable will complete to a qualified variable name." },scope = "window",type = "string"},["julia.debuggerDefaultCompiled"] = {default = { "Base.", "-Base.!", "-Base.all", "-Base.all!", "-Base.any", "-Base.any!", "-Base.cd", "-Base.iterate", "-Base.collect", "-Base.collect_similar", "-Base._collect", "-Base.collect_to!", "-Base.collect_to_with_first!", "-Base.filter", "-Base.filter!", "-Base.foreach", "-Base.findall", "-Base.findfirst", "-Base.findlast", "-Base.findnext", "-Base.findprev", "-Base.Generator", "-Base.map", "-Base.map!", "-Base.maximum!", "-Base.minimum!", "-Base.mktemp", "-Base.mktempdir", "-Base.open", "-Base.prod!", "-Base.redirect_stderr", "-Base.redirect_stdin", "-Base.redirect_stdout", "-Base.reenable_sigint", "-Base.setindex!", "-Base.setprecision", "-Base.setrounding", "-Base.show", "-Base.sprint", "-Base.sum", "-Base.sum!", "-Base.task_local_storage", "-Base.timedwait", "-Base.withenv", "-Base.Broadcast", "Core", "Core.Compiler.", "Core.IR", "Core.Intrinsics", "DelimitedFiles", "Distributed", "LinearAlgebra.", "Serialization", "Statistics", "-Statistics.mean", "SparseArrays", "Mmap" },description = "Functions or modules that are set to compiled mode when setting the defaults.",scope = "window",type = "array"},["julia.deleteJuliaCovFiles"] = {default = true,description = "Delete Julia .cov files when running tests with coverage, leaving only a .lcov file behind.",scope = "window",type = "boolean"},["julia.editor"] = {default = "code",markdownDescription = "Command to open files from the REPL (via setting the `JULIA_EDITOR` environment variable).",type = "string"},["julia.enableCrashReporter"] = {default = vim.NIL,description = "Enable crash reports to be sent to the julia VS Code extension developers.",scope = "window",type = { "boolean", "null" }},["julia.enableTelemetry"] = {default = vim.NIL,description = "Enable usage data and errors to be sent to the julia VS Code extension developers.",scope = "window",type = { "boolean", "null" }},["julia.environmentPath"] = {default = vim.NIL,description = "Path to a julia environment. VS Code needs to be reloaded for changes to take effect.",scope = "window",type = { "string", "null" }},["julia.executablePath"] = {default = "",description = "Points to the julia executable.",scope = "machine-overridable",type = "string"},["julia.execution.codeInREPL"] = {default = false,description = "Print executed code in REPL and append it to the REPL history.",scope = "window",type = "boolean"},["julia.execution.inlineResultsForCellEvaluation"] = {default = false,markdownDescription = "Show separate inline results for all code blocks in a cell",scope = "window",type = "boolean"},["julia.execution.resultType"] = {default = "both",description = "Specifies how to show inline execution results",enum = { "REPL", "inline", "inline, errors in REPL", "both" },enumDescriptions = { "Shows inline execution results in REPL", "Shows inline execution results as inline bubbles", "Shows inline execution results in REPL and inline bubbles" },type = "string"},["julia.execution.saveOnEval"] = {default = false,markdownDescription = "Save file before execution",scope = "window",type = "boolean"},["julia.focusPlotNavigator"] = {default = false,description = "Whether to automatically show the plot navigator when plotting.",type = "boolean"},["julia.lint.call"] = {default = true,description = "This compares call signatures against all known methods for the called function. Calls with too many or too few arguments, or unknown keyword parameters are highlighted.",type = "boolean"},["julia.lint.constif"] = {default = true,description = "Check for constant conditionals in if statements that result in branches never being reached..",type = "boolean"},["julia.lint.datadecl"] = {default = true,description = "Check variables used in type declarations are datatypes.",type = "boolean"},["julia.lint.disabledDirs"] = {default = { "docs", "test" },markdownDescription = "Specifies sub-directories in [a package directory](https://docs.julialang.org/en/v1/manual/code-loading/#Package-directories-1) where only basic linting is. This drastically lowers the chance for false positives.",type = "array"},["julia.lint.iter"] = {default = true,description = "Check iterator syntax of loops. Will identify, for example, attempts to iterate over single values.",type = "boolean"},["julia.lint.lazy"] = {default = true,description = "Check for deterministic lazy boolean operators.",type = "boolean"},["julia.lint.missingrefs"] = {default = "none",description = "Highlight unknown symbols. The `symbols` option will not mark unknown fields.",enum = { "none", "symbols", "all" },type = "string"},["julia.lint.modname"] = {default = true,description = "Check submodule names do not shadow their parent's name.",type = "boolean"},["julia.lint.nothingcomp"] = {default = true,description = "Check for use of `==` rather than `===` when comparing against `nothing`. ",type = "boolean"},["julia.lint.pirates"] = {default = true,description = "Check for type piracy - the overloading of external functions with methods specified for external datatypes. 'External' here refers to imported code.",type = "boolean"},["julia.lint.run"] = {default = true,description = "Run the linter on active files.",type = "boolean"},["julia.lint.typeparam"] = {default = true,description = "Check parameters declared in `where` statements or datatype declarations are used.",type = "boolean"},["julia.lint.useoffuncargs"] = {default = true,description = "Check that all declared arguments are used within the function body.",type = "boolean"},["julia.liveTestFile"] = {default = "test/runtests.jl",description = "A workspace relative path to a Julia file that contains the tests that should be run for live testing.",scope = "window",type = "string"},["julia.packageServer"] = {default = "",markdownDescription = "Julia package server. Set's the `JULIA_PKG_SERVER` environment variable *before* starting a Julia process. Leave this empty to use the systemwide default. Requires a restart of the Julia process.",scope = "machine-overridable",type = "string"},["julia.persistentSession.alwaysCopy"] = {default = false,description = "Always copy the command for connecting to an external REPL to the clipboard.",scope = "machine-overridable",type = "boolean"},["julia.persistentSession.enabled"] = {default = false,markdownDescription = "Experimental: Starts the interactive Julia session in a persistent `tmux` session. Note that `tmux` must be available in the shell defined below. If present the string `$[workspace]` will be replaced with the current file's workspace when the REPL is first opened.",scope = "machine-overridable",type = "boolean"},["julia.persistentSession.shell"] = {default = "/bin/sh",description = "Shell used to start the persistent session.",scope = "machine-overridable",type = "string"},["julia.persistentSession.shellExecutionArgument"] = {default = "-c",markdownDescription = "Argument to execute code in the configured shell, e.g. `-c` for sh-likes or `/c` for `cmd`.",scope = "machine-overridable",type = "string"},["julia.persistentSession.tmuxSessionName"] = {default = "julia_vscode",markdownDescription = "Name of the `tmux` session.",scope = "machine-overridable",type = "string"},["julia.persistentSession.warnOnKill"] = {default = true,description = "Warn when stopping a persistent session.",scope = "machine-overridable",type = "boolean"},["julia.plots.path"] = {description = "The output directory to save plots to",scope = "window",type = "string"},["julia.runtimeCompletions"] = {default = false,description = "Request runtime completions from the integrated REPL.",scope = "application",type = "boolean"},["julia.showRuntimeDiagnostics"] = {default = true,markdownDescription = "Enable display of runtime diagnostics. These diagnostics are provided by packages that overload a `show` method for the `application/vnd.julia-vscode.diagnostics` MIME type.",type = "boolean"},["julia.symbolCacheDownload"] = {default = vim.NIL,description = "Download symbol server cache files from GitHub.",scope = "application",type = { "boolean", "null" }},["julia.symbolserverUpstream"] = {default = "https://www.julia-vscode.org/symbolcache",description = "Symbol server cache download URL.",scope = "application",type = "string"},["julia.trace.server"] = {default = "off",description = "Traces the communication between VS Code and the language server.",enum = { "off", "messages", "verbose" },scope = "window",type = "string"},["julia.useCustomSysimage"] = {default = false,description = "Use an existing custom sysimage when starting the REPL",scope = "application",type = "boolean"},["julia.usePlotPane"] = {default = true,description = "Display plots within VS Code. Might require a restart of the Julia process.",type = "boolean"},["julia.useProgressFrontend"] = {default = true,markdownDescription = "Display [progress bars](https://github.com/JunoLab/ProgressLogging.jl) within VS Code.",type = "boolean"},["julia.useRevise"] = {default = true,description = "Load Revise.jl on startup of the REPL.",type = "boolean"}},title = "Julia",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/kotlin-language-server.lua b/lua/mason/_generated/lsp-schemas/kotlin-language-server.lua new file mode 100644 index 00000000..85903a0c --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/kotlin-language-server.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["kotlin.compiler.jvm.target"] = {default = "default",description = 'Specifies the JVM target, e.g. "1.6" or "1.8"',type = "string"},["kotlin.completion.snippets.enabled"] = {default = true,description = "Specifies whether code completion should provide snippets (true) or plain-text items (false).",type = "boolean"},["kotlin.debounceTime"] = {default = 250,deprecationMessage = "Use 'kotlin.linting.debounceTime' instead",description = "[DEPRECATED] Specifies the debounce time limit. Lower to increase responsiveness at the cost of possible stability issues.",type = "integer"},["kotlin.debugAdapter.enabled"] = {default = true,description = "[Recommended] Specifies whether the debug adapter should be used. When enabled a debugger for Kotlin will be available.",type = "boolean"},["kotlin.debugAdapter.path"] = {default = "",description = "Optionally a custom path to the debug adapter executable.",type = "string"},["kotlin.externalSources.autoConvertToKotlin"] = {default = false,description = "Specifies whether decompiled/external classes should be auto-converted to Kotlin.",type = "boolean"},["kotlin.externalSources.useKlsScheme"] = {default = true,description = "[Recommended] Specifies whether URIs inside JARs should be represented using the 'kls'-scheme.",type = "boolean"},["kotlin.indexing.enabled"] = {default = true,description = "Whether global symbols in the project should be indexed automatically in the background. This enables e.g. code completion for unimported classes and functions.",type = "boolean"},["kotlin.java.home"] = {default = "",description = "A custom JAVA_HOME for the language server and debug adapter to use.",type = "string"},["kotlin.languageServer.debugAttach.autoSuspend"] = {default = false,description = "[DEBUG] If enabled (together with debugAttach.enabled), the language server will not immediately launch but instead listen on the specified attach port and wait for a debugger. This is ONLY useful if you need to debug the language server ITSELF.",type = "boolean"},["kotlin.languageServer.debugAttach.enabled"] = {default = false,description = "[DEBUG] Whether the language server should listen for debuggers, i.e. be debuggable while running in VSCode. This is ONLY useful if you need to debug the language server ITSELF.",type = "boolean"},["kotlin.languageServer.debugAttach.port"] = {default = 5005,description = "[DEBUG] If transport is stdio this enables you to attach to the running language server with a debugger. This is ONLY useful if you need to debug the language server ITSELF.",type = "integer"},["kotlin.languageServer.enabled"] = {default = true,description = "[Recommended] Specifies whether the language server should be used. When enabled the extension will provide code completions and linting, otherwise just syntax highlighting. Might require a reload to apply.",type = "boolean"},["kotlin.languageServer.path"] = {default = "",description = "Optionally a custom path to the language server executable.",type = "string"},["kotlin.languageServer.port"] = {default = 0,description = "The port to which the client will attempt to connect to. A random port is used if zero. Only used if the transport layer is TCP.",type = "integer"},["kotlin.languageServer.transport"] = {default = "stdio",description = "The transport layer beneath the language server protocol. Note that the extension will launch the server even if a TCP socket is used.",enum = { "stdio", "tcp" },type = "string"},["kotlin.linting.debounceTime"] = {default = 250,description = "[DEBUG] Specifies the debounce time limit. Lower to increase responsiveness at the cost of possible stability issues.",type = "integer"},["kotlin.snippetsEnabled"] = {default = true,deprecationMessage = "Use 'kotlin.completion.snippets.enabled'",description = "[DEPRECATED] Specifies whether code completion should provide snippets (true) or plain-text items (false).",type = "boolean"},["kotlin.trace.server"] = {default = "off",description = "Traces the communication between VSCode and the Kotlin language server.",enum = { "off", "messages", "verbose" },scope = "window",type = "string"}},title = "Kotlin"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/ltex-ls.lua b/lua/mason/_generated/lsp-schemas/ltex-ls.lua new file mode 100644 index 00000000..1e5fbdf4 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/ltex-ls.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["ltex.additionalRules.enablePickyRules"] = {default = false,markdownDescription = "%ltex.i18n.configuration.ltex.additionalRules.enablePickyRules.markdownDescription%",scope = "resource",type = "boolean"},["ltex.additionalRules.languageModel"] = {default = "",markdownDescription = "%ltex.i18n.configuration.ltex.additionalRules.languageModel.markdownDescription%",scope = "resource",type = "string"},["ltex.additionalRules.motherTongue"] = {default = "",enum = { "", "ar", "ast-ES", "be-BY", "br-FR", "ca-ES", "ca-ES-valencia", "da-DK", "de", "de-AT", "de-CH", "de-DE", "de-DE-x-simple-language", "el-GR", "en", "en-AU", "en-CA", "en-GB", "en-NZ", "en-US", "en-ZA", "eo", "es", "es-AR", "fa", "fr", "ga-IE", "gl-ES", "it", "ja-JP", "km-KH", "nl", "nl-BE", "pl-PL", "pt", "pt-AO", "pt-BR", "pt-MZ", "pt-PT", "ro-RO", "ru-RU", "sk-SK", "sl-SI", "sv", "ta-IN", "tl-PH", "uk-UA", "zh-CN" },enumDescriptions = { "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.emptyString.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ar.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ast-ES.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.be-BY.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.br-FR.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ca-ES.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ca-ES-valencia.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.da-DK.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.de.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.de-AT.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.de-CH.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.de-DE.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.de-DE-x-simple-language.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.el-GR.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en-AU.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en-CA.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en-GB.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en-NZ.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en-US.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en-ZA.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.eo.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.es.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.es-AR.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.fa.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.fr.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ga-IE.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.gl-ES.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.it.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ja-JP.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.km-KH.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.nl.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.nl-BE.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.pl-PL.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.pt.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.pt-AO.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.pt-BR.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.pt-MZ.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.pt-PT.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ro-RO.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ru-RU.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.sk-SK.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.sl-SI.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.sv.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ta-IN.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.tl-PH.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.uk-UA.enumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.zh-CN.enumDescription%" },markdownDescription = "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.markdownDescription%",markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.emptyString.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ar.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ast-ES.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.be-BY.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.br-FR.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ca-ES.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ca-ES-valencia.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.da-DK.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.de.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.de-AT.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.de-CH.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.de-DE.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.de-DE-x-simple-language.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.el-GR.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en-AU.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en-CA.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en-GB.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en-NZ.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en-US.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.en-ZA.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.eo.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.es.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.es-AR.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.fa.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.fr.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ga-IE.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.gl-ES.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.it.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ja-JP.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.km-KH.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.nl.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.nl-BE.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.pl-PL.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.pt.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.pt-AO.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.pt-BR.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.pt-MZ.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.pt-PT.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ro-RO.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ru-RU.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.sk-SK.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.sl-SI.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.sv.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.ta-IN.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.tl-PH.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.uk-UA.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.additionalRules.motherTongue.zh-CN.markdownEnumDescription%" },scope = "resource",type = "string"},["ltex.additionalRules.neuralNetworkModel"] = {default = "",markdownDescription = "%ltex.i18n.configuration.ltex.additionalRules.neuralNetworkModel.markdownDescription%",scope = "resource",type = "string"},["ltex.additionalRules.word2VecModel"] = {default = "",markdownDescription = "%ltex.i18n.configuration.ltex.additionalRules.word2VecModel.markdownDescription%",scope = "resource",type = "string"},["ltex.bibtex.fields"] = {additionalProperties = false,default = vim.empty_dict(),examples = { {maintitle = false,seealso = true} },markdownDescription = "%ltex.i18n.configuration.ltex.bibtex.fields.markdownDescription%",patternProperties = {["^.*$"] = {type = "boolean"}},scope = "resource",type = "object"},["ltex.checkFrequency"] = {default = "edit",enum = { "edit", "save", "manual" },enumDescriptions = { "%ltex.i18n.configuration.ltex.checkFrequency.edit.enumDescription%", "%ltex.i18n.configuration.ltex.checkFrequency.save.enumDescription%", "%ltex.i18n.configuration.ltex.checkFrequency.manual.enumDescription%" },markdownDescription = "%ltex.i18n.configuration.ltex.checkFrequency.markdownDescription%",markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.checkFrequency.edit.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.checkFrequency.save.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.checkFrequency.manual.markdownEnumDescription%" },scope = "window",type = "string"},["ltex.clearDiagnosticsWhenClosingFile"] = {default = true,markdownDescription = "%ltex.i18n.configuration.ltex.clearDiagnosticsWhenClosingFile.markdownDescription%",scope = "resource",type = "boolean"},["ltex.completionEnabled"] = {default = false,markdownDescription = "%ltex.i18n.configuration.ltex.completionEnabled.markdownDescription%",scope = "resource",type = "boolean"},["ltex.configurationTarget"] = {additionalProperties = false,default = {dictionary = "workspaceFolderExternalFile",disabledRules = "workspaceFolderExternalFile",hiddenFalsePositives = "workspaceFolderExternalFile"},markdownDescription = "%ltex.i18n.configuration.ltex.configurationTarget.markdownDescription%",properties = {dictionary = {enum = { "user", "workspace", "workspaceFolder", "userExternalFile", "workspaceExternalFile", "workspaceFolderExternalFile" },enumDescriptions = { "%ltex.i18n.configuration.ltex.configurationTarget.dictionary.user.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.dictionary.workspace.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.dictionary.workspaceFolder.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.dictionary.userExternalFile.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.dictionary.workspaceExternalFile.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.dictionary.workspaceFolderExternalFile.enumDescription%" },markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.configurationTarget.dictionary.user.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.dictionary.workspace.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.dictionary.workspaceFolder.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.dictionary.userExternalFile.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.dictionary.workspaceExternalFile.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.dictionary.workspaceFolderExternalFile.markdownEnumDescription%" },type = "string"},disabledRules = {enum = { "user", "workspace", "workspaceFolder", "userExternalFile", "workspaceExternalFile", "workspaceFolderExternalFile" },enumDescriptions = { "%ltex.i18n.configuration.ltex.configurationTarget.disabledRules.user.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.disabledRules.workspace.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.disabledRules.workspaceFolder.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.disabledRules.userExternalFile.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.disabledRules.workspaceExternalFile.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.disabledRules.workspaceFolderExternalFile.enumDescription%" },markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.configurationTarget.disabledRules.user.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.disabledRules.workspace.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.disabledRules.workspaceFolder.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.disabledRules.userExternalFile.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.disabledRules.workspaceExternalFile.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.disabledRules.workspaceFolderExternalFile.markdownEnumDescription%" },type = "string"},hiddenFalsePositives = {enum = { "user", "workspace", "workspaceFolder", "userExternalFile", "workspaceExternalFile", "workspaceFolderExternalFile" },enumDescriptions = { "%ltex.i18n.configuration.ltex.configurationTarget.hiddenFalsePositives.user.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.hiddenFalsePositives.workspace.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.hiddenFalsePositives.workspaceFolder.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.hiddenFalsePositives.userExternalFile.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.hiddenFalsePositives.workspaceExternalFile.enumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.hiddenFalsePositives.workspaceFolderExternalFile.enumDescription%" },markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.configurationTarget.hiddenFalsePositives.user.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.hiddenFalsePositives.workspace.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.hiddenFalsePositives.workspaceFolder.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.hiddenFalsePositives.userExternalFile.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.hiddenFalsePositives.workspaceExternalFile.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.configurationTarget.hiddenFalsePositives.workspaceFolderExternalFile.markdownEnumDescription%" },type = "string"}},propertyNames = {enum = { "dictionary", "disabledRules", "hiddenFalsePositives" },type = "string"},scope = "resource",type = "object"},["ltex.diagnosticSeverity"] = {default = "information",examples = { "information", {PASSIVE_VOICE = "hint",default = "information"} },markdownDescription = "%ltex.i18n.configuration.ltex.diagnosticSeverity.markdownDescription%",oneOf = { {enum = { "error", "warning", "information", "hint" },enumDescriptions = { "%ltex.i18n.configuration.ltex.diagnosticSeverity.error.enumDescription%", "%ltex.i18n.configuration.ltex.diagnosticSeverity.warning.enumDescription%", "%ltex.i18n.configuration.ltex.diagnosticSeverity.information.enumDescription%", "%ltex.i18n.configuration.ltex.diagnosticSeverity.hint.enumDescription%" },markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.diagnosticSeverity.error.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.diagnosticSeverity.warning.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.diagnosticSeverity.information.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.diagnosticSeverity.hint.markdownEnumDescription%" },type = "string"}, {additionalProperties = false,patternProperties = {["^.*$"] = {enum = { "error", "warning", "information", "hint" },enumDescriptions = { "%ltex.i18n.configuration.ltex.diagnosticSeverity.error.enumDescription%", "%ltex.i18n.configuration.ltex.diagnosticSeverity.warning.enumDescription%", "%ltex.i18n.configuration.ltex.diagnosticSeverity.information.enumDescription%", "%ltex.i18n.configuration.ltex.diagnosticSeverity.hint.enumDescription%" },markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.diagnosticSeverity.error.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.diagnosticSeverity.warning.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.diagnosticSeverity.information.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.diagnosticSeverity.hint.markdownEnumDescription%" },type = "string"}},required = { "default" },type = "object"} },scope = "resource"},["ltex.dictionary"] = {additionalProperties = false,default = vim.empty_dict(),examples = { {["de-DE"] = { "B-Splines", ":/path/to/externalFile.txt" },["en-US"] = { "adaptivity", "precomputed", "subproblem" }} },markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.markdownDescription%",properties = {ar = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.ar.markdownDescription%",type = "array"},["ast-ES"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.ast-ES.markdownDescription%",type = "array"},["be-BY"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.be-BY.markdownDescription%",type = "array"},["br-FR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.br-FR.markdownDescription%",type = "array"},["ca-ES"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.ca-ES.markdownDescription%",type = "array"},["ca-ES-valencia"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.ca-ES-valencia.markdownDescription%",type = "array"},["da-DK"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.da-DK.markdownDescription%",type = "array"},de = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.de.markdownDescription%",type = "array"},["de-AT"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.de-AT.markdownDescription%",type = "array"},["de-CH"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.de-CH.markdownDescription%",type = "array"},["de-DE"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.de-DE.markdownDescription%",type = "array"},["de-DE-x-simple-language"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.de-DE-x-simple-language.markdownDescription%",type = "array"},["el-GR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.el-GR.markdownDescription%",type = "array"},en = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.en.markdownDescription%",type = "array"},["en-AU"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.en-AU.markdownDescription%",type = "array"},["en-CA"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.en-CA.markdownDescription%",type = "array"},["en-GB"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.en-GB.markdownDescription%",type = "array"},["en-NZ"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.en-NZ.markdownDescription%",type = "array"},["en-US"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.en-US.markdownDescription%",type = "array"},["en-ZA"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.en-ZA.markdownDescription%",type = "array"},eo = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.eo.markdownDescription%",type = "array"},es = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.es.markdownDescription%",type = "array"},["es-AR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.es-AR.markdownDescription%",type = "array"},fa = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.fa.markdownDescription%",type = "array"},fr = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.fr.markdownDescription%",type = "array"},["ga-IE"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.ga-IE.markdownDescription%",type = "array"},["gl-ES"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.gl-ES.markdownDescription%",type = "array"},it = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.it.markdownDescription%",type = "array"},["ja-JP"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.ja-JP.markdownDescription%",type = "array"},["km-KH"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.km-KH.markdownDescription%",type = "array"},nl = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.nl.markdownDescription%",type = "array"},["nl-BE"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.nl-BE.markdownDescription%",type = "array"},["pl-PL"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.pl-PL.markdownDescription%",type = "array"},pt = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.pt.markdownDescription%",type = "array"},["pt-AO"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.pt-AO.markdownDescription%",type = "array"},["pt-BR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.pt-BR.markdownDescription%",type = "array"},["pt-MZ"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.pt-MZ.markdownDescription%",type = "array"},["pt-PT"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.pt-PT.markdownDescription%",type = "array"},["ro-RO"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.ro-RO.markdownDescription%",type = "array"},["ru-RU"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.ru-RU.markdownDescription%",type = "array"},["sk-SK"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.sk-SK.markdownDescription%",type = "array"},["sl-SI"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.sl-SI.markdownDescription%",type = "array"},sv = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.sv.markdownDescription%",type = "array"},["ta-IN"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.ta-IN.markdownDescription%",type = "array"},["tl-PH"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.tl-PH.markdownDescription%",type = "array"},["uk-UA"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.uk-UA.markdownDescription%",type = "array"},["zh-CN"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.dictionary.zh-CN.markdownDescription%",type = "array"}},propertyNames = {enum = { "ar", "ast-ES", "be-BY", "br-FR", "ca-ES", "ca-ES-valencia", "da-DK", "de", "de-AT", "de-CH", "de-DE", "de-DE-x-simple-language", "el-GR", "en", "en-AU", "en-CA", "en-GB", "en-NZ", "en-US", "en-ZA", "eo", "es", "es-AR", "fa", "fr", "ga-IE", "gl-ES", "it", "ja-JP", "km-KH", "nl", "nl-BE", "pl-PL", "pt", "pt-AO", "pt-BR", "pt-MZ", "pt-PT", "ro-RO", "ru-RU", "sk-SK", "sl-SI", "sv", "ta-IN", "tl-PH", "uk-UA", "zh-CN" },type = "string"},scope = "resource",type = "object"},["ltex.disabledRules"] = {additionalProperties = false,default = vim.empty_dict(),examples = { {["en-US"] = { "EN_QUOTES", "UPPERCASE_SENTENCE_START", ":/path/to/externalFile.txt" }} },markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.markdownDescription%",properties = {ar = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.ar.markdownDescription%",type = "array"},["ast-ES"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.ast-ES.markdownDescription%",type = "array"},["be-BY"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.be-BY.markdownDescription%",type = "array"},["br-FR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.br-FR.markdownDescription%",type = "array"},["ca-ES"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.ca-ES.markdownDescription%",type = "array"},["ca-ES-valencia"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.ca-ES-valencia.markdownDescription%",type = "array"},["da-DK"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.da-DK.markdownDescription%",type = "array"},de = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.de.markdownDescription%",type = "array"},["de-AT"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.de-AT.markdownDescription%",type = "array"},["de-CH"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.de-CH.markdownDescription%",type = "array"},["de-DE"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.de-DE.markdownDescription%",type = "array"},["de-DE-x-simple-language"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.de-DE-x-simple-language.markdownDescription%",type = "array"},["el-GR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.el-GR.markdownDescription%",type = "array"},en = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.en.markdownDescription%",type = "array"},["en-AU"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.en-AU.markdownDescription%",type = "array"},["en-CA"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.en-CA.markdownDescription%",type = "array"},["en-GB"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.en-GB.markdownDescription%",type = "array"},["en-NZ"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.en-NZ.markdownDescription%",type = "array"},["en-US"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.en-US.markdownDescription%",type = "array"},["en-ZA"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.en-ZA.markdownDescription%",type = "array"},eo = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.eo.markdownDescription%",type = "array"},es = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.es.markdownDescription%",type = "array"},["es-AR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.es-AR.markdownDescription%",type = "array"},fa = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.fa.markdownDescription%",type = "array"},fr = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.fr.markdownDescription%",type = "array"},["ga-IE"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.ga-IE.markdownDescription%",type = "array"},["gl-ES"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.gl-ES.markdownDescription%",type = "array"},it = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.it.markdownDescription%",type = "array"},["ja-JP"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.ja-JP.markdownDescription%",type = "array"},["km-KH"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.km-KH.markdownDescription%",type = "array"},nl = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.nl.markdownDescription%",type = "array"},["nl-BE"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.nl-BE.markdownDescription%",type = "array"},["pl-PL"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.pl-PL.markdownDescription%",type = "array"},pt = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.pt.markdownDescription%",type = "array"},["pt-AO"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.pt-AO.markdownDescription%",type = "array"},["pt-BR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.pt-BR.markdownDescription%",type = "array"},["pt-MZ"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.pt-MZ.markdownDescription%",type = "array"},["pt-PT"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.pt-PT.markdownDescription%",type = "array"},["ro-RO"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.ro-RO.markdownDescription%",type = "array"},["ru-RU"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.ru-RU.markdownDescription%",type = "array"},["sk-SK"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.sk-SK.markdownDescription%",type = "array"},["sl-SI"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.sl-SI.markdownDescription%",type = "array"},sv = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.sv.markdownDescription%",type = "array"},["ta-IN"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.ta-IN.markdownDescription%",type = "array"},["tl-PH"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.tl-PH.markdownDescription%",type = "array"},["uk-UA"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.uk-UA.markdownDescription%",type = "array"},["zh-CN"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.disabledRules.zh-CN.markdownDescription%",type = "array"}},propertyNames = {enum = { "ar", "ast-ES", "be-BY", "br-FR", "ca-ES", "ca-ES-valencia", "da-DK", "de", "de-AT", "de-CH", "de-DE", "de-DE-x-simple-language", "el-GR", "en", "en-AU", "en-CA", "en-GB", "en-NZ", "en-US", "en-ZA", "eo", "es", "es-AR", "fa", "fr", "ga-IE", "gl-ES", "it", "ja-JP", "km-KH", "nl", "nl-BE", "pl-PL", "pt", "pt-AO", "pt-BR", "pt-MZ", "pt-PT", "ro-RO", "ru-RU", "sk-SK", "sl-SI", "sv", "ta-IN", "tl-PH", "uk-UA", "zh-CN" },type = "string"},scope = "resource",type = "object"},["ltex.enabled"] = {default = { "bibtex", "context", "context.tex", "html", "latex", "markdown", "org", "restructuredtext", "rsweave" },examples = { true, false, { "latex", "markdown" } },markdownDescription = "%ltex.i18n.configuration.ltex.enabled.markdownDescription%",oneOf = { {type = "boolean"}, {items = {type = "string"},type = "array"} },scope = "window"},["ltex.enabledRules"] = {additionalProperties = false,default = vim.empty_dict(),examples = { {["en-GB"] = { "PASSIVE_VOICE", "OXFORD_SPELLING_NOUNS", ":/path/to/externalFile.txt" }} },markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.markdownDescription%",properties = {ar = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.ar.markdownDescription%",type = "array"},["ast-ES"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.ast-ES.markdownDescription%",type = "array"},["be-BY"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.be-BY.markdownDescription%",type = "array"},["br-FR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.br-FR.markdownDescription%",type = "array"},["ca-ES"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.ca-ES.markdownDescription%",type = "array"},["ca-ES-valencia"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.ca-ES-valencia.markdownDescription%",type = "array"},["da-DK"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.da-DK.markdownDescription%",type = "array"},de = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.de.markdownDescription%",type = "array"},["de-AT"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.de-AT.markdownDescription%",type = "array"},["de-CH"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.de-CH.markdownDescription%",type = "array"},["de-DE"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.de-DE.markdownDescription%",type = "array"},["de-DE-x-simple-language"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.de-DE-x-simple-language.markdownDescription%",type = "array"},["el-GR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.el-GR.markdownDescription%",type = "array"},en = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.en.markdownDescription%",type = "array"},["en-AU"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.en-AU.markdownDescription%",type = "array"},["en-CA"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.en-CA.markdownDescription%",type = "array"},["en-GB"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.en-GB.markdownDescription%",type = "array"},["en-NZ"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.en-NZ.markdownDescription%",type = "array"},["en-US"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.en-US.markdownDescription%",type = "array"},["en-ZA"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.en-ZA.markdownDescription%",type = "array"},eo = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.eo.markdownDescription%",type = "array"},es = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.es.markdownDescription%",type = "array"},["es-AR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.es-AR.markdownDescription%",type = "array"},fa = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.fa.markdownDescription%",type = "array"},fr = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.fr.markdownDescription%",type = "array"},["ga-IE"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.ga-IE.markdownDescription%",type = "array"},["gl-ES"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.gl-ES.markdownDescription%",type = "array"},it = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.it.markdownDescription%",type = "array"},["ja-JP"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.ja-JP.markdownDescription%",type = "array"},["km-KH"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.km-KH.markdownDescription%",type = "array"},nl = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.nl.markdownDescription%",type = "array"},["nl-BE"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.nl-BE.markdownDescription%",type = "array"},["pl-PL"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.pl-PL.markdownDescription%",type = "array"},pt = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.pt.markdownDescription%",type = "array"},["pt-AO"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.pt-AO.markdownDescription%",type = "array"},["pt-BR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.pt-BR.markdownDescription%",type = "array"},["pt-MZ"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.pt-MZ.markdownDescription%",type = "array"},["pt-PT"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.pt-PT.markdownDescription%",type = "array"},["ro-RO"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.ro-RO.markdownDescription%",type = "array"},["ru-RU"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.ru-RU.markdownDescription%",type = "array"},["sk-SK"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.sk-SK.markdownDescription%",type = "array"},["sl-SI"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.sl-SI.markdownDescription%",type = "array"},sv = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.sv.markdownDescription%",type = "array"},["ta-IN"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.ta-IN.markdownDescription%",type = "array"},["tl-PH"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.tl-PH.markdownDescription%",type = "array"},["uk-UA"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.uk-UA.markdownDescription%",type = "array"},["zh-CN"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.enabledRules.zh-CN.markdownDescription%",type = "array"}},propertyNames = {enum = { "ar", "ast-ES", "be-BY", "br-FR", "ca-ES", "ca-ES-valencia", "da-DK", "de", "de-AT", "de-CH", "de-DE", "de-DE-x-simple-language", "el-GR", "en", "en-AU", "en-CA", "en-GB", "en-NZ", "en-US", "en-ZA", "eo", "es", "es-AR", "fa", "fr", "ga-IE", "gl-ES", "it", "ja-JP", "km-KH", "nl", "nl-BE", "pl-PL", "pt", "pt-AO", "pt-BR", "pt-MZ", "pt-PT", "ro-RO", "ru-RU", "sk-SK", "sl-SI", "sv", "ta-IN", "tl-PH", "uk-UA", "zh-CN" },type = "string"},scope = "application",type = "object"},["ltex.hiddenFalsePositives"] = {additionalProperties = false,default = vim.empty_dict(),examples = { {["en-US"] = { ":/path/to/externalFile.txt" }} },markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.markdownDescription%",properties = {ar = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.ar.markdownDescription%",type = "array"},["ast-ES"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.ast-ES.markdownDescription%",type = "array"},["be-BY"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.be-BY.markdownDescription%",type = "array"},["br-FR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.br-FR.markdownDescription%",type = "array"},["ca-ES"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.ca-ES.markdownDescription%",type = "array"},["ca-ES-valencia"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.ca-ES-valencia.markdownDescription%",type = "array"},["da-DK"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.da-DK.markdownDescription%",type = "array"},de = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.de.markdownDescription%",type = "array"},["de-AT"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.de-AT.markdownDescription%",type = "array"},["de-CH"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.de-CH.markdownDescription%",type = "array"},["de-DE"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.de-DE.markdownDescription%",type = "array"},["de-DE-x-simple-language"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.de-DE-x-simple-language.markdownDescription%",type = "array"},["el-GR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.el-GR.markdownDescription%",type = "array"},en = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.en.markdownDescription%",type = "array"},["en-AU"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.en-AU.markdownDescription%",type = "array"},["en-CA"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.en-CA.markdownDescription%",type = "array"},["en-GB"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.en-GB.markdownDescription%",type = "array"},["en-NZ"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.en-NZ.markdownDescription%",type = "array"},["en-US"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.en-US.markdownDescription%",type = "array"},["en-ZA"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.en-ZA.markdownDescription%",type = "array"},eo = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.eo.markdownDescription%",type = "array"},es = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.es.markdownDescription%",type = "array"},["es-AR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.es-AR.markdownDescription%",type = "array"},fa = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.fa.markdownDescription%",type = "array"},fr = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.fr.markdownDescription%",type = "array"},["ga-IE"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.ga-IE.markdownDescription%",type = "array"},["gl-ES"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.gl-ES.markdownDescription%",type = "array"},it = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.it.markdownDescription%",type = "array"},["ja-JP"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.ja-JP.markdownDescription%",type = "array"},["km-KH"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.km-KH.markdownDescription%",type = "array"},nl = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.nl.markdownDescription%",type = "array"},["nl-BE"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.nl-BE.markdownDescription%",type = "array"},["pl-PL"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.pl-PL.markdownDescription%",type = "array"},pt = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.pt.markdownDescription%",type = "array"},["pt-AO"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.pt-AO.markdownDescription%",type = "array"},["pt-BR"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.pt-BR.markdownDescription%",type = "array"},["pt-MZ"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.pt-MZ.markdownDescription%",type = "array"},["pt-PT"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.pt-PT.markdownDescription%",type = "array"},["ro-RO"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.ro-RO.markdownDescription%",type = "array"},["ru-RU"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.ru-RU.markdownDescription%",type = "array"},["sk-SK"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.sk-SK.markdownDescription%",type = "array"},["sl-SI"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.sl-SI.markdownDescription%",type = "array"},sv = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.sv.markdownDescription%",type = "array"},["ta-IN"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.ta-IN.markdownDescription%",type = "array"},["tl-PH"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.tl-PH.markdownDescription%",type = "array"},["uk-UA"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.uk-UA.markdownDescription%",type = "array"},["zh-CN"] = {items = {type = "string"},markdownDescription = "%ltex.i18n.configuration.ltex.hiddenFalsePositives.zh-CN.markdownDescription%",type = "array"}},propertyNames = {enum = { "ar", "ast-ES", "be-BY", "br-FR", "ca-ES", "ca-ES-valencia", "da-DK", "de", "de-AT", "de-CH", "de-DE", "de-DE-x-simple-language", "el-GR", "en", "en-AU", "en-CA", "en-GB", "en-NZ", "en-US", "en-ZA", "eo", "es", "es-AR", "fa", "fr", "ga-IE", "gl-ES", "it", "ja-JP", "km-KH", "nl", "nl-BE", "pl-PL", "pt", "pt-AO", "pt-BR", "pt-MZ", "pt-PT", "ro-RO", "ru-RU", "sk-SK", "sl-SI", "sv", "ta-IN", "tl-PH", "uk-UA", "zh-CN" },type = "string"},scope = "resource",type = "object"},["ltex.java.initialHeapSize"] = {default = 64,markdownDescription = "%ltex.i18n.configuration.ltex.java.initialHeapSize.markdownDescription%",scope = "window",type = "integer"},["ltex.java.maximumHeapSize"] = {default = 512,markdownDescription = "%ltex.i18n.configuration.ltex.java.maximumHeapSize.markdownDescription%",scope = "window",type = "integer"},["ltex.java.path"] = {default = "",markdownDescription = "%ltex.i18n.configuration.ltex.java.path.markdownDescription%",scope = "window",type = "string"},["ltex.language"] = {default = "en-US",enum = { "auto", "ar", "ast-ES", "be-BY", "br-FR", "ca-ES", "ca-ES-valencia", "da-DK", "de", "de-AT", "de-CH", "de-DE", "de-DE-x-simple-language", "el-GR", "en", "en-AU", "en-CA", "en-GB", "en-NZ", "en-US", "en-ZA", "eo", "es", "es-AR", "fa", "fr", "ga-IE", "gl-ES", "it", "ja-JP", "km-KH", "nl", "nl-BE", "pl-PL", "pt", "pt-AO", "pt-BR", "pt-MZ", "pt-PT", "ro-RO", "ru-RU", "sk-SK", "sl-SI", "sv", "ta-IN", "tl-PH", "uk-UA", "zh-CN" },enumDescriptions = { "%ltex.i18n.configuration.ltex.language.auto.enumDescription%", "%ltex.i18n.configuration.ltex.language.ar.enumDescription%", "%ltex.i18n.configuration.ltex.language.ast-ES.enumDescription%", "%ltex.i18n.configuration.ltex.language.be-BY.enumDescription%", "%ltex.i18n.configuration.ltex.language.br-FR.enumDescription%", "%ltex.i18n.configuration.ltex.language.ca-ES.enumDescription%", "%ltex.i18n.configuration.ltex.language.ca-ES-valencia.enumDescription%", "%ltex.i18n.configuration.ltex.language.da-DK.enumDescription%", "%ltex.i18n.configuration.ltex.language.de.enumDescription%", "%ltex.i18n.configuration.ltex.language.de-AT.enumDescription%", "%ltex.i18n.configuration.ltex.language.de-CH.enumDescription%", "%ltex.i18n.configuration.ltex.language.de-DE.enumDescription%", "%ltex.i18n.configuration.ltex.language.de-DE-x-simple-language.enumDescription%", "%ltex.i18n.configuration.ltex.language.el-GR.enumDescription%", "%ltex.i18n.configuration.ltex.language.en.enumDescription%", "%ltex.i18n.configuration.ltex.language.en-AU.enumDescription%", "%ltex.i18n.configuration.ltex.language.en-CA.enumDescription%", "%ltex.i18n.configuration.ltex.language.en-GB.enumDescription%", "%ltex.i18n.configuration.ltex.language.en-NZ.enumDescription%", "%ltex.i18n.configuration.ltex.language.en-US.enumDescription%", "%ltex.i18n.configuration.ltex.language.en-ZA.enumDescription%", "%ltex.i18n.configuration.ltex.language.eo.enumDescription%", "%ltex.i18n.configuration.ltex.language.es.enumDescription%", "%ltex.i18n.configuration.ltex.language.es-AR.enumDescription%", "%ltex.i18n.configuration.ltex.language.fa.enumDescription%", "%ltex.i18n.configuration.ltex.language.fr.enumDescription%", "%ltex.i18n.configuration.ltex.language.ga-IE.enumDescription%", "%ltex.i18n.configuration.ltex.language.gl-ES.enumDescription%", "%ltex.i18n.configuration.ltex.language.it.enumDescription%", "%ltex.i18n.configuration.ltex.language.ja-JP.enumDescription%", "%ltex.i18n.configuration.ltex.language.km-KH.enumDescription%", "%ltex.i18n.configuration.ltex.language.nl.enumDescription%", "%ltex.i18n.configuration.ltex.language.nl-BE.enumDescription%", "%ltex.i18n.configuration.ltex.language.pl-PL.enumDescription%", "%ltex.i18n.configuration.ltex.language.pt.enumDescription%", "%ltex.i18n.configuration.ltex.language.pt-AO.enumDescription%", "%ltex.i18n.configuration.ltex.language.pt-BR.enumDescription%", "%ltex.i18n.configuration.ltex.language.pt-MZ.enumDescription%", "%ltex.i18n.configuration.ltex.language.pt-PT.enumDescription%", "%ltex.i18n.configuration.ltex.language.ro-RO.enumDescription%", "%ltex.i18n.configuration.ltex.language.ru-RU.enumDescription%", "%ltex.i18n.configuration.ltex.language.sk-SK.enumDescription%", "%ltex.i18n.configuration.ltex.language.sl-SI.enumDescription%", "%ltex.i18n.configuration.ltex.language.sv.enumDescription%", "%ltex.i18n.configuration.ltex.language.ta-IN.enumDescription%", "%ltex.i18n.configuration.ltex.language.tl-PH.enumDescription%", "%ltex.i18n.configuration.ltex.language.uk-UA.enumDescription%", "%ltex.i18n.configuration.ltex.language.zh-CN.enumDescription%" },markdownDescription = "%ltex.i18n.configuration.ltex.language.markdownDescription%",markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.language.auto.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.ar.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.ast-ES.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.be-BY.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.br-FR.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.ca-ES.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.ca-ES-valencia.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.da-DK.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.de.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.de-AT.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.de-CH.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.de-DE.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.de-DE-x-simple-language.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.el-GR.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.en.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.en-AU.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.en-CA.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.en-GB.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.en-NZ.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.en-US.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.en-ZA.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.eo.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.es.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.es-AR.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.fa.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.fr.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.ga-IE.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.gl-ES.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.it.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.ja-JP.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.km-KH.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.nl.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.nl-BE.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.pl-PL.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.pt.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.pt-AO.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.pt-BR.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.pt-MZ.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.pt-PT.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.ro-RO.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.ru-RU.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.sk-SK.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.sl-SI.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.sv.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.ta-IN.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.tl-PH.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.uk-UA.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.language.zh-CN.markdownEnumDescription%" },scope = "resource",type = "string"},["ltex.languageToolHttpServerUri"] = {default = "",examples = { "http://localhost:8081/" },markdownDescription = "%ltex.i18n.configuration.ltex.languageToolHttpServerUri.markdownDescription%",scope = "window",type = "string"},["ltex.languageToolOrg.apiKey"] = {default = "",markdownDescription = "%ltex.i18n.configuration.ltex.languageToolOrg.apiKey.markdownDescription%",scope = "window",type = "string"},["ltex.languageToolOrg.username"] = {default = "",markdownDescription = "%ltex.i18n.configuration.ltex.languageToolOrg.username.markdownDescription%",scope = "window",type = "string"},["ltex.latex.commands"] = {additionalProperties = false,default = vim.empty_dict(),examples = { {["\\cite[]{}"] = "dummy",["\\cite{}"] = "dummy",["\\documentclass[]{}"] = "ignore",["\\label{}"] = "ignore"} },markdownDescription = "%ltex.i18n.configuration.ltex.latex.commands.markdownDescription%",patternProperties = {["^.*$"] = {enum = { "default", "ignore", "dummy", "pluralDummy", "vowelDummy" },enumDescriptions = { "%ltex.i18n.configuration.ltex.latex.commands.default.enumDescription%", "%ltex.i18n.configuration.ltex.latex.commands.ignore.enumDescription%", "%ltex.i18n.configuration.ltex.latex.commands.dummy.enumDescription%", "%ltex.i18n.configuration.ltex.latex.commands.pluralDummy.enumDescription%", "%ltex.i18n.configuration.ltex.latex.commands.vowelDummy.enumDescription%" },markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.latex.commands.default.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.latex.commands.ignore.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.latex.commands.dummy.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.latex.commands.pluralDummy.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.latex.commands.vowelDummy.markdownEnumDescription%" },type = "string"}},scope = "resource",type = "object"},["ltex.latex.environments"] = {additionalProperties = false,default = vim.empty_dict(),examples = { {lstlisting = "ignore",verbatim = "ignore"} },markdownDescription = "%ltex.i18n.configuration.ltex.latex.environments.markdownDescription%",patternProperties = {["^.*$"] = {enum = { "default", "ignore" },enumDescriptions = { "%ltex.i18n.configuration.ltex.latex.environments.default.enumDescription%", "%ltex.i18n.configuration.ltex.latex.environments.ignore.enumDescription%" },markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.latex.environments.default.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.latex.environments.ignore.markdownEnumDescription%" },type = "string"}},scope = "resource",type = "object"},["ltex.ltex-ls.languageToolHttpServerUri"] = {default = "",deprecationMessage = "Deprecated: This setting has been renamed to 'ltex.languageToolHttpServerUri', see https://valentjn.github.io/vscode-ltex/docs/settings.html#ltexlanguagetoolhttpserveruri.",markdownDeprecationMessage = "**Deprecated:** This setting has been renamed to [`ltex.languageToolHttpServerUri`](https://valentjn.github.io/vscode-ltex/docs/settings.html#ltexlanguagetoolhttpserveruri).",scope = "window",type = "string"},["ltex.ltex-ls.languageToolOrgApiKey"] = {default = "",deprecationMessage = "Deprecated: This setting has been renamed to 'ltex.languageToolOrg.apiKey', see https://valentjn.github.io/vscode-ltex/docs/settings.html#ltexlanguagetoolorgapikey.",markdownDeprecationMessage = "**Deprecated:** This setting has been renamed to [`ltex.languageToolOrg.apiKey`](https://valentjn.github.io/vscode-ltex/docs/settings.html#ltexlanguagetoolorgapikey).",scope = "window",type = "string"},["ltex.ltex-ls.languageToolOrgUsername"] = {default = "",deprecationMessage = "Deprecated: This setting has been renamed to 'ltex.languageToolOrg.username', see https://valentjn.github.io/vscode-ltex/docs/settings.html#ltexlanguagetoolorgusername.",markdownDeprecationMessage = "**Deprecated:** This setting has been renamed to [`ltex.languageToolOrg.username`](https://valentjn.github.io/vscode-ltex/docs/settings.html#ltexlanguagetoolorgusername).",scope = "window",type = "string"},["ltex.ltex-ls.logLevel"] = {default = "fine",enum = { "severe", "warning", "info", "config", "fine", "finer", "finest" },enumDescriptions = { "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.severe.enumDescription%", "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.warning.enumDescription%", "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.info.enumDescription%", "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.config.enumDescription%", "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.fine.enumDescription%", "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.finer.enumDescription%", "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.finest.enumDescription%" },markdownDescription = "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.markdownDescription%",markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.severe.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.warning.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.info.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.config.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.fine.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.finer.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.ltex-ls.logLevel.finest.markdownEnumDescription%" },scope = "window",type = "string"},["ltex.ltex-ls.path"] = {default = "",markdownDescription = "%ltex.i18n.configuration.ltex.ltex-ls.path.markdownDescription%",scope = "window",type = "string"},["ltex.markdown.nodes"] = {additionalProperties = false,default = vim.empty_dict(),examples = { {AutoLink = "dummy",Code = "dummy",CodeBlock = "ignore",FencedCodeBlock = "ignore"} },markdownDescription = "%ltex.i18n.configuration.ltex.markdown.nodes.markdownDescription%",patternProperties = {["^.*$"] = {enum = { "default", "ignore", "dummy", "pluralDummy", "vowelDummy" },enumDescriptions = { "%ltex.i18n.configuration.ltex.markdown.nodes.default.enumDescription%", "%ltex.i18n.configuration.ltex.markdown.nodes.ignore.enumDescription%", "%ltex.i18n.configuration.ltex.markdown.nodes.dummy.enumDescription%", "%ltex.i18n.configuration.ltex.markdown.nodes.pluralDummy.enumDescription%", "%ltex.i18n.configuration.ltex.markdown.nodes.vowelDummy.enumDescription%" },markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.markdown.nodes.default.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.markdown.nodes.ignore.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.markdown.nodes.dummy.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.markdown.nodes.pluralDummy.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.markdown.nodes.vowelDummy.markdownEnumDescription%" },type = "string"}},scope = "resource",type = "object"},["ltex.sentenceCacheSize"] = {default = 2000,markdownDescription = "%ltex.i18n.configuration.ltex.sentenceCacheSize.markdownDescription%",scope = "resource",type = "integer"},["ltex.statusBarItem"] = {default = false,markdownDescription = "%ltex.i18n.configuration.ltex.statusBarItem.markdownDescription%",scope = "window",type = "boolean"},["ltex.trace.server"] = {default = "off",enum = { "off", "messages", "verbose" },enumDescriptions = { "%ltex.i18n.configuration.ltex.trace.server.off.enumDescription%", "%ltex.i18n.configuration.ltex.trace.server.messages.enumDescription%", "%ltex.i18n.configuration.ltex.trace.server.verbose.enumDescription%" },markdownDescription = "%ltex.i18n.configuration.ltex.trace.server.markdownDescription%",markdownEnumDescriptions = { "%ltex.i18n.configuration.ltex.trace.server.off.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.trace.server.messages.markdownEnumDescription%", "%ltex.i18n.configuration.ltex.trace.server.verbose.markdownEnumDescription%" },scope = "window",type = "string"}},title = "LTeX"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/lua-language-server.lua b/lua/mason/_generated/lsp-schemas/lua-language-server.lua new file mode 100644 index 00000000..8756a800 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/lua-language-server.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["Lua.completion.autoRequire"] = {default = true,markdownDescription = "%config.completion.autoRequire%",scope = "resource",type = "boolean"},["Lua.completion.callSnippet"] = {default = "Disable",enum = { "Disable", "Both", "Replace" },markdownDescription = "%config.completion.callSnippet%",markdownEnumDescriptions = { "%config.completion.callSnippet.Disable%", "%config.completion.callSnippet.Both%", "%config.completion.callSnippet.Replace%" },scope = "resource",type = "string"},["Lua.completion.displayContext"] = {default = 0,markdownDescription = "%config.completion.displayContext%",scope = "resource",type = "integer"},["Lua.completion.enable"] = {default = true,markdownDescription = "%config.completion.enable%",scope = "resource",type = "boolean"},["Lua.completion.keywordSnippet"] = {default = "Replace",enum = { "Disable", "Both", "Replace" },markdownDescription = "%config.completion.keywordSnippet%",markdownEnumDescriptions = { "%config.completion.keywordSnippet.Disable%", "%config.completion.keywordSnippet.Both%", "%config.completion.keywordSnippet.Replace%" },scope = "resource",type = "string"},["Lua.completion.postfix"] = {default = "@",markdownDescription = "%config.completion.postfix%",scope = "resource",type = "string"},["Lua.completion.requireSeparator"] = {default = ".",markdownDescription = "%config.completion.requireSeparator%",scope = "resource",type = "string"},["Lua.completion.showParams"] = {default = true,markdownDescription = "%config.completion.showParams%",scope = "resource",type = "boolean"},["Lua.completion.showWord"] = {default = "Fallback",enum = { "Enable", "Fallback", "Disable" },markdownDescription = "%config.completion.showWord%",markdownEnumDescriptions = { "%config.completion.showWord.Enable%", "%config.completion.showWord.Fallback%", "%config.completion.showWord.Disable%" },scope = "resource",type = "string"},["Lua.completion.workspaceWord"] = {default = true,markdownDescription = "%config.completion.workspaceWord%",scope = "resource",type = "boolean"},["Lua.diagnostics.disable"] = {default = {},items = {enum = { "not-yieldable", "redundant-parameter", "break-outside", "undefined-doc-class", "unknown-symbol", "miss-method", "err-nonstandard-symbol", "unknown-attribute", "unexpect-efunc-name", "different-requires", "miss-end", "await-in-sync", "args-after-dots", "err-eq-as-assign", "newfield-call", "err-assign-as-eq", "undefined-doc-param", "param-type-mismatch", "global-in-nil-env", "missing-parameter", "miss-sep-in-table", "unknown-cast-variable", "miss-loop-min", "malformed-number", "err-do-as-then", "spell-check", "undefined-env-child", "missing-return-value", "discard-returns", "redundant-return", "miss-esc-x", "redundant-value", "duplicate-doc-alias", "doc-field-no-class", "no-visible-label", "miss-exp", "miss-loop-max", "miss-name", "empty-block", "unused-local", "err-then-as-do", "duplicate-doc-field", "redefined-label", "exp-in-action", "set-const", "circle-doc-class", "unexpect-lfunc-name", "unsupport-symbol", "unused-label", "action-after-return", "unexpect-dots", "newline-call", "jump-local-scope", "close-non-object", "miss-field", "count-down-loop", "cast-type-mismatch", "duplicate-index", "unexpect-symbol", "block-after-else", "unicode-name", "miss-exponent", "err-esc", "redundant-return-value", "unbalanced-assignments", "err-c-long-comment", "undefined-doc-name", "ambiguity-1", "trailing-space", "deprecated", "codestyle-check", "missing-return", "undefined-global", "unused-function", "code-after-break", "assign-type-mismatch", "local-limit", "cast-local-type", "need-check-nil", "keyword", "unknown-diag-code", "unused-vararg", "err-comment-prefix", "lowercase-global", "return-type-mismatch", "duplicate-set-field", "redefined-local", "no-unknown", "duplicate-doc-param", "index-in-func-name", "miss-symbol", "undefined-field", "miss-space-between" },type = "string"},markdownDescription = "%config.diagnostics.disable%",scope = "resource",type = "array"},["Lua.diagnostics.disableScheme"] = {default = { "git" },items = {type = "string"},markdownDescription = "%config.diagnostics.disableScheme%",scope = "resource",type = "array"},["Lua.diagnostics.enable"] = {default = true,markdownDescription = "%config.diagnostics.enable%",scope = "resource",type = "boolean"},["Lua.diagnostics.globals"] = {default = {},items = {type = "string"},markdownDescription = "%config.diagnostics.globals%",scope = "resource",type = "array"},["Lua.diagnostics.groupFileStatus"] = {additionalProperties = false,markdownDescription = "%config.diagnostics.groupFileStatus%",properties = {ambiguity = {default = "Fallback",description = "%config.diagnostics.ambiguity%",enum = { "Any", "Opened", "None", "Fallback" },type = "string"},await = {default = "Fallback",description = "%config.diagnostics.await%",enum = { "Any", "Opened", "None", "Fallback" },type = "string"},codestyle = {default = "Fallback",description = "%config.diagnostics.codestyle%",enum = { "Any", "Opened", "None", "Fallback" },type = "string"},duplicate = {default = "Fallback",description = "%config.diagnostics.duplicate%",enum = { "Any", "Opened", "None", "Fallback" },type = "string"},global = {default = "Fallback",description = "%config.diagnostics.global%",enum = { "Any", "Opened", "None", "Fallback" },type = "string"},luadoc = {default = "Fallback",description = "%config.diagnostics.luadoc%",enum = { "Any", "Opened", "None", "Fallback" },type = "string"},redefined = {default = "Fallback",description = "%config.diagnostics.redefined%",enum = { "Any", "Opened", "None", "Fallback" },type = "string"},strict = {default = "Fallback",description = "%config.diagnostics.strict%",enum = { "Any", "Opened", "None", "Fallback" },type = "string"},strong = {default = "Fallback",description = "%config.diagnostics.strong%",enum = { "Any", "Opened", "None", "Fallback" },type = "string"},["type-check"] = {default = "Fallback",description = "%config.diagnostics.type-check%",enum = { "Any", "Opened", "None", "Fallback" },type = "string"},unbalanced = {default = "Fallback",description = "%config.diagnostics.unbalanced%",enum = { "Any", "Opened", "None", "Fallback" },type = "string"},unused = {default = "Fallback",description = "%config.diagnostics.unused%",enum = { "Any", "Opened", "None", "Fallback" },type = "string"}},scope = "resource",title = "groupFileStatus",type = "object"},["Lua.diagnostics.groupSeverity"] = {additionalProperties = false,markdownDescription = "%config.diagnostics.groupSeverity%",properties = {ambiguity = {default = "Fallback",description = "%config.diagnostics.ambiguity%",enum = { "Error", "Warning", "Information", "Hint", "Fallback" },type = "string"},await = {default = "Fallback",description = "%config.diagnostics.await%",enum = { "Error", "Warning", "Information", "Hint", "Fallback" },type = "string"},codestyle = {default = "Fallback",description = "%config.diagnostics.codestyle%",enum = { "Error", "Warning", "Information", "Hint", "Fallback" },type = "string"},duplicate = {default = "Fallback",description = "%config.diagnostics.duplicate%",enum = { "Error", "Warning", "Information", "Hint", "Fallback" },type = "string"},global = {default = "Fallback",description = "%config.diagnostics.global%",enum = { "Error", "Warning", "Information", "Hint", "Fallback" },type = "string"},luadoc = {default = "Fallback",description = "%config.diagnostics.luadoc%",enum = { "Error", "Warning", "Information", "Hint", "Fallback" },type = "string"},redefined = {default = "Fallback",description = "%config.diagnostics.redefined%",enum = { "Error", "Warning", "Information", "Hint", "Fallback" },type = "string"},strict = {default = "Fallback",description = "%config.diagnostics.strict%",enum = { "Error", "Warning", "Information", "Hint", "Fallback" },type = "string"},strong = {default = "Fallback",description = "%config.diagnostics.strong%",enum = { "Error", "Warning", "Information", "Hint", "Fallback" },type = "string"},["type-check"] = {default = "Fallback",description = "%config.diagnostics.type-check%",enum = { "Error", "Warning", "Information", "Hint", "Fallback" },type = "string"},unbalanced = {default = "Fallback",description = "%config.diagnostics.unbalanced%",enum = { "Error", "Warning", "Information", "Hint", "Fallback" },type = "string"},unused = {default = "Fallback",description = "%config.diagnostics.unused%",enum = { "Error", "Warning", "Information", "Hint", "Fallback" },type = "string"}},scope = "resource",title = "groupSeverity",type = "object"},["Lua.diagnostics.ignoredFiles"] = {default = "Opened",enum = { "Enable", "Opened", "Disable" },markdownDescription = "%config.diagnostics.ignoredFiles%",markdownEnumDescriptions = { "%config.diagnostics.ignoredFiles.Enable%", "%config.diagnostics.ignoredFiles.Opened%", "%config.diagnostics.ignoredFiles.Disable%" },scope = "resource",type = "string"},["Lua.diagnostics.libraryFiles"] = {default = "Opened",enum = { "Enable", "Opened", "Disable" },markdownDescription = "%config.diagnostics.libraryFiles%",markdownEnumDescriptions = { "%config.diagnostics.libraryFiles.Enable%", "%config.diagnostics.libraryFiles.Opened%", "%config.diagnostics.libraryFiles.Disable%" },scope = "resource",type = "string"},["Lua.diagnostics.neededFileStatus"] = {additionalProperties = false,markdownDescription = "%config.diagnostics.neededFileStatus%",properties = {["ambiguity-1"] = {default = "Any",description = "%config.diagnostics.ambiguity-1%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["assign-type-mismatch"] = {default = "Opened",description = "%config.diagnostics.assign-type-mismatch%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["await-in-sync"] = {default = "None",description = "%config.diagnostics.await-in-sync%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["cast-local-type"] = {default = "Opened",description = "%config.diagnostics.cast-local-type%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["cast-type-mismatch"] = {default = "Any",description = "%config.diagnostics.cast-type-mismatch%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["circle-doc-class"] = {default = "Any",description = "%config.diagnostics.circle-doc-class%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["close-non-object"] = {default = "Any",description = "%config.diagnostics.close-non-object%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["code-after-break"] = {default = "Opened",description = "%config.diagnostics.code-after-break%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["codestyle-check"] = {default = "None",description = "%config.diagnostics.codestyle-check%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["count-down-loop"] = {default = "Any",description = "%config.diagnostics.count-down-loop%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},deprecated = {default = "Any",description = "%config.diagnostics.deprecated%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["different-requires"] = {default = "Any",description = "%config.diagnostics.different-requires%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["discard-returns"] = {default = "Any",description = "%config.diagnostics.discard-returns%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["doc-field-no-class"] = {default = "Any",description = "%config.diagnostics.doc-field-no-class%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["duplicate-doc-alias"] = {default = "Any",description = "%config.diagnostics.duplicate-doc-alias%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["duplicate-doc-field"] = {default = "Any",description = "%config.diagnostics.duplicate-doc-field%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["duplicate-doc-param"] = {default = "Any",description = "%config.diagnostics.duplicate-doc-param%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["duplicate-index"] = {default = "Any",description = "%config.diagnostics.duplicate-index%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["duplicate-set-field"] = {default = "Any",description = "%config.diagnostics.duplicate-set-field%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["empty-block"] = {default = "Opened",description = "%config.diagnostics.empty-block%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["global-in-nil-env"] = {default = "Any",description = "%config.diagnostics.global-in-nil-env%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["lowercase-global"] = {default = "Any",description = "%config.diagnostics.lowercase-global%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["missing-parameter"] = {default = "Any",description = "%config.diagnostics.missing-parameter%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["missing-return"] = {default = "Any",description = "%config.diagnostics.missing-return%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["missing-return-value"] = {default = "Any",description = "%config.diagnostics.missing-return-value%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["need-check-nil"] = {default = "Opened",description = "%config.diagnostics.need-check-nil%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["newfield-call"] = {default = "Any",description = "%config.diagnostics.newfield-call%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["newline-call"] = {default = "Any",description = "%config.diagnostics.newline-call%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["no-unknown"] = {default = "None",description = "%config.diagnostics.no-unknown%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["not-yieldable"] = {default = "None",description = "%config.diagnostics.not-yieldable%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["param-type-mismatch"] = {default = "Opened",description = "%config.diagnostics.param-type-mismatch%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["redefined-local"] = {default = "Opened",description = "%config.diagnostics.redefined-local%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["redundant-parameter"] = {default = "Any",description = "%config.diagnostics.redundant-parameter%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["redundant-return"] = {default = "Opened",description = "%config.diagnostics.redundant-return%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["redundant-return-value"] = {default = "Any",description = "%config.diagnostics.redundant-return-value%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["redundant-value"] = {default = "Any",description = "%config.diagnostics.redundant-value%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["return-type-mismatch"] = {default = "Opened",description = "%config.diagnostics.return-type-mismatch%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["spell-check"] = {default = "None",description = "%config.diagnostics.spell-check%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["trailing-space"] = {default = "Opened",description = "%config.diagnostics.trailing-space%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["unbalanced-assignments"] = {default = "Any",description = "%config.diagnostics.unbalanced-assignments%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["undefined-doc-class"] = {default = "Any",description = "%config.diagnostics.undefined-doc-class%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["undefined-doc-name"] = {default = "Any",description = "%config.diagnostics.undefined-doc-name%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["undefined-doc-param"] = {default = "Any",description = "%config.diagnostics.undefined-doc-param%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["undefined-env-child"] = {default = "Any",description = "%config.diagnostics.undefined-env-child%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["undefined-field"] = {default = "Opened",description = "%config.diagnostics.undefined-field%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["undefined-global"] = {default = "Any",description = "%config.diagnostics.undefined-global%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["unknown-cast-variable"] = {default = "Any",description = "%config.diagnostics.unknown-cast-variable%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["unknown-diag-code"] = {default = "Any",description = "%config.diagnostics.unknown-diag-code%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["unused-function"] = {default = "Opened",description = "%config.diagnostics.unused-function%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["unused-label"] = {default = "Opened",description = "%config.diagnostics.unused-label%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["unused-local"] = {default = "Opened",description = "%config.diagnostics.unused-local%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"},["unused-vararg"] = {default = "Opened",description = "%config.diagnostics.unused-vararg%",enum = { "Any", "Opened", "None", "Any!", "Opened!", "None!" },type = "string"}},scope = "resource",title = "neededFileStatus",type = "object"},["Lua.diagnostics.severity"] = {additionalProperties = false,markdownDescription = "%config.diagnostics.severity%",properties = {["ambiguity-1"] = {default = "Warning",description = "%config.diagnostics.ambiguity-1%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["assign-type-mismatch"] = {default = "Warning",description = "%config.diagnostics.assign-type-mismatch%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["await-in-sync"] = {default = "Warning",description = "%config.diagnostics.await-in-sync%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["cast-local-type"] = {default = "Warning",description = "%config.diagnostics.cast-local-type%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["cast-type-mismatch"] = {default = "Warning",description = "%config.diagnostics.cast-type-mismatch%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["circle-doc-class"] = {default = "Warning",description = "%config.diagnostics.circle-doc-class%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["close-non-object"] = {default = "Warning",description = "%config.diagnostics.close-non-object%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["code-after-break"] = {default = "Hint",description = "%config.diagnostics.code-after-break%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["codestyle-check"] = {default = "Warning",description = "%config.diagnostics.codestyle-check%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["count-down-loop"] = {default = "Warning",description = "%config.diagnostics.count-down-loop%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},deprecated = {default = "Warning",description = "%config.diagnostics.deprecated%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["different-requires"] = {default = "Warning",description = "%config.diagnostics.different-requires%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["discard-returns"] = {default = "Warning",description = "%config.diagnostics.discard-returns%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["doc-field-no-class"] = {default = "Warning",description = "%config.diagnostics.doc-field-no-class%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["duplicate-doc-alias"] = {default = "Warning",description = "%config.diagnostics.duplicate-doc-alias%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["duplicate-doc-field"] = {default = "Warning",description = "%config.diagnostics.duplicate-doc-field%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["duplicate-doc-param"] = {default = "Warning",description = "%config.diagnostics.duplicate-doc-param%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["duplicate-index"] = {default = "Warning",description = "%config.diagnostics.duplicate-index%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["duplicate-set-field"] = {default = "Warning",description = "%config.diagnostics.duplicate-set-field%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["empty-block"] = {default = "Hint",description = "%config.diagnostics.empty-block%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["global-in-nil-env"] = {default = "Warning",description = "%config.diagnostics.global-in-nil-env%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["lowercase-global"] = {default = "Information",description = "%config.diagnostics.lowercase-global%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["missing-parameter"] = {default = "Warning",description = "%config.diagnostics.missing-parameter%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["missing-return"] = {default = "Warning",description = "%config.diagnostics.missing-return%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["missing-return-value"] = {default = "Warning",description = "%config.diagnostics.missing-return-value%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["need-check-nil"] = {default = "Warning",description = "%config.diagnostics.need-check-nil%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["newfield-call"] = {default = "Warning",description = "%config.diagnostics.newfield-call%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["newline-call"] = {default = "Warning",description = "%config.diagnostics.newline-call%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["no-unknown"] = {default = "Warning",description = "%config.diagnostics.no-unknown%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["not-yieldable"] = {default = "Warning",description = "%config.diagnostics.not-yieldable%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["param-type-mismatch"] = {default = "Warning",description = "%config.diagnostics.param-type-mismatch%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["redefined-local"] = {default = "Hint",description = "%config.diagnostics.redefined-local%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["redundant-parameter"] = {default = "Warning",description = "%config.diagnostics.redundant-parameter%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["redundant-return"] = {default = "Hint",description = "%config.diagnostics.redundant-return%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["redundant-return-value"] = {default = "Warning",description = "%config.diagnostics.redundant-return-value%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["redundant-value"] = {default = "Warning",description = "%config.diagnostics.redundant-value%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["return-type-mismatch"] = {default = "Warning",description = "%config.diagnostics.return-type-mismatch%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["spell-check"] = {default = "Information",description = "%config.diagnostics.spell-check%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["trailing-space"] = {default = "Hint",description = "%config.diagnostics.trailing-space%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["unbalanced-assignments"] = {default = "Warning",description = "%config.diagnostics.unbalanced-assignments%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["undefined-doc-class"] = {default = "Warning",description = "%config.diagnostics.undefined-doc-class%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["undefined-doc-name"] = {default = "Warning",description = "%config.diagnostics.undefined-doc-name%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["undefined-doc-param"] = {default = "Warning",description = "%config.diagnostics.undefined-doc-param%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["undefined-env-child"] = {default = "Information",description = "%config.diagnostics.undefined-env-child%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["undefined-field"] = {default = "Warning",description = "%config.diagnostics.undefined-field%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["undefined-global"] = {default = "Warning",description = "%config.diagnostics.undefined-global%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["unknown-cast-variable"] = {default = "Warning",description = "%config.diagnostics.unknown-cast-variable%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["unknown-diag-code"] = {default = "Warning",description = "%config.diagnostics.unknown-diag-code%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["unused-function"] = {default = "Hint",description = "%config.diagnostics.unused-function%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["unused-label"] = {default = "Hint",description = "%config.diagnostics.unused-label%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["unused-local"] = {default = "Hint",description = "%config.diagnostics.unused-local%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"},["unused-vararg"] = {default = "Hint",description = "%config.diagnostics.unused-vararg%",enum = { "Error", "Warning", "Information", "Hint", "Error!", "Warning!", "Information!", "Hint!" },type = "string"}},scope = "resource",title = "severity",type = "object"},["Lua.diagnostics.workspaceDelay"] = {default = 3000,markdownDescription = "%config.diagnostics.workspaceDelay%",scope = "resource",type = "integer"},["Lua.diagnostics.workspaceRate"] = {default = 100,markdownDescription = "%config.diagnostics.workspaceRate%",scope = "resource",type = "integer"},["Lua.format.defaultConfig"] = {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "%config.format.defaultConfig%",patternProperties = {[".*"] = {default = "",type = "string"}},scope = "resource",title = "defaultConfig",type = "object"},["Lua.format.enable"] = {default = true,markdownDescription = "%config.format.enable%",scope = "resource",type = "boolean"},["Lua.hint.arrayIndex"] = {default = "Auto",enum = { "Enable", "Auto", "Disable" },markdownDescription = "%config.hint.arrayIndex%",markdownEnumDescriptions = { "%config.hint.arrayIndex.Enable%", "%config.hint.arrayIndex.Auto%", "%config.hint.arrayIndex.Disable%" },scope = "resource",type = "string"},["Lua.hint.await"] = {default = true,markdownDescription = "%config.hint.await%",scope = "resource",type = "boolean"},["Lua.hint.enable"] = {default = false,markdownDescription = "%config.hint.enable%",scope = "resource",type = "boolean"},["Lua.hint.paramName"] = {default = "All",enum = { "All", "Literal", "Disable" },markdownDescription = "%config.hint.paramName%",markdownEnumDescriptions = { "%config.hint.paramName.All%", "%config.hint.paramName.Literal%", "%config.hint.paramName.Disable%" },scope = "resource",type = "string"},["Lua.hint.paramType"] = {default = true,markdownDescription = "%config.hint.paramType%",scope = "resource",type = "boolean"},["Lua.hint.semicolon"] = {default = "SameLine",enum = { "All", "SameLine", "Disable" },markdownDescription = "%config.hint.semicolon%",markdownEnumDescriptions = { "%config.hint.semicolon.All%", "%config.hint.semicolon.SameLine%", "%config.hint.semicolon.Disable%" },scope = "resource",type = "string"},["Lua.hint.setType"] = {default = false,markdownDescription = "%config.hint.setType%",scope = "resource",type = "boolean"},["Lua.hover.enable"] = {default = true,markdownDescription = "%config.hover.enable%",scope = "resource",type = "boolean"},["Lua.hover.enumsLimit"] = {default = 5,markdownDescription = "%config.hover.enumsLimit%",scope = "resource",type = "integer"},["Lua.hover.expandAlias"] = {default = true,markdownDescription = "%config.hover.expandAlias%",scope = "resource",type = "boolean"},["Lua.hover.previewFields"] = {default = 50,markdownDescription = "%config.hover.previewFields%",scope = "resource",type = "integer"},["Lua.hover.viewNumber"] = {default = true,markdownDescription = "%config.hover.viewNumber%",scope = "resource",type = "boolean"},["Lua.hover.viewString"] = {default = true,markdownDescription = "%config.hover.viewString%",scope = "resource",type = "boolean"},["Lua.hover.viewStringMax"] = {default = 1000,markdownDescription = "%config.hover.viewStringMax%",scope = "resource",type = "integer"},["Lua.misc.parameters"] = {default = {},items = {type = "string"},markdownDescription = "%config.misc.parameters%",scope = "resource",type = "array"},["Lua.runtime.builtin"] = {additionalProperties = false,markdownDescription = "%config.runtime.builtin%",properties = {basic = {default = "default",description = "%config.runtime.builtin.basic%",enum = { "default", "enable", "disable" },type = "string"},bit = {default = "default",description = "%config.runtime.builtin.bit%",enum = { "default", "enable", "disable" },type = "string"},bit32 = {default = "default",description = "%config.runtime.builtin.bit32%",enum = { "default", "enable", "disable" },type = "string"},builtin = {default = "default",description = "%config.runtime.builtin.builtin%",enum = { "default", "enable", "disable" },type = "string"},coroutine = {default = "default",description = "%config.runtime.builtin.coroutine%",enum = { "default", "enable", "disable" },type = "string"},debug = {default = "default",description = "%config.runtime.builtin.debug%",enum = { "default", "enable", "disable" },type = "string"},ffi = {default = "default",description = "%config.runtime.builtin.ffi%",enum = { "default", "enable", "disable" },type = "string"},io = {default = "default",description = "%config.runtime.builtin.io%",enum = { "default", "enable", "disable" },type = "string"},jit = {default = "default",description = "%config.runtime.builtin.jit%",enum = { "default", "enable", "disable" },type = "string"},math = {default = "default",description = "%config.runtime.builtin.math%",enum = { "default", "enable", "disable" },type = "string"},os = {default = "default",description = "%config.runtime.builtin.os%",enum = { "default", "enable", "disable" },type = "string"},package = {default = "default",description = "%config.runtime.builtin.package%",enum = { "default", "enable", "disable" },type = "string"},string = {default = "default",description = "%config.runtime.builtin.string%",enum = { "default", "enable", "disable" },type = "string"},table = {default = "default",description = "%config.runtime.builtin.table%",enum = { "default", "enable", "disable" },type = "string"},utf8 = {default = "default",description = "%config.runtime.builtin.utf8%",enum = { "default", "enable", "disable" },type = "string"}},scope = "resource",title = "builtin",type = "object"},["Lua.runtime.fileEncoding"] = {default = "utf8",enum = { "utf8", "ansi", "utf16le", "utf16be" },markdownDescription = "%config.runtime.fileEncoding%",markdownEnumDescriptions = { "%config.runtime.fileEncoding.utf8%", "%config.runtime.fileEncoding.ansi%", "%config.runtime.fileEncoding.utf16le%", "%config.runtime.fileEncoding.utf16be%" },scope = "resource",type = "string"},["Lua.runtime.meta"] = {default = "${version} ${language} ${encoding}",markdownDescription = "%config.runtime.meta%",scope = "resource",type = "string"},["Lua.runtime.nonstandardSymbol"] = {default = {},items = {enum = { "//", "/**/", "`", "+=", "-=", "*=", "/=", "%=", "^=", "//=", "|=", "&=", "<<=", ">>=", "||", "&&", "!", "!=", "continue" },type = "string"},markdownDescription = "%config.runtime.nonstandardSymbol%",scope = "resource",type = "array"},["Lua.runtime.path"] = {default = { "?.lua", "?/init.lua" },items = {type = "string"},markdownDescription = "%config.runtime.path%",scope = "resource",type = "array"},["Lua.runtime.pathStrict"] = {default = false,markdownDescription = "%config.runtime.pathStrict%",scope = "resource",type = "boolean"},["Lua.runtime.plugin"] = {default = "",markdownDescription = "%config.runtime.plugin%",scope = "resource",type = "string"},["Lua.runtime.special"] = {additionalProperties = false,default = vim.empty_dict(),markdownDescription = "%config.runtime.special%",patternProperties = {[".*"] = {default = "require",enum = { "_G", "rawset", "rawget", "setmetatable", "require", "dofile", "loadfile", "pcall", "xpcall", "assert", "error", "type" },type = "string"}},scope = "resource",title = "special",type = "object"},["Lua.runtime.unicodeName"] = {default = false,markdownDescription = "%config.runtime.unicodeName%",scope = "resource",type = "boolean"},["Lua.runtime.version"] = {default = "Lua 5.4",enum = { "Lua 5.1", "Lua 5.2", "Lua 5.3", "Lua 5.4", "LuaJIT" },markdownDescription = "%config.runtime.version%",markdownEnumDescriptions = { "%config.runtime.version.Lua 5.1%", "%config.runtime.version.Lua 5.2%", "%config.runtime.version.Lua 5.3%", "%config.runtime.version.Lua 5.4%", "%config.runtime.version.LuaJIT%" },scope = "resource",type = "string"},["Lua.semantic.annotation"] = {default = true,markdownDescription = "%config.semantic.annotation%",scope = "resource",type = "boolean"},["Lua.semantic.enable"] = {default = true,markdownDescription = "%config.semantic.enable%",scope = "resource",type = "boolean"},["Lua.semantic.keyword"] = {default = false,markdownDescription = "%config.semantic.keyword%",scope = "resource",type = "boolean"},["Lua.semantic.variable"] = {default = true,markdownDescription = "%config.semantic.variable%",scope = "resource",type = "boolean"},["Lua.signatureHelp.enable"] = {default = true,markdownDescription = "%config.signatureHelp.enable%",scope = "resource",type = "boolean"},["Lua.spell.dict"] = {default = {},items = {type = "string"},markdownDescription = "%config.spell.dict%",scope = "resource",type = "array"},["Lua.telemetry.enable"] = {default = vim.NIL,markdownDescription = "%config.telemetry.enable%",scope = "resource",tags = { "telemetry" },type = { "boolean", "null" }},["Lua.type.castNumberToInteger"] = {default = false,markdownDescription = "%config.type.castNumberToInteger%",scope = "resource",type = "boolean"},["Lua.type.weakNilCheck"] = {default = false,markdownDescription = "%config.type.weakNilCheck%",scope = "resource",type = "boolean"},["Lua.type.weakUnionCheck"] = {default = false,markdownDescription = "%config.type.weakUnionCheck%",scope = "resource",type = "boolean"},["Lua.window.progressBar"] = {default = true,markdownDescription = "%config.window.progressBar%",scope = "resource",type = "boolean"},["Lua.window.statusBar"] = {default = true,markdownDescription = "%config.window.statusBar%",scope = "resource",type = "boolean"},["Lua.workspace.checkThirdParty"] = {default = true,markdownDescription = "%config.workspace.checkThirdParty%",scope = "resource",type = "boolean"},["Lua.workspace.ignoreDir"] = {default = { ".vscode" },items = {type = "string"},markdownDescription = "%config.workspace.ignoreDir%",scope = "resource",type = "array"},["Lua.workspace.ignoreSubmodules"] = {default = true,markdownDescription = "%config.workspace.ignoreSubmodules%",scope = "resource",type = "boolean"},["Lua.workspace.library"] = {default = {},items = {type = "string"},markdownDescription = "%config.workspace.library%",scope = "resource",type = "array"},["Lua.workspace.maxPreload"] = {default = 5000,markdownDescription = "%config.workspace.maxPreload%",scope = "resource",type = "integer"},["Lua.workspace.preloadFileSize"] = {default = 500,markdownDescription = "%config.workspace.preloadFileSize%",scope = "resource",type = "integer"},["Lua.workspace.supportScheme"] = {default = { "file", "untitled", "git" },items = {type = "string"},markdownDescription = "%config.workspace.supportScheme%",scope = "resource",type = "array"},["Lua.workspace.useGitIgnore"] = {default = true,markdownDescription = "%config.workspace.useGitIgnore%",scope = "resource",type = "boolean"},["Lua.workspace.userThirdParty"] = {default = {},items = {type = "string"},markdownDescription = "%config.workspace.userThirdParty%",scope = "resource",type = "array"}},title = "Lua",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/nickel-lang-lsp.lua b/lua/mason/_generated/lsp-schemas/nickel-lang-lsp.lua new file mode 100644 index 00000000..c18af1a6 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/nickel-lang-lsp.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["nls.server.debugLog"] = {default = false,description = "Logs the communication between VS Code and the language server.",scope = "window",type = "boolean"},["nls.server.path"] = {default = "nls",description = "Path to nickel language server",scope = "window",type = "string"},["nls.server.trace"] = {description = "Enables performance tracing to the given file",scope = "window",type = "string"}},title = "Nickel Language Server Configuration",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/omnisharp-roslyn.lua b/lua/mason/_generated/lsp-schemas/omnisharp-roslyn.lua new file mode 100644 index 00000000..7adac3a5 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/omnisharp-roslyn.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["csharp.format.enable"] = {default = true,description = "Enable/disable default C# formatter (requires restart).",type = "boolean"},["csharp.inlayHints.parameters.enabled"] = {default = false,description = "Display inline parameter name hints",type = "boolean"},["csharp.inlayHints.parameters.forIndexerParameters"] = {default = false,description = "Show hints for indexers",type = "boolean"},["csharp.inlayHints.parameters.forLiteralParameters"] = {default = false,description = "Show hints for literals",type = "boolean"},["csharp.inlayHints.parameters.forObjectCreationParameters"] = {default = false,description = "Show hints for 'new' expressions",type = "boolean"},["csharp.inlayHints.parameters.forOtherParameters"] = {default = false,description = "Show hints for everything else",type = "boolean"},["csharp.inlayHints.parameters.suppressForParametersThatDifferOnlyBySuffix"] = {default = false,description = "Suppress hints when parameter names differ only by suffix",type = "boolean"},["csharp.inlayHints.parameters.suppressForParametersThatMatchArgumentName"] = {default = false,description = "Suppress hints when argument matches parameter name",type = "boolean"},["csharp.inlayHints.parameters.suppressForParametersThatMatchMethodIntent"] = {default = false,description = "Suppress hints when parameter name matches the method's intent",type = "boolean"},["csharp.inlayHints.types.enabled"] = {default = false,description = "Display inline type hints",type = "boolean"},["csharp.inlayHints.types.forImplicitObjectCreation"] = {default = false,description = "Show hints for implicit object creation",type = "boolean"},["csharp.inlayHints.types.forImplicitVariableTypes"] = {default = false,description = "Show hints for variables with inferred types",type = "boolean"},["csharp.inlayHints.types.forLambdaParameterTypes"] = {default = false,description = "Show hints for lambda parameter types",type = "boolean"},["csharp.maxProjectFileCountForDiagnosticAnalysis"] = {default = 1000,description = "Specifies the maximum number of files for which diagnostics are reported for the whole workspace. If this limit is exceeded, diagnostics will be shown for currently opened files only. Specify 0 or less to disable the limit completely.",type = "number"},["csharp.referencesCodeLens.enabled"] = {default = true,description = "Specifies whether the references CodeLens should be shown.",type = "boolean"},["csharp.referencesCodeLens.filteredSymbols"] = {default = {},description = "Array of custom symbol names for which CodeLens should be disabled.",items = {type = "string"},type = "array"},["csharp.semanticHighlighting.enabled"] = {default = true,description = "Enable/disable Semantic Highlighting for C# files (Razor files currently unsupported). Defaults to false. Close open files for changes to take effect.",scope = "window",type = "boolean"},["csharp.showOmnisharpLogOnError"] = {default = true,description = "Shows the OmniSharp log in the Output pane when OmniSharp reports an error.",type = "boolean"},["csharp.suppressBuildAssetsNotification"] = {default = false,description = "Suppress the notification window to add missing assets to build or debug the application.",type = "boolean"},["csharp.suppressDotnetInstallWarning"] = {default = false,description = "Suppress the warning that the .NET Core SDK is not on the path.",type = "boolean"},["csharp.suppressDotnetRestoreNotification"] = {default = false,description = "Suppress the notification window to perform a 'dotnet restore' when dependencies can't be resolved.",type = "boolean"},["csharp.suppressHiddenDiagnostics"] = {default = true,description = "Suppress 'hidden' diagnostics (such as 'unnecessary using directives') from appearing in the editor or the Problems pane.",type = "boolean"},["csharp.suppressProjectJsonWarning"] = {default = false,description = "Suppress the warning that project.json is no longer a supported project format for .NET Core applications",type = "boolean"},["csharp.testsCodeLens.enabled"] = {default = true,description = "Specifies whether the run and debug test CodeLens should be shown.",type = "boolean"},["csharp.unitTestDebuggingOptions"] = {default = vim.empty_dict(),description = "Options to use with the debugger when launching for unit test debugging. Any launch.json option is valid here.",properties = {allowFastEvaluate = {default = true,description = "When true (the default state), the debugger will attempt faster evaluation by simulating execution of simple properties and methods.",type = "boolean"},debugServer = {default = 4711,description = "For debug extension development only: if a port is specified VS Code tries to connect to a debug adapter running in server mode",type = "number"},enableStepFiltering = {default = true,description = "Optional flag to enable stepping over Properties and Operators.",type = "boolean"},justMyCode = {default = true,description = "Optional flag to only show user code.",type = "boolean"},logging = {default = vim.empty_dict(),description = "Optional flags to determine what types of messages should be logged to the output window.",properties = {browserStdOut = {default = true,description = "Optional flag to determine if stdout text from the launching the web browser should be logged to the output window.",type = "boolean"},elapsedTiming = {default = false,description = "If true, engine logging will include `adapterElapsedTime` and `engineElapsedTime` properties to indicate the amount of time, in microseconds, that a request took.",type = "boolean"},engineLogging = {default = false,description = "Optional flag to determine whether diagnostic engine logs should be logged to the output window.",type = "boolean"},exceptions = {default = true,description = "Optional flag to determine whether exception messages should be logged to the output window.",type = "boolean"},moduleLoad = {default = true,description = "Optional flag to determine whether module load events should be logged to the output window.",type = "boolean"},processExit = {default = true,description = "Controls if a message is logged when the target process exits, or debugging is stopped. Default: `true`.",type = "boolean"},programOutput = {default = true,description = "Optional flag to determine whether program output should be logged to the output window when not using an external console.",type = "boolean"},threadExit = {default = false,description = "Controls if a message is logged when a thread in the target process exits. Default: `false`.",type = "boolean"}},required = {},type = "object"},requireExactSource = {default = true,description = "Optional flag to require current source code to match the pdb.",type = "boolean"},sourceFileMap = {additionalProperties = {type = "string"},default = {[""] = ""},description = "Optional source file mappings passed to the debug engine. Example: '{ \"C:\\foo\":\"/home/user/foo\" }'",type = "object"},sourceLinkOptions = {additionalItems = {properties = {enabled = {default = "true",description = "Is Source Link enabled for this URL? If unspecified, this option defaults to 'true'.",title = "boolean"}},type = "object"},default = {["*"] = {enabled = true}},description = "Options to control how Source Link connects to web servers. For more information: https://aka.ms/VSCode-CS-LaunchJson#source-link-options",type = "object"},suppressJITOptimizations = {default = false,description = "If true, when an optimized module (.dll compiled in the Release configuration) loads in the target process, the debugger will ask the Just-In-Time compiler to generate code with optimizations disabled. For more information: https://aka.ms/VSCode-CS-LaunchJson#suppress-jit-optimizations",type = "boolean"},symbolOptions = {default = {searchMicrosoftSymbolServer = false,searchNuGetOrgSymbolServer = false,searchPaths = {}},description = "Options to control how symbols (.pdb files) are found and loaded.",properties = {cachePath = {default = "~/.dotnet/symbolcache",description = "Directory where symbols downloaded from symbol servers should be cached. If unspecified, on Windows the debugger will default to %TEMP%\\SymbolCache, and on Linux and macOS the debugger will default to ~/.dotnet/symbolcache.",type = "string"},moduleFilter = {default = {excludedModules = {},mode = "loadAllButExcluded"},description = "Provides options to control which modules (.dll files) the debugger will attempt to load symbols (.pdb files) for.",properties = {excludedModules = {default = {},description = "Array of modules that the debugger should NOT load symbols for. Wildcards (example: MyCompany.*.dll) are supported.\n\nThis property is ignored unless 'mode' is set to 'loadAllButExcluded'.",items = {type = "string"},type = "array"},includeSymbolsNextToModules = {default = true,description = "If true, for any module NOT in the 'includedModules' array, the debugger will still check next to the module itself and the launching executable, but it will not check paths on the symbol search list. This option defaults to 'true'.\n\nThis property is ignored unless 'mode' is set to 'loadOnlyIncluded'.",type = "boolean"},includedModules = {default = { "MyExampleModule.dll" },description = "Array of modules that the debugger should load symbols for. Wildcards (example: MyCompany.*.dll) are supported.\n\nThis property is ignored unless 'mode' is set to 'loadOnlyIncluded'.",items = {type = "string"},type = "array"},mode = {default = "loadAllButExcluded",description = "Controls which of the two basic operating modes the module filter operates in.",enum = { "loadAllButExcluded", "loadOnlyIncluded" },enumDescriptions = { "Load symbols for all modules unless the module is in the 'excludedModules' array.", "Do not attempt to load symbols for ANY module unless it is in the 'includedModules' array, or it is included through the 'includeSymbolsNextToModules' setting." },type = "string"}},required = { "mode" },type = "object"},searchMicrosoftSymbolServer = {default = false,description = "If 'true' the Microsoft Symbol server (https​://msdl.microsoft.com​/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.",type = "boolean"},searchNuGetOrgSymbolServer = {default = false,description = "If 'true' the NuGet.org symbol server (https​://symbols.nuget.org​/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.",type = "boolean"},searchPaths = {default = {},description = "Array of symbol server URLs (example: http​://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.",items = {type = "string"},type = "array"}},type = "object"},targetArchitecture = {description = "[Only supported in local macOS debugging] The architecture of the debuggee. This will automatically be detected unless this parameter is set. Allowed values are x86_64 or arm64.",type = "string"},type = {default = "coreclr",description = "Type type of code to debug. Can be either 'coreclr' for .NET Core debugging, or 'clr' for Desktop .NET Framework. 'clr' only works on Windows as the Desktop framework is Windows-only.",enum = { "coreclr", "clr" },type = "string"}},type = "object"},["omnisharp.analyzeOpenDocumentsOnly"] = {default = false,description = "Only run analyzers against open files when 'enableRoslynAnalyzers' is true",type = "boolean"},["omnisharp.autoStart"] = {default = true,description = "Specifies whether the OmniSharp server will be automatically started or not. If false, OmniSharp can be started with the 'Restart OmniSharp' command",type = "boolean"},["omnisharp.defaultLaunchSolution"] = {description = "The name of the default solution used at start up if the repo has multiple solutions. e.g.'MyAwesomeSolution.sln'. Default value is `null` which will cause the first in alphabetical order to be chosen.",type = "string"},["omnisharp.disableMSBuildDiagnosticWarning"] = {default = false,description = "Specifies whether notifications should be shown if OmniSharp encounters warnings or errors loading a project. Note that these warnings/errors are always emitted to the OmniSharp log",type = "boolean"},["omnisharp.dotnetPath"] = {description = 'Specified the path to a dotnet installation to use when "useModernNet" is set to true, instead of the default system one. Example: "/home/username/mycustomdotnetdirectory".',scope = "window",type = "string"},["omnisharp.enableAsyncCompletion"] = {default = false,description = "(EXPERIMENTAL) Enables support for resolving completion edits asynchronously. This can speed up time to show the completion list, particularly override and partial method completion lists, at the cost of slight delays after inserting a completion item. Most completion items will have no noticeable impact with this feature, but typing immediately after inserting an override or partial method completion, before the insert is completed, can have unpredictable results.",type = "boolean"},["omnisharp.enableDecompilationSupport"] = {default = false,description = "Enables support for decompiling external references instead of viewing metadata.",scope = "machine",type = "boolean"},["omnisharp.enableEditorConfigSupport"] = {default = true,description = "Enables support for reading code style, naming convention and analyzer settings from .editorconfig.",type = "boolean"},["omnisharp.enableImportCompletion"] = {default = false,description = "Enables support for showing unimported types and unimported extension methods in completion lists. When committed, the appropriate using directive will be added at the top of the current file. This option can have a negative impact on initial completion responsiveness, particularly for the first few completion sessions after opening a solution.",type = "boolean"},["omnisharp.enableMsBuildLoadProjectsOnDemand"] = {default = false,description = "If true, MSBuild project system will only load projects for files that were opened in the editor. This setting is useful for big C# codebases and allows for faster initialization of code navigation features only for projects that are relevant to code that is being edited. With this setting enabled OmniSharp may load fewer projects and may thus display incomplete reference lists for symbols.",type = "boolean"},["omnisharp.enableRoslynAnalyzers"] = {default = false,description = "Enables support for roslyn analyzers, code fixes and rulesets.",type = "boolean"},["omnisharp.loggingLevel"] = {default = "information",description = "Specifies the level of logging output from the OmniSharp server.",enum = { "trace", "debug", "information", "warning", "error", "critical" },type = "string"},["omnisharp.maxFindSymbolsItems"] = {default = 1000,description = "The maximum number of items that 'Go to Symbol in Workspace' operation can show. The limit is applied only when a positive number is specified here.",type = "number"},["omnisharp.maxProjectResults"] = {default = 250,description = "The maximum number of projects to be shown in the 'Select Project' dropdown (maximum 250).",type = "number"},["omnisharp.minFindSymbolsFilterLength"] = {default = 0,description = "The minimum number of characters to enter before 'Go to Symbol in Workspace' operation shows any results.",type = "number"},["omnisharp.monoPath"] = {description = 'Specifies the path to a mono installation to use when "useModernNet" is set to false, instead of the default system one. Example: "/Library/Frameworks/Mono.framework/Versions/Current"',scope = "machine",type = "string"},["omnisharp.organizeImportsOnFormat"] = {default = false,description = "Specifies whether 'using' directives should be grouped and sorted during document formatting.",type = "boolean"},["omnisharp.path"] = {description = 'Specifies the path to OmniSharp. When left empty the OmniSharp version pinned to the C# Extension is used. This can be the absolute path to an OmniSharp executable, a specific version number, or "latest". If a version number or "latest" is specified, the appropriate version of OmniSharp will be downloaded on your behalf. Setting "latest" is an opt-in into latest beta releases of OmniSharp.',scope = "machine",type = "string"},["omnisharp.projectLoadTimeout"] = {default = 60,description = "The time Visual Studio Code will wait for the OmniSharp server to start. Time is expressed in seconds.",type = "number"},["omnisharp.sdkIncludePrereleases"] = {default = true,description = 'Specifies whether to include preview versions of the .NET SDK when determining which version to use for project loading. Applies when "useModernNet" is set to true.',scope = "window",type = "boolean"},["omnisharp.sdkPath"] = {description = 'Specifies the path to a .NET SDK installation to use for project loading instead of the highest version installed. Applies when "useModernNet" is set to true. Example: /home/username/dotnet/sdks/6.0.300.',scope = "window",type = "string"},["omnisharp.sdkVersion"] = {description = 'Specifies the version of the .NET SDK to use for project loading instead of the highest version installed. Applies when "useModernNet" is set to true. Example: 6.0.300.',scope = "window",type = "string"},["omnisharp.testRunSettings"] = {description = "Path to the .runsettings file which should be used when running unit tests.",type = "string"},["omnisharp.useEditorFormattingSettings"] = {default = true,description = "Specifes whether OmniSharp should use VS Code editor settings for C# code formatting (use of tabs, indentation size).",type = "boolean"},["omnisharp.useModernNet"] = {default = true,description = "Use OmniSharp build for .NET 6. This version _does not_ support non-SDK-style .NET Framework projects, including Unity. SDK-style Framework, .NET Core, and .NET 5+ projects should see significant performance improvements.",scope = "window",title = "Use .NET 6 build of OmniSharp",type = "boolean"},["omnisharp.waitForDebugger"] = {default = false,description = "Pass the --debug flag when launching the OmniSharp server to allow a debugger to be attached.",type = "boolean"},["razor.devmode"] = {default = false,description = "Forces the omnisharp-vscode extension to run in a mode that enables local Razor.VSCode deving.",type = "boolean"},["razor.disabled"] = {default = false,description = "Specifies whether to disable Razor language features.",type = "boolean"},["razor.format.enable"] = {default = true,description = "Enable/disable default Razor formatter.",scope = "window",type = "boolean"},["razor.languageServer.debug"] = {default = false,description = "Specifies whether to wait for debug attach when launching the language server.",type = "boolean"},["razor.languageServer.directory"] = {description = "Overrides the path to the Razor Language Server directory.",scope = "machine",type = "string"},["razor.plugin.path"] = {description = "Overrides the path to the Razor plugin dll.",scope = "machine",type = "string"},["razor.trace"] = {default = "Off",description = "Specifies whether to output all messages [Verbose], some messages [Messages] or not at all [Off].",enum = { "Off", "Messages", "Verbose" },enumDescriptions = { "Does not log messages from the Razor extension", "Logs only some messages from the Razor extension", "Logs all messages from the Razor extension" },type = "string"}},title = "C# configuration"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/perlnavigator.lua b/lua/mason/_generated/lsp-schemas/perlnavigator.lua new file mode 100644 index 00000000..4c0bac84 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/perlnavigator.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["perlnavigator.enableWarnings"] = {default = true,description = "Enable warnings using -Mwarnings command switch",scope = "resource",type = "boolean"},["perlnavigator.includeLib"] = {default = true,description = "Boolean to indicate if $project/lib should be added to the path by default",scope = "resource",type = "boolean"},["perlnavigator.includePaths"] = {default = {},description = "Array of paths added to @INC. You can use $workspaceFolder as a placeholder.",scope = "resource",type = "array"},["perlnavigator.logging"] = {default = true,description = "Log to stdout from the navigator. Viewable in the Perl Navigator LSP log",scope = "resource",type = "boolean"},["perlnavigator.perlPath"] = {default = "perl",description = "Full path to the perl executable (no aliases, .bat files or ~/)",scope = "resource",type = "string"},["perlnavigator.perlcriticEnabled"] = {default = true,description = "Enable perl critic.",scope = "resource",type = "boolean"},["perlnavigator.perlcriticProfile"] = {default = "",description = "Path to perl critic profile. Otherwise perlcritic itself will default to ~/.perlcriticrc. (no aliases, .bat files or ~/)",scope = "resource",type = "string"},["perlnavigator.perltidyEnabled"] = {default = true,description = "Enable perl tidy.",scope = "resource",type = "boolean"},["perlnavigator.perltidyProfile"] = {default = "",description = "Path to perl tidy profile (no aliases, .bat files or ~/)",scope = "resource",type = "string"},["perlnavigator.severity1"] = {default = "hint",description = "Editor Diagnostic severity level for Critic severity 1",enum = { "error", "warning", "info", "hint", "none" },scope = "resource",type = "string"},["perlnavigator.severity2"] = {default = "hint",description = "Editor Diagnostic severity level for Critic severity 2",enum = { "error", "warning", "info", "hint", "none" },scope = "resource",type = "string"},["perlnavigator.severity3"] = {default = "hint",description = "Editor Diagnostic severity level for Critic severity 3",enum = { "error", "warning", "info", "hint", "none" },scope = "resource",type = "string"},["perlnavigator.severity4"] = {default = "info",description = "Editor Diagnostic severity level for Critic severity 4",enum = { "error", "warning", "info", "hint", "none" },scope = "resource",type = "string"},["perlnavigator.severity5"] = {default = "warning",description = "Editor Diagnostic severity level for Critic severity 5",enum = { "error", "warning", "info", "hint", "none" },scope = "resource",type = "string"},["perlnavigator.trace.server"] = {default = "messages",description = "Traces the communication between VS Code and the language server.",enum = { "off", "messages", "verbose" },scope = "window",type = "string"}},title = "Perl Navigator",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/psalm.lua b/lua/mason/_generated/lsp-schemas/psalm.lua new file mode 100644 index 00000000..7fffe98a --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/psalm.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["psalm.analyzedFileExtensions"] = {default = { {language = "php",scheme = "file"}, {language = "php",scheme = "untitled"} },description = "A list of file extensions to request Psalm to analyze. By default, this only includes 'php' (Modifying requires VSCode reload)",type = "array"},["psalm.configPaths"] = {default = { "psalm.xml", "psalm.xml.dist" },description = "A list of files to checkup for psalm configuration (relative to the workspace directory)",items = {type = "string"},type = "array"},["psalm.connectToServerWithTcp"] = {default = false,description = "If this is set to true, this VSCode extension will use TCP instead of the default STDIO to communicate with the Psalm language server. (Modifying requires VSCode reload)",type = "boolean"},["psalm.disableAutoComplete"] = {default = false,description = "Enable to disable autocomplete on methods and properties (Modifying requires VSCode reload)",type = "boolean"},["psalm.enableDebugLog"] = {default = false,deprecationMessage = "Deprecated: Please use psalm.enableVerbose, psalm.logLevel or psalm.trace.server instead.",description = "Enable this to print messages to the debug console when developing or debugging this VS Code extension. (Modifying requires VSCode reload)",type = "boolean"},["psalm.enableUseIniDefaults"] = {default = false,description = "Enable this to use PHP-provided ini defaults for memory and error display. (Modifying requires restart)",type = "boolean"},["psalm.enableVerbose"] = {default = false,description = "Enable --verbose mode on the Psalm Language Server (Modifying requires VSCode reload)",type = "boolean"},["psalm.hideStatusMessageWhenRunning"] = {default = true,description = "This will hide the Psalm status from the status bar when it is started and running. This is useful to clear up a cluttered status bar.",type = "boolean"},["psalm.logLevel"] = {default = "INFO",description = "Traces the communication between VSCode and the Psalm language server.",enum = { "NONE", "ERROR", "WARN", "INFO", "DEBUG", "TRACE" },scope = "window",type = "string"},["psalm.maxRestartCount"] = {default = 5,description = "The number of times the Language Server is allowed to crash and restart before it will no longer try to restart (Modifying requires VSCode reload)",type = "number"},["psalm.phpExecutableArgs"] = {default = { "-dxdebug.remote_autostart=0", "-dxdebug.remote_enable=0", "-dxdebug_profiler_enable=0" },description = "Optional (Advanced), default is '-dxdebug.remote_autostart=0 -dxdebug.remote_enable=0 -dxdebug_profiler_enable=0'. Additional PHP executable CLI arguments to use. (Modifying requires VSCode reload)",items = {type = "string"},type = "array"},["psalm.phpExecutablePath"] = {default = vim.NIL,description = 'Optional, defaults to searching for "php". The path to a PHP 7.0+ executable to use to execute the Psalm server. The PHP 7.0+ installation should preferably include and enable the PHP module `pcntl`. (Modifying requires VSCode reload)',type = "string"},["psalm.psalmClientScriptPath"] = {default = vim.NIL,deprecationMessage = "Deprecated: Please use psalm.psalmScriptPath instead.",description = "Optional (Advanced). If provided, this overrides the Psalm script to use, e.g. vendor/bin/psalm. (Modifying requires VSCode reload)",markdownDeprecationMessage = "**Deprecated**: Please use `#psalm.psalmScriptPath#` instead.",type = "string"},["psalm.psalmScriptArgs"] = {default = {},description = "Optional (Advanced). Additional arguments to the Psalm language server. (Modifying requires VSCode reload)",items = {type = "string"},type = "array"},["psalm.psalmScriptPath"] = {default = vim.NIL,description = "Optional (Advanced). If provided, this overrides the Psalm script to use, e.g. vendor/bin/psalm-language-server. (Modifying requires VSCode reload)",type = "string"},["psalm.psalmVersion"] = {default = vim.NIL,description = "Optional (Advanced). If provided, this overrides the Psalm version detection (Modifying requires VSCode reload)",type = "string"},["psalm.trace.server"] = {default = "off",description = "Traces the communication between VSCode and the Psalm language server.",enum = { "off", "messages", "verbose" },scope = "window",type = "string"},["psalm.unusedVariableDetection"] = {default = false,description = "Enable this to enable unused variable and parameter detection",type = "boolean"}},title = "PHP - Psalm Analyzer",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/puppet-editor-services.lua b/lua/mason/_generated/lsp-schemas/puppet-editor-services.lua new file mode 100644 index 00000000..f662c090 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/puppet-editor-services.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["puppet.editorService.debugFilePath"] = {default = "",description = "The absolute filepath where the Puppet Editor Service will output the debugging log. By default no logfile is generated",type = "string"},["puppet.editorService.enable"] = {default = true,description = "Enable/disable advanced Puppet Language Features",type = "boolean"},["puppet.editorService.featureFlags"] = {default = {},description = "An array of strings of experimental features to enable in the Puppet Editor Service",type = "array"},["puppet.editorService.foldingRange.enable"] = {default = true,description = "Enable/disable syntax aware code folding provider",type = "boolean"},["puppet.editorService.foldingRange.showLastLine"] = {default = false,description = "Show or hide the last line in code folding regions",type = "boolean"},["puppet.editorService.formatOnType.enable"] = {default = false,description = "Enable/disable the Puppet document on-type formatter, for example hashrocket alignment",type = "boolean"},["puppet.editorService.formatOnType.maxFileSize"] = {default = 4096,description = "Sets the maximum file size (in Bytes) that document on-type formatting will occur. Setting this to zero (0) will disable the file size check. Note that large file sizes can cause performance issues.",minimum = 0,type = "integer"},["puppet.editorService.hover.showMetadataInfo"] = {default = true,description = "Enable or disable showing Puppet Module version information in the metadata.json file",type = "boolean"},["puppet.editorService.loglevel"] = {default = "normal",description = "Set the logging verbosity level for the Puppet Editor Service, with Debug producing the most output and Error producing the least",enum = { "debug", "error", "normal", "warning", "verbose" },type = "string"},["puppet.editorService.protocol"] = {default = "stdio",description = "The protocol used to communicate with the Puppet Editor Service. By default the local STDIO protocol is used.",enum = { "stdio", "tcp" },type = "string"},["puppet.editorService.puppet.confdir"] = {default = "",description = "The Puppet configuration directory. See https://puppet.com/docs/puppet/latest/dirs_confdir.html for more information",type = "string"},["puppet.editorService.puppet.environment"] = {default = "",description = "The Puppet environment to use. See https://puppet.com/docs/puppet/latest/config_print.html#environments for more information",type = "string"},["puppet.editorService.puppet.modulePath"] = {default = "",description = "Additional module paths to use when starting the Editor Services. On Windows this is delimited with a semicolon, and on all other platforms, with a colon. For example C:\\Path1;C:\\Path2",type = "string"},["puppet.editorService.puppet.vardir"] = {default = "",description = "The Puppet cache directory. See https://puppet.com/docs/puppet/latest/dirs_vardir.html for more information",type = "string"},["puppet.editorService.puppet.version"] = {default = "",description = "The version of Puppet to use. For example '5.4.0'. This is generally only applicable when using the PDK installation type. If Puppet Editor Services is unable to use this version, it will default to the latest available version of Puppet.",type = "string"},["puppet.editorService.tcp.address"] = {description = "The IP address or hostname of the remote Puppet Editor Service to connect to, for example 'computer.domain' or '192.168.0.1'. Only applicable when the editorService.protocol is set to tcp",type = "string"},["puppet.editorService.tcp.port"] = {description = "The TCP Port of the remote Puppet Editor Service to connect to. Only applicable when the editorService.protocol is set to tcp",type = "integer"},["puppet.editorService.timeout"] = {default = 10,description = "The timeout to connect to the Puppet Editor Service",type = "integer"},["puppet.format.enable"] = {default = true,description = "Enable/disable the Puppet document formatter",scope = "window",type = "boolean"},["puppet.installDirectory"] = {markdownDescription = "The fully qualified path to the Puppet install directory. This can be a PDK or Puppet Agent installation. For example: 'C:\\Program Files\\Puppet Labs\\Puppet' or '/opt/puppetlabs/puppet'. If this is not set the extension will attempt to detect the installation directory. Do **not** use when `#puppet.installType#` is set to `auto`",type = "string"},["puppet.installType"] = {default = "auto",enum = { "auto", "pdk", "agent" },enumDescriptions = { "The exention will use the PDK or the Puppet Agent based on default install locations. When both are present, it will use the PDK", "Use the PDK as an installation source", "Use the Puppet Agent as an installation source" },markdownDescription = "The type of Puppet installation. Either the Puppet Development Kit (pdk) or the Puppet Agent (agent). Choose `auto` to have the extension detect which to use automatically based on default install locations",type = "string"},["puppet.notification.nodeGraph"] = {default = "messagebox",description = "The type of notification used when a node graph is being generated. Default value of messagebox",enum = { "messagebox", "statusbar", "none" },type = "string"},["puppet.notification.puppetResource"] = {default = "messagebox",description = "The type of notification used when a running Puppet Resouce. Default value of messagebox",enum = { "messagebox", "statusbar", "none" },type = "string"},["puppet.pdk.checkVersion"] = {default = true,description = "Enable/disable checking if installed PDK version is latest",type = "boolean"},["puppet.titleBar.pdkNewModule.enable"] = {default = true,description = "Enable/disable the PDK New Module icon in the Editor Title Bar",type = "boolean"},["puppet.validate.resolvePuppetfiles"] = {default = true,description = "Enable/disable using dependency resolution for Puppetfiles",type = "boolean"}},title = "Puppet",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/purescript-language-server.lua b/lua/mason/_generated/lsp-schemas/purescript-language-server.lua new file mode 100644 index 00000000..f4815ccb --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/purescript-language-server.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["purescript.addNpmPath"] = {default = false,description = "Whether to add the local npm bin directory to the PATH for purs IDE server and build command.",scope = "resource",type = "boolean"},["purescript.addPscPackageSources"] = {default = false,description = "Whether to add psc-package sources to the globs passed to the IDE server for source locations (specifically the output of `psc-package sources`, if this is a psc-package project). Update due to adding packages/changing package set requires psc-ide server restart.",scope = "resource",type = "boolean"},["purescript.addSpagoSources"] = {default = true,description = "Whether to add spago sources to the globs passed to the IDE server for source locations (specifically the output of `spago sources`, if this is a spago project). Update due to adding packages/changing package set requires psc-ide server restart.",scope = "resource",type = "boolean"},["purescript.autoStartPscIde"] = {default = true,description = "Whether to automatically start/connect to purs IDE server when editing a PureScript file (includes connecting to an existing running instance). If this is disabled, various features like autocomplete, tooltips, and other type info will not work until start command is run manually.",scope = "resource",type = "boolean"},["purescript.autocompleteAddImport"] = {default = true,description = "Whether to automatically add imported identifiers when accepting autocomplete result.",scope = "resource",type = "boolean"},["purescript.autocompleteAllModules"] = {default = true,description = "Whether to always autocomplete from all built modules, or just those imported in the file. Suggestions from all modules always available by explicitly triggering autocomplete.",scope = "resource",type = "boolean"},["purescript.autocompleteGrouped"] = {default = true,description = "Whether to group completions in autocomplete results. Requires compiler 0.11.6",scope = "resource",type = "boolean"},["purescript.autocompleteLimit"] = {default = vim.NIL,description = "Maximum number of results to fetch for an autocompletion request. May improve performance on large projects.",scope = "resource",type = { "null", "integer" }},["purescript.buildCommand"] = {default = "spago build --purs-args --json-errors",description = "Build command to use with arguments. Not passed to shell. eg `spago build --purs-args --json-errors`",scope = "resource",type = "string"},["purescript.buildOpenedFiles"] = {default = false,markdownDescription = "**EXPERIMENTAL** Enable purs IDE server fast rebuild of opened files. This includes both newly opened tabs and those present at startup.",scope = "resource",type = "boolean"},["purescript.censorWarnings"] = {default = {},description = 'The warning codes to censor, both for fast rebuild and a full build. Unrelated to any psa setup. e.g.: ["ShadowedName","MissingTypeDeclaration"]',items = {type = "string"},scope = "resource",title = "Censor warnings",type = "array"},["purescript.codegenTargets"] = {default = vim.NIL,description = "List of codegen targets to pass to the compiler for rebuild. e.g. js, corefn. If not specified (rather than empty array) this will not be passed and the compiler will default to js. Requires 0.12.1+",items = {type = "string"},scope = "resource",type = "array"},["purescript.declarationTypeCodeLens"] = {default = true,description = "Enable declaration codelens to add types to declarations",scope = "resource",type = "boolean"},["purescript.exportsCodeLens"] = {default = true,description = "Enable declaration codelenses for export management",scope = "resource",type = "boolean"},["purescript.fastRebuild"] = {default = true,description = "Enable purs IDE server fast rebuild",scope = "resource",type = "boolean"},["purescript.formatter"] = {default = "purty",description = "Tool to use to for formatting. Must be installed and on PATH (or npm installed with addNpmPath set)",enum = { "none", "purty", "purs-tidy", "pose" },markdownEnumDescriptions = { "No formatting provision", "Use purty. Must be installed - [instructions](https://gitlab.com/joneshf/purty#npm)", "Use purs-tidy. Must be installed - [instructions](https://github.com/natefaubion/purescript-tidy)", "Use pose (prettier plugin). Must be installed - [instructions](https://pose.rowtype.yoga/)" },scope = "resource",type = "string"},["purescript.fullBuildOnSave"] = {default = false,description = "Whether to perform a full build on save with the configured build command (rather than IDE server fast rebuild). This is not generally recommended because it is slow, but it does mean that dependent modules are rebuilt as necessary.",scope = "resource",type = "boolean"},["purescript.importsPreferredModules"] = {default = { "Prelude" },description = "Module to prefer to insert when adding imports which have been re-exported. In order of preference, most preferred first.",items = {type = "string"},scope = "resource",type = "array"},["purescript.outputDirectory"] = {default = "output/",description = "Override purs ide output directory (output/ if not specified). This should match up to your build command",scope = "resource",type = "string"},["purescript.packagePath"] = {default = "",description = "Path to installed packages. Will be used to control globs passed to IDE server for source locations. Change requires IDE server restart.",scope = "resource",type = "string"},["purescript.preludeModule"] = {default = "Prelude",description = "Module to consider as your default prelude, if an auto-complete suggestion comes from this module it will be imported unqualified.",scope = "resource",type = "string"},["purescript.pscIdePort"] = {default = vim.NIL,description = "Port to use for purs IDE server (whether an existing server or to start a new one). By default a random port is chosen (or an existing port in .psc-ide-port if present), if this is specified no attempt will be made to select an alternative port on failure.",scope = "resource",type = { "integer", "null" }},["purescript.pscIdelogLevel"] = {default = "",description = "Log level for purs IDE server",scope = "resource",type = "string"},["purescript.pursExe"] = {default = "purs",description = "Location of purs executable (resolved wrt PATH)",scope = "resource",type = "string"},["purescript.sourcePath"] = {default = "src",description = "Path to application source root. Will be used to control globs passed to IDE server for source locations. Change requires IDE server restart.",scope = "resource",type = "string"},["purescript.trace.server"] = {default = "off",description = "Traces the communication between VSCode and the PureScript language service.",enum = { "off", "messages", "verbose" },scope = "window",type = "string"}},title = "PureScript"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/pyright.lua b/lua/mason/_generated/lsp-schemas/pyright.lua new file mode 100644 index 00000000..152658dd --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/pyright.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["pyright.disableLanguageServices"] = {default = false,description = "Disables type completion, definitions, and references.",scope = "resource",type = "boolean"},["pyright.disableOrganizeImports"] = {default = false,description = "Disables the “Organize Imports” command.",scope = "resource",type = "boolean"},["python.analysis.autoImportCompletions"] = {default = true,description = "Offer auto-import completions.",scope = "resource",type = "boolean"},["python.analysis.autoSearchPaths"] = {default = true,description = "Automatically add common search paths like 'src'?",scope = "resource",type = "boolean"},["python.analysis.diagnosticMode"] = {default = "openFilesOnly",enum = { "openFilesOnly", "workspace" },enumDescriptions = { "Analyzes and reports errors on only open files.", "Analyzes and reports errors on all files in the workspace." },scope = "resource",type = "string"},["python.analysis.diagnosticSeverityOverrides"] = {default = vim.empty_dict(),description = "Allows a user to override the severity levels for individual diagnostics.",properties = {reportAssertAlwaysTrue = {default = "warning",description = "Diagnostics for 'assert' statement that will provably always assert. This can be indicative of a programming error.",enum = { "none", "information", "warning", "error" },type = "string"},reportCallInDefaultInitializer = {default = "none",description = "Diagnostics for function calls within a default value initialization expression. Such calls can mask expensive operations that are performed at module initialization time.",enum = { "none", "information", "warning", "error" },type = "string"},reportConstantRedefinition = {default = "none",description = "Diagnostics for attempts to redefine variables whose names are all-caps with underscores and numerals.",enum = { "none", "information", "warning", "error" },type = "string"},reportDuplicateImport = {default = "none",description = "Diagnostics for an imported symbol or module that is imported more than once.",enum = { "none", "information", "warning", "error" },type = "string"},reportFunctionMemberAccess = {default = "none",description = "Diagnostics for member accesses on functions.",enum = { "none", "information", "warning", "error" },type = "string"},reportGeneralTypeIssues = {default = "error",description = "Diagnostics for general type inconsistencies, unsupported operations, argument/parameter mismatches, etc. Covers all of the basic type-checking rules not covered by other rules. Does not include syntax errors.",enum = { "none", "information", "warning", "error" },type = "string"},reportImplicitStringConcatenation = {default = "none",description = "Diagnostics for two or more string literals that follow each other, indicating an implicit concatenation. This is considered a bad practice and often masks bugs such as missing commas.",enum = { "none", "information", "warning", "error" },type = "string"},reportImportCycles = {default = "none",description = "Diagnostics for cyclical import chains. These are not errors in Python, but they do slow down type analysis and often hint at architectural layering issues. Generally, they should be avoided.",enum = { "none", "information", "warning", "error" },type = "string"},reportIncompatibleMethodOverride = {default = "none",description = "Diagnostics for methods that override a method of the same name in a base class in an incompatible manner (wrong number of parameters, incompatible parameter types, or incompatible return type).",enum = { "none", "information", "warning", "error" },type = "string"},reportIncompatibleVariableOverride = {default = "none",description = "Diagnostics for overrides in subclasses that redefine a variable in an incompatible way.",enum = { "none", "information", "warning", "error" },type = "string"},reportIncompleteStub = {default = "none",description = "Diagnostics for the use of a module-level “__getattr__” function, indicating that the stub is incomplete.",enum = { "none", "information", "warning", "error" },type = "string"},reportInconsistentConstructor = {default = "none",description = "Diagnostics for __init__ and __new__ methods whose signatures are inconsistent.",enum = { "none", "information", "warning", "error" },type = "string"},reportInvalidStringEscapeSequence = {default = "warning",description = "Diagnostics for invalid escape sequences used within string literals. The Python specification indicates that such sequences will generate a syntax error in future versions.",enum = { "none", "information", "warning", "error" },type = "string"},reportInvalidStubStatement = {default = "none",description = "Diagnostics for type stub statements that do not conform to PEP 484.",enum = { "none", "information", "warning", "error" },type = "string"},reportInvalidTypeVarUse = {default = "warning",description = "Diagnostics for improper use of type variables in a function signature.",enum = { "none", "information", "warning", "error" },type = "string"},reportMatchNotExhaustive = {default = "none",description = "Diagnostics for 'match' statements that do not exhaustively match all possible values.",enum = { "none", "information", "warning", "error" },type = "string"},reportMissingImports = {default = "error",description = "Diagnostics for imports that have no corresponding imported python file or type stub file.",enum = { "none", "information", "warning", "error" },type = "string"},reportMissingModuleSource = {default = "warning",description = "Diagnostics for imports that have no corresponding source file. This happens when a type stub is found, but the module source file was not found, indicating that the code may fail at runtime when using this execution environment. Type checking will be done using the type stub.",enum = { "none", "information", "warning", "error" },type = "string"},reportMissingParameterType = {default = "none",description = "Diagnostics for parameters that are missing a type annotation.",enum = { "none", "information", "warning", "error" },type = "string"},reportMissingSuperCall = {default = "none",description = "Diagnostics for missing call to parent class for inherited `__init__` methods.",enum = { "none", "information", "warning", "error" },type = "string"},reportMissingTypeArgument = {default = "none",description = "Diagnostics for generic class reference with missing type arguments.",enum = { "none", "information", "warning", "error" },type = "string"},reportMissingTypeStubs = {default = "none",description = "Diagnostics for imports that have no corresponding type stub file (either a typeshed file or a custom type stub). The type checker requires type stubs to do its best job at analysis.",enum = { "none", "information", "warning", "error" },type = "string"},reportOptionalCall = {default = "error",description = "Diagnostics for an attempt to call a variable with an Optional type.",enum = { "none", "information", "warning", "error" },type = "string"},reportOptionalContextManager = {default = "error",description = "Diagnostics for an attempt to use an Optional type as a context manager (as a parameter to a with statement).",enum = { "none", "information", "warning", "error" },type = "string"},reportOptionalIterable = {default = "error",description = "Diagnostics for an attempt to use an Optional type as an iterable value (e.g. within a for statement).",enum = { "none", "information", "warning", "error" },type = "string"},reportOptionalMemberAccess = {default = "error",description = "Diagnostics for an attempt to access a member of a variable with an Optional type.",enum = { "none", "information", "warning", "error" },type = "string"},reportOptionalOperand = {default = "error",description = "Diagnostics for an attempt to use an Optional type as an operand to a binary or unary operator (like '+', '==', 'or', 'not').",enum = { "none", "information", "warning", "error" },type = "string"},reportOptionalSubscript = {default = "error",description = "Diagnostics for an attempt to subscript (index) a variable with an Optional type.",enum = { "none", "information", "warning", "error" },type = "string"},reportOverlappingOverload = {default = "none",description = "Diagnostics for function overloads that overlap in signature and obscure each other or have incompatible return types.",enum = { "none", "information", "warning", "error" },type = "string"},reportPrivateImportUsage = {default = "error",description = 'Diagnostics for incorrect usage of symbol imported from a "py.typed" module that is not re-exported from that module.',enum = { "none", "information", "warning", "error" },type = "string"},reportPrivateUsage = {default = "none",description = "Diagnostics for incorrect usage of private or protected variables or functions. Protected class members begin with a single underscore _ and can be accessed only by subclasses. Private class members begin with a double underscore but do not end in a double underscore and can be accessed only within the declaring class. Variables and functions declared outside of a class are considered private if their names start with either a single or double underscore, and they cannot be accessed outside of the declaring module.",enum = { "none", "information", "warning", "error" },type = "string"},reportPropertyTypeMismatch = {default = "none",description = "Diagnostics for property whose setter and getter have mismatched types.",enum = { "none", "information", "warning", "error" },type = "string"},reportSelfClsParameterName = {default = "warning",description = "Diagnostics for a missing or misnamed “self” parameter in instance methods and “cls” parameter in class methods. Instance methods in metaclasses (classes that derive from “type”) are allowed to use “cls” for instance methods.",enum = { "none", "information", "warning", "error" },type = "string"},reportTypeCommentUsage = {default = "none",description = "Diagnostics for usage of deprecated type comments.",enum = { "none", "information", "warning", "error" },type = "string"},reportTypedDictNotRequiredAccess = {default = "error",description = "Diagnostics for an attempt to access a non-required key within a TypedDict without a check for its presence.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnboundVariable = {default = "error",description = "Diagnostics for unbound and possibly unbound variables.",enum = { "none", "information", "warning", "error" },type = "string"},reportUndefinedVariable = {default = "error",description = "Diagnostics for a missing or misnamed “self” parameter in instance methods and “cls” parameter in class methods. Instance methods in metaclasses (classes that derive from “type”) are allowed to use “cls” for instance methods.",enum = { "none", "information", "warning", "error" },type = "string"},reportUninitializedInstanceVariable = {default = "none",description = "Diagnostics for instance variables that are not declared or initialized within class body or `__init__` method.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnknownArgumentType = {default = "none",description = "Diagnostics for call arguments for functions or methods that have an unknown type.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnknownLambdaType = {default = "none",description = "Diagnostics for input or return parameters for lambdas that have an unknown type.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnknownMemberType = {default = "none",description = "Diagnostics for class or instance variables that have an unknown type.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnknownParameterType = {default = "none",description = "Diagnostics for input or return parameters for functions or methods that have an unknown type.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnknownVariableType = {default = "none",description = "Diagnostics for variables that have an unknown type..",enum = { "none", "information", "warning", "error" },type = "string"},reportUnnecessaryCast = {default = "none",description = "Diagnostics for 'cast' calls that are statically determined to be unnecessary. Such calls are sometimes indicative of a programming error.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnnecessaryComparison = {default = "none",description = "Diagnostics for '==' and '!=' comparisons that are statically determined to be unnecessary. Such calls are sometimes indicative of a programming error.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnnecessaryIsInstance = {default = "none",description = "Diagnostics for 'isinstance' or 'issubclass' calls where the result is statically determined to be always true. Such calls are often indicative of a programming error.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnnecessaryTypeIgnoreComment = {default = "none",description = "Diagnostics for '# type: ignore' comments that have no effect.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnsupportedDunderAll = {default = "warning",description = "Diagnostics for unsupported operations performed on __all__.",enum = { "none", "information", "warning", "error" },type = "string"},reportUntypedBaseClass = {default = "none",description = "Diagnostics for base classes whose type cannot be determined statically. These obscure the class type, defeating many type analysis features.",enum = { "none", "information", "warning", "error" },type = "string"},reportUntypedClassDecorator = {default = "none",description = "Diagnostics for class decorators that have no type annotations. These obscure the class type, defeating many type analysis features.",enum = { "none", "information", "warning", "error" },type = "string"},reportUntypedFunctionDecorator = {default = "none",description = "Diagnostics for function decorators that have no type annotations. These obscure the function type, defeating many type analysis features.",enum = { "none", "information", "warning", "error" },type = "string"},reportUntypedNamedTuple = {default = "none",description = "Diagnostics when “namedtuple” is used rather than “NamedTuple”. The former contains no type information, whereas the latter does.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnusedCallResult = {default = "none",description = "Diagnostics for call expressions whose results are not consumed and are not None.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnusedClass = {default = "none",description = "Diagnostics for a class with a private name (starting with an underscore) that is not accessed.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnusedCoroutine = {default = "error",description = "Diagnostics for call expressions that return a Coroutine and whose results are not consumed.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnusedExpression = {default = "warning",description = "Diagnostics for simple expressions whose value is not used in any way.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnusedFunction = {default = "none",description = "Diagnostics for a function or method with a private name (starting with an underscore) that is not accessed.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnusedImport = {default = "none",description = "Diagnostics for an imported symbol that is not referenced within that file.",enum = { "none", "information", "warning", "error" },type = "string"},reportUnusedVariable = {default = "none",description = "Diagnostics for a variable that is not accessed.",enum = { "none", "information", "warning", "error" },type = "string"},reportWildcardImportFromLibrary = {default = "warning",description = "Diagnostics for an wildcard import from an external library.",enum = { "none", "information", "warning", "error" },type = "string"}},scope = "resource",type = "object"},["python.analysis.extraPaths"] = {default = {},description = "Additional import search resolution paths",items = {type = "string"},scope = "resource",type = "array"},["python.analysis.logLevel"] = {default = "Information",description = "Specifies the level of logging for the Output panel",enum = { "Error", "Warning", "Information", "Trace" },type = "string"},["python.analysis.stubPath"] = {default = "typings",description = "Path to directory containing custom type stub files.",scope = "resource",type = "string"},["python.analysis.typeCheckingMode"] = {default = "basic",description = "Defines the default rule set for type checking.",enum = { "off", "basic", "strict" },scope = "resource",type = "string"},["python.analysis.typeshedPaths"] = {default = {},description = "Paths to look for typeshed modules.",items = {type = "string"},scope = "resource",type = "array"},["python.analysis.useLibraryCodeForTypes"] = {default = false,description = "Use library implementations to extract type information when type stub is not present.",scope = "resource",type = "boolean"},["python.pythonPath"] = {default = "python",description = "Path to Python, you can use a custom version of Python.",scope = "resource",type = "string"},["python.venvPath"] = {default = "",description = "Path to folder with a list of Virtual Environments.",scope = "resource",type = "string"}},title = "Pyright",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/python-lsp-server.lua b/lua/mason/_generated/lsp-schemas/python-lsp-server.lua new file mode 100644 index 00000000..7ec31106 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/python-lsp-server.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {["$schema"] = "http://json-schema.org/draft-07/schema#",description = "This server can be configured using `workspace/didChangeConfiguration` method. Each configuration option is described below:",properties = {["pylsp.configurationSources"] = {default = { "pycodestyle" },description = "List of configuration sources to use.",items = {enum = { "pycodestyle", "pyflakes" },type = "string"},type = "array",uniqueItems = true},["pylsp.plugins.autopep8.enabled"] = {default = true,description = "Enable or disable the plugin (disabling required to use `yapf`).",type = "boolean"},["pylsp.plugins.flake8.config"] = {default = vim.NIL,description = "Path to the config file that will be the authoritative config source.",type = { "string", "null" }},["pylsp.plugins.flake8.enabled"] = {default = false,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.flake8.exclude"] = {default = {},description = "List of files or directories to exclude.",items = {type = "string"},type = "array"},["pylsp.plugins.flake8.executable"] = {default = "flake8",description = "Path to the flake8 executable.",type = "string"},["pylsp.plugins.flake8.filename"] = {default = vim.NIL,description = "Only check for filenames matching the patterns in this list.",type = { "string", "null" }},["pylsp.plugins.flake8.hangClosing"] = {default = vim.NIL,description = "Hang closing bracket instead of matching indentation of opening bracket's line.",type = { "boolean", "null" }},["pylsp.plugins.flake8.ignore"] = {default = {},description = "List of errors and warnings to ignore (or skip).",items = {type = "string"},type = "array"},["pylsp.plugins.flake8.indentSize"] = {default = vim.NIL,description = "Set indentation spaces.",type = { "integer", "null" }},["pylsp.plugins.flake8.maxLineLength"] = {default = vim.NIL,description = "Maximum allowed line length for the entirety of this run.",type = { "integer", "null" }},["pylsp.plugins.flake8.perFileIgnores"] = {default = {},description = 'A pairing of filenames and violation codes that defines which violations to ignore in a particular file, for example: `["file_path.py:W305,W304"]`).',items = {type = "string"},type = { "array" }},["pylsp.plugins.flake8.select"] = {default = vim.NIL,description = "List of errors and warnings to enable.",items = {type = "string"},type = { "array", "null" },uniqueItems = true},["pylsp.plugins.jedi.env_vars"] = {default = vim.NIL,description = "Define environment variables for jedi.Script and Jedi.names.",type = { "object", "null" }},["pylsp.plugins.jedi.environment"] = {default = vim.NIL,description = "Define environment for jedi.Script and Jedi.names.",type = { "string", "null" }},["pylsp.plugins.jedi.extra_paths"] = {default = {},description = "Define extra paths for jedi.Script.",items = {type = "string"},type = "array"},["pylsp.plugins.jedi_completion.cache_for"] = {default = { "pandas", "numpy", "tensorflow", "matplotlib" },description = "Modules for which labels and snippets should be cached.",items = {type = "string"},type = "array"},["pylsp.plugins.jedi_completion.eager"] = {default = false,description = "Resolve documentation and detail eagerly.",type = "boolean"},["pylsp.plugins.jedi_completion.enabled"] = {default = true,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.jedi_completion.fuzzy"] = {default = false,description = "Enable fuzzy when requesting autocomplete.",type = "boolean"},["pylsp.plugins.jedi_completion.include_class_objects"] = {default = true,description = "Adds class objects as a separate completion item.",type = "boolean"},["pylsp.plugins.jedi_completion.include_params"] = {default = true,description = "Auto-completes methods and classes with tabstops for each parameter.",type = "boolean"},["pylsp.plugins.jedi_completion.resolve_at_most"] = {default = 25,description = "How many labels and snippets (at most) should be resolved?",type = "number"},["pylsp.plugins.jedi_definition.enabled"] = {default = true,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.jedi_definition.follow_builtin_imports"] = {default = true,description = "If follow_imports is True will decide if it follow builtin imports.",type = "boolean"},["pylsp.plugins.jedi_definition.follow_imports"] = {default = true,description = "The goto call will follow imports.",type = "boolean"},["pylsp.plugins.jedi_hover.enabled"] = {default = true,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.jedi_references.enabled"] = {default = true,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.jedi_signature_help.enabled"] = {default = true,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.jedi_symbols.all_scopes"] = {default = true,description = "If True lists the names of all scopes instead of only the module namespace.",type = "boolean"},["pylsp.plugins.jedi_symbols.enabled"] = {default = true,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.jedi_symbols.include_import_symbols"] = {default = true,description = "If True includes symbols imported from other libraries.",type = "boolean"},["pylsp.plugins.mccabe.enabled"] = {default = true,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.mccabe.threshold"] = {default = 15,description = "The minimum threshold that triggers warnings about cyclomatic complexity.",type = "number"},["pylsp.plugins.preload.enabled"] = {default = true,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.preload.modules"] = {default = {},description = "List of modules to import on startup",items = {type = "string"},type = "array",uniqueItems = true},["pylsp.plugins.pycodestyle.enabled"] = {default = true,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.pycodestyle.exclude"] = {default = {},description = "Exclude files or directories which match these patterns.",items = {type = "string"},type = "array",uniqueItems = true},["pylsp.plugins.pycodestyle.filename"] = {default = {},description = "When parsing directories, only check filenames matching these patterns.",items = {type = "string"},type = "array",uniqueItems = true},["pylsp.plugins.pycodestyle.hangClosing"] = {default = vim.NIL,description = "Hang closing bracket instead of matching indentation of opening bracket's line.",type = { "boolean", "null" }},["pylsp.plugins.pycodestyle.ignore"] = {default = {},description = "Ignore errors and warnings",items = {type = "string"},type = "array",uniqueItems = true},["pylsp.plugins.pycodestyle.indentSize"] = {default = vim.NIL,description = "Set indentation spaces.",type = { "integer", "null" }},["pylsp.plugins.pycodestyle.maxLineLength"] = {default = vim.NIL,description = "Set maximum allowed line length.",type = { "number", "null" }},["pylsp.plugins.pycodestyle.select"] = {default = {},description = "Select errors and warnings",items = {type = "string"},type = "array",uniqueItems = true},["pylsp.plugins.pydocstyle.addIgnore"] = {default = {},description = "Ignore errors and warnings in addition to the specified convention.",items = {type = "string"},type = "array",uniqueItems = true},["pylsp.plugins.pydocstyle.addSelect"] = {default = {},description = "Select errors and warnings in addition to the specified convention.",items = {type = "string"},type = "array",uniqueItems = true},["pylsp.plugins.pydocstyle.convention"] = {default = vim.NIL,description = "Choose the basic list of checked errors by specifying an existing convention.",enum = { "pep257", "numpy", vim.NIL },type = { "string", "null" }},["pylsp.plugins.pydocstyle.enabled"] = {default = false,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.pydocstyle.ignore"] = {default = {},description = "Ignore errors and warnings",items = {type = "string"},type = "array",uniqueItems = true},["pylsp.plugins.pydocstyle.match"] = {default = "(?!test_).*\\.py",description = "Check only files that exactly match the given regular expression; default is to match files that don't start with 'test_' but end with '.py'.",type = "string"},["pylsp.plugins.pydocstyle.matchDir"] = {default = "[^\\.].*",description = "Search only dirs that exactly match the given regular expression; default is to match dirs which do not begin with a dot.",type = "string"},["pylsp.plugins.pydocstyle.select"] = {default = {},description = "Select errors and warnings",items = {type = "string"},type = "array",uniqueItems = true},["pylsp.plugins.pyflakes.enabled"] = {default = true,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.pylint.args"] = {default = {},description = "Arguments to pass to pylint.",items = {type = "string"},type = "array",uniqueItems = false},["pylsp.plugins.pylint.enabled"] = {default = false,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.pylint.executable"] = {default = vim.NIL,description = "Executable to run pylint with. Enabling this will run pylint on unsaved files via stdin. Can slow down workflow. Only works with python3.",type = { "string", "null" }},["pylsp.plugins.rope_completion.eager"] = {default = false,description = "Resolve documentation and detail eagerly.",type = "boolean"},["pylsp.plugins.rope_completion.enabled"] = {default = false,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.plugins.yapf.enabled"] = {default = true,description = "Enable or disable the plugin.",type = "boolean"},["pylsp.rope.extensionModules"] = {default = vim.NIL,description = "Builtin and c-extension modules that are allowed to be imported and inspected by rope.",type = { "null", "string" }},["pylsp.rope.ropeFolder"] = {default = vim.NIL,description = "The name of the folder in which rope stores project configurations and data. Pass `null` for not using such a folder at all.",items = {type = "string"},type = { "null", "array" },uniqueItems = true}},title = "Python Language Server Configuration",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/r-languageserver.lua b/lua/mason/_generated/lsp-schemas/r-languageserver.lua new file mode 100644 index 00000000..27e1bbd4 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/r-languageserver.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["r.lsp.args"] = {default = {},description = "The command line arguments to use when launching R Language Server",type = "array"},["r.lsp.debug"] = {default = false,description = "Debug R Language Server",type = "boolean"},["r.lsp.diagnostics"] = {default = true,description = "Enable Diagnostics",type = "boolean"},["r.lsp.lang"] = {default = "",description = "Override default LANG environment variable",type = "string"},["r.lsp.path"] = {default = "",deprecationMessage = "Will be deprecated. Use r.rpath.windows, r.rpath.mac, or r.rpath.linux instead.",description = "Path to R binary for launching Language Server",markdownDeprecationMessage = "Will be deprecated. Use `#r.rpath.windows#`, `#r.rpath.mac#`, or `#r.rpath.linux#` instead.",type = "string"},["r.lsp.use_stdio"] = {default = false,description = "Use STDIO connection instead of TCP. (Unix/macOS users only)",type = "boolean"},["r.rpath.linux"] = {default = "",description = 'Path to an R executable for Linux. Must be "vanilla" R, not radian etc.!',type = "string"},["r.rpath.mac"] = {default = "",description = 'Path to an R executable for macOS. Must be "vanilla" R, not radian etc.!',type = "string"},["r.rpath.windows"] = {default = "",description = 'Path to an R executable for Windows. Must be "vanilla" R, not radian etc.!',type = "string"}},title = "R LSP Client",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/rescript-lsp.lua b/lua/mason/_generated/lsp-schemas/rescript-lsp.lua new file mode 100644 index 00000000..abceac2a --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/rescript-lsp.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["rescript.settings.askToStartBuild"] = {default = true,description = "Whether you want the extension to prompt for autostarting a ReScript build if a project is opened with no build running.",scope = "language-overridable",type = "boolean"},["rescript.settings.autoRunCodeAnalysis"] = {default = false,description = "Automatically start ReScript's code analysis.",type = "boolean"}},title = "ReScript",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/rome.lua b/lua/mason/_generated/lsp-schemas/rome.lua new file mode 100644 index 00000000..0d3111a3 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/rome.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["rome.analysis.enableCodeActions"] = {default = false,markdownDescription = "Allows rome to compute and provide code actions",type = "boolean"},["rome.analysis.enableDiagnostics"] = {default = false,markdownDescription = "Allows rome to compute and publish diagnostics",type = "boolean"},["rome.formatter.formatWithSyntaxErrors"] = {default = false,examples = { true, false },markdownDescription = "**BETA**: allows the formatter to format code that contains syntax errors",type = "boolean"},["rome.formatter.indentStyle"] = {default = "Tabs",enum = { "Tabs", "Spaces" },markdownEnumDescriptions = { "**BETA**: applies **tabs** while formatting", "**BETA**: applies **spaces** while formatting" },type = "string"},["rome.formatter.lineWidth"] = {default = 80,markdownDescription = "**BETA**: the max width of a single line, the code will have to fit in it",maximum = 320,minimum = 40,type = "number"},["rome.formatter.quoteStyle"] = {default = "Double",enum = { "Double", "Single" },markdownEnumDescriptions = { "**BETA**: applies **double** quotes while formatting", "**BETA**: applies **single** quotes while formatting" },type = "string"},["rome.formatter.spaceQuantity"] = {default = 2,markdownDescription = "**BETA**: applied **only** when choosing **Spaces**, it's the number of spaces applied when printing.",maximum = 12,minimum = 1,type = "number"},["rome.lspBin"] = {default = vim.NIL,markdownDescription = "The rome lsp server executable.",type = { "string", "null" }},["rome.unstable"] = {default = false,markdownDescription = "**BETA**: enables unstable features",type = "boolean"}},title = "Rome",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/rust-analyzer.lua b/lua/mason/_generated/lsp-schemas/rust-analyzer.lua new file mode 100644 index 00000000..ef392089 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/rust-analyzer.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["$generated-end"] = vim.empty_dict(),["$generated-start"] = vim.empty_dict(),["rust-analyzer.assist.expressionFillDefault"] = {default = "todo",enum = { "todo", "default" },enumDescriptions = { "Fill missing expressions with the `todo` macro", "Fill missing expressions with reasonable defaults, `new` or `default` constructors." },markdownDescription = "Placeholder expression to use for missing expressions in assists.",type = "string"},["rust-analyzer.cachePriming.enable"] = {default = true,markdownDescription = "Warm up caches on project load.",type = "boolean"},["rust-analyzer.cachePriming.numThreads"] = {default = 0,markdownDescription = "How many worker threads to handle priming caches. The default `0` means to pick automatically.",maximum = 255,minimum = 0,type = "number"},["rust-analyzer.cargo.autoreload"] = {default = true,markdownDescription = "Automatically refresh project info via `cargo metadata` on\n`Cargo.toml` or `.cargo/config.toml` changes.",type = "boolean"},["rust-analyzer.cargo.buildScripts.enable"] = {default = true,markdownDescription = "Run build scripts (`build.rs`) for more precise code analysis.",type = "boolean"},["rust-analyzer.cargo.buildScripts.overrideCommand"] = {default = vim.NIL,items = {type = "string"},markdownDescription = "Override the command rust-analyzer uses to run build scripts and\nbuild procedural macros. The command is required to output json\nand should therefore include `--message-format=json` or a similar\noption.\n\nBy default, a cargo invocation will be constructed for the configured\ntargets and features, with the following base command line:\n\n```bash\ncargo check --quiet --workspace --message-format=json --all-targets\n```\n.",type = { "null", "array" }},["rust-analyzer.cargo.buildScripts.useRustcWrapper"] = {default = true,markdownDescription = "Use `RUSTC_WRAPPER=rust-analyzer` when running build scripts to\navoid checking unnecessary things.",type = "boolean"},["rust-analyzer.cargo.features"] = {anyOf = { {enum = { "all" },enumDescriptions = { "Pass `--all-features` to cargo" },type = "string"}, {items = {type = "string"},type = "array"} },default = {},markdownDescription = 'List of features to activate.\n\nSet this to `"all"` to pass `--all-features` to cargo.'},["rust-analyzer.cargo.noDefaultFeatures"] = {default = false,markdownDescription = "Whether to pass `--no-default-features` to cargo.",type = "boolean"},["rust-analyzer.cargo.noSysroot"] = {default = false,markdownDescription = "Internal config for debugging, disables loading of sysroot crates.",type = "boolean"},["rust-analyzer.cargo.target"] = {default = vim.NIL,markdownDescription = "Compilation target override (target triple).",type = { "null", "string" }},["rust-analyzer.cargo.unsetTest"] = {default = { "core" },items = {type = "string"},markdownDescription = "Unsets `#[cfg(test)]` for the specified crates.",type = "array"},["rust-analyzer.cargoRunner"] = {default = vim.NIL,description = "Custom cargo runner extension ID.",type = { "null", "string" }},["rust-analyzer.checkOnSave.allTargets"] = {default = true,markdownDescription = "Check all targets and tests (`--all-targets`).",type = "boolean"},["rust-analyzer.checkOnSave.command"] = {default = "check",markdownDescription = "Cargo command to use for `cargo check`.",type = "string"},["rust-analyzer.checkOnSave.enable"] = {default = true,markdownDescription = "Run specified `cargo check` command for diagnostics on save.",type = "boolean"},["rust-analyzer.checkOnSave.extraArgs"] = {default = {},items = {type = "string"},markdownDescription = "Extra arguments for `cargo check`.",type = "array"},["rust-analyzer.checkOnSave.features"] = {anyOf = { {enum = { "all" },enumDescriptions = { "Pass `--all-features` to cargo" },type = "string"}, {items = {type = "string"},type = "array"}, {type = "null"} },default = vim.NIL,markdownDescription = 'List of features to activate. Defaults to\n`#rust-analyzer.cargo.features#`.\n\nSet to `"all"` to pass `--all-features` to Cargo.'},["rust-analyzer.checkOnSave.noDefaultFeatures"] = {default = vim.NIL,markdownDescription = "Whether to pass `--no-default-features` to Cargo. Defaults to\n`#rust-analyzer.cargo.noDefaultFeatures#`.",type = { "null", "boolean" }},["rust-analyzer.checkOnSave.overrideCommand"] = {default = vim.NIL,items = {type = "string"},markdownDescription = "Override the command rust-analyzer uses instead of `cargo check` for\ndiagnostics on save. The command is required to output json and\nshould therefor include `--message-format=json` or a similar option.\n\nIf you're changing this because you're using some tool wrapping\nCargo, you might also want to change\n`#rust-analyzer.cargo.buildScripts.overrideCommand#`.\n\nAn example command would be:\n\n```bash\ncargo check --workspace --message-format=json --all-targets\n```\n.",type = { "null", "array" }},["rust-analyzer.checkOnSave.target"] = {default = vim.NIL,markdownDescription = "Check for a specific target. Defaults to\n`#rust-analyzer.cargo.target#`.",type = { "null", "string" }},["rust-analyzer.completion.autoimport.enable"] = {default = true,markdownDescription = "Toggles the additional completions that automatically add imports when completed.\nNote that your client must specify the `additionalTextEdits` LSP client capability to truly have this feature enabled.",type = "boolean"},["rust-analyzer.completion.autoself.enable"] = {default = true,markdownDescription = "Toggles the additional completions that automatically show method calls and field accesses\nwith `self` prefixed to them when inside a method.",type = "boolean"},["rust-analyzer.completion.callable.snippets"] = {default = "fill_arguments",enum = { "fill_arguments", "add_parentheses", "none" },enumDescriptions = { "Add call parentheses and pre-fill arguments.", "Add call parentheses.", "Do no snippet completions for callables." },markdownDescription = "Whether to add parenthesis and argument snippets when completing function.",type = "string"},["rust-analyzer.completion.postfix.enable"] = {default = true,markdownDescription = "Whether to show postfix snippets like `dbg`, `if`, `not`, etc.",type = "boolean"},["rust-analyzer.completion.privateEditable.enable"] = {default = false,markdownDescription = "Enables completions of private items and fields that are defined in the current workspace even if they are not visible at the current position.",type = "boolean"},["rust-analyzer.completion.snippets.custom"] = {default = {["Arc::new"] = {body = "Arc::new(${receiver})",description = "Put the expression into an `Arc`",postfix = "arc",requires = "std::sync::Arc",scope = "expr"},["Box::pin"] = {body = "Box::pin(${receiver})",description = "Put the expression into a pinned `Box`",postfix = "pinbox",requires = "std::boxed::Box",scope = "expr"},Err = {body = "Err(${receiver})",description = "Wrap the expression in a `Result::Err`",postfix = "err",scope = "expr"},Ok = {body = "Ok(${receiver})",description = "Wrap the expression in a `Result::Ok`",postfix = "ok",scope = "expr"},["Rc::new"] = {body = "Rc::new(${receiver})",description = "Put the expression into an `Rc`",postfix = "rc",requires = "std::rc::Rc",scope = "expr"},Some = {body = "Some(${receiver})",description = "Wrap the expression in an `Option::Some`",postfix = "some",scope = "expr"}},markdownDescription = "Custom completion snippets.",type = "object"},["rust-analyzer.debug.engine"] = {default = "auto",description = "Preferred debug engine.",enum = { "auto", "vadimcn.vscode-lldb", "ms-vscode.cpptools" },markdownEnumDescriptions = { "First try to use [CodeLLDB](https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb), if it's not installed try to use [MS C++ tools](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools).", "Use [CodeLLDB](https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb)", "Use [MS C++ tools](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)" },type = "string"},["rust-analyzer.debug.engineSettings"] = {default = vim.empty_dict(),markdownDescription = 'Optional settings passed to the debug engine. Example: `{ "lldb": { "terminal":"external"} }`',type = "object"},["rust-analyzer.debug.openDebugPane"] = {default = false,markdownDescription = "Whether to open up the `Debug Panel` on debugging start.",type = "boolean"},["rust-analyzer.debug.sourceFileMap"] = {const = "auto",default = {["/rustc/"] = "${env:USERPROFILE}/.rustup/toolchains//lib/rustlib/src/rust"},description = "Optional source file mappings passed to the debug engine.",type = { "object", "string" }},["rust-analyzer.diagnostics.disabled"] = {default = {},items = {type = "string"},markdownDescription = "List of rust-analyzer diagnostics to disable.",type = "array",uniqueItems = true},["rust-analyzer.diagnostics.enable"] = {default = true,markdownDescription = "Whether to show native rust-analyzer diagnostics.",type = "boolean"},["rust-analyzer.diagnostics.experimental.enable"] = {default = false,markdownDescription = "Whether to show experimental rust-analyzer diagnostics that might\nhave more false positives than usual.",type = "boolean"},["rust-analyzer.diagnostics.remapPrefix"] = {default = vim.empty_dict(),markdownDescription = "Map of prefixes to be substituted when parsing diagnostic file paths.\nThis should be the reverse mapping of what is passed to `rustc` as `--remap-path-prefix`.",type = "object"},["rust-analyzer.diagnostics.warningsAsHint"] = {default = {},items = {type = "string"},markdownDescription = "List of warnings that should be displayed with hint severity.\n\nThe warnings will be indicated by faded text or three dots in code\nand will not show up in the `Problems Panel`.",type = "array"},["rust-analyzer.diagnostics.warningsAsInfo"] = {default = {},items = {type = "string"},markdownDescription = "List of warnings that should be displayed with info severity.\n\nThe warnings will be indicated by a blue squiggly underline in code\nand a blue icon in the `Problems Panel`.",type = "array"},["rust-analyzer.files.excludeDirs"] = {default = {},items = {type = "string"},markdownDescription = "These directories will be ignored by rust-analyzer. They are\nrelative to the workspace root, and globs are not supported. You may\nalso need to add the folders to Code's `files.watcherExclude`.",type = "array"},["rust-analyzer.files.watcher"] = {default = "client",markdownDescription = "Controls file watching implementation.",type = "string"},["rust-analyzer.highlightRelated.breakPoints.enable"] = {default = true,markdownDescription = "Enables highlighting of related references while the cursor is on `break`, `loop`, `while`, or `for` keywords.",type = "boolean"},["rust-analyzer.highlightRelated.exitPoints.enable"] = {default = true,markdownDescription = "Enables highlighting of all exit points while the cursor is on any `return`, `?`, `fn`, or return type arrow (`->`).",type = "boolean"},["rust-analyzer.highlightRelated.references.enable"] = {default = true,markdownDescription = "Enables highlighting of related references while the cursor is on any identifier.",type = "boolean"},["rust-analyzer.highlightRelated.yieldPoints.enable"] = {default = true,markdownDescription = "Enables highlighting of all break points for a loop or block context while the cursor is on any `async` or `await` keywords.",type = "boolean"},["rust-analyzer.hover.actions.debug.enable"] = {default = true,markdownDescription = "Whether to show `Debug` action. Only applies when\n`#rust-analyzer.hover.actions.enable#` is set.",type = "boolean"},["rust-analyzer.hover.actions.enable"] = {default = true,markdownDescription = "Whether to show HoverActions in Rust files.",type = "boolean"},["rust-analyzer.hover.actions.gotoTypeDef.enable"] = {default = true,markdownDescription = "Whether to show `Go to Type Definition` action. Only applies when\n`#rust-analyzer.hover.actions.enable#` is set.",type = "boolean"},["rust-analyzer.hover.actions.implementations.enable"] = {default = true,markdownDescription = "Whether to show `Implementations` action. Only applies when\n`#rust-analyzer.hover.actions.enable#` is set.",type = "boolean"},["rust-analyzer.hover.actions.references.enable"] = {default = false,markdownDescription = "Whether to show `References` action. Only applies when\n`#rust-analyzer.hover.actions.enable#` is set.",type = "boolean"},["rust-analyzer.hover.actions.run.enable"] = {default = true,markdownDescription = "Whether to show `Run` action. Only applies when\n`#rust-analyzer.hover.actions.enable#` is set.",type = "boolean"},["rust-analyzer.hover.documentation.enable"] = {default = true,markdownDescription = "Whether to show documentation on hover.",type = "boolean"},["rust-analyzer.hover.links.enable"] = {default = true,markdownDescription = "Use markdown syntax for links in hover.",type = "boolean"},["rust-analyzer.imports.granularity.enforce"] = {default = false,markdownDescription = "Whether to enforce the import granularity setting for all files. If set to false rust-analyzer will try to keep import styles consistent per file.",type = "boolean"},["rust-analyzer.imports.granularity.group"] = {default = "crate",enum = { "preserve", "crate", "module", "item" },enumDescriptions = { "Do not change the granularity of any imports and preserve the original structure written by the developer.", "Merge imports from the same crate into a single use statement. Conversely, imports from different crates are split into separate statements.", "Merge imports from the same module into a single use statement. Conversely, imports from different modules are split into separate statements.", "Flatten imports so that each has its own use statement." },markdownDescription = "How imports should be grouped into use statements.",type = "string"},["rust-analyzer.imports.group.enable"] = {default = true,markdownDescription = "Group inserted imports by the [following order](https://rust-analyzer.github.io/manual.html#auto-import). Groups are separated by newlines.",type = "boolean"},["rust-analyzer.imports.merge.glob"] = {default = true,markdownDescription = "Whether to allow import insertion to merge new imports into single path glob imports like `use std::fmt::*;`.",type = "boolean"},["rust-analyzer.imports.prefix"] = {default = "plain",enum = { "plain", "self", "crate" },enumDescriptions = { "Insert import paths relative to the current module, using up to one `super` prefix if the parent module contains the requested item.", "Insert import paths relative to the current module, using up to one `super` prefix if the parent module contains the requested item. Prefixes `self` in front of the path if it starts with a module.", "Force import paths to be absolute by always starting them with `crate` or the extern crate name they come from." },markdownDescription = "The path structure for newly inserted paths to use.",type = "string"},["rust-analyzer.inlayHints.bindingModeHints.enable"] = {default = false,markdownDescription = "Whether to show inlay type hints for binding modes.",type = "boolean"},["rust-analyzer.inlayHints.chainingHints.enable"] = {default = true,markdownDescription = "Whether to show inlay type hints for method chains.",type = "boolean"},["rust-analyzer.inlayHints.closingBraceHints.enable"] = {default = true,markdownDescription = "Whether to show inlay hints after a closing `}` to indicate what item it belongs to.",type = "boolean"},["rust-analyzer.inlayHints.closingBraceHints.minLines"] = {default = 25,markdownDescription = "Minimum number of lines required before the `}` until the hint is shown (set to 0 or 1\nto always show them).",minimum = 0,type = "integer"},["rust-analyzer.inlayHints.closureReturnTypeHints.enable"] = {default = "never",enum = { "always", "never", "with_block" },enumDescriptions = { "Always show type hints for return types of closures.", "Never show type hints for return types of closures.", "Only show type hints for return types of closures with blocks." },markdownDescription = "Whether to show inlay type hints for return types of closures.",type = "string"},["rust-analyzer.inlayHints.lifetimeElisionHints.enable"] = {default = "never",enum = { "always", "never", "skip_trivial" },enumDescriptions = { "Always show lifetime elision hints.", "Never show lifetime elision hints.", "Only show lifetime elision hints if a return type is involved." },markdownDescription = "Whether to show inlay type hints for elided lifetimes in function signatures.",type = "string"},["rust-analyzer.inlayHints.lifetimeElisionHints.useParameterNames"] = {default = false,markdownDescription = "Whether to prefer using parameter names as the name for elided lifetime hints if possible.",type = "boolean"},["rust-analyzer.inlayHints.maxLength"] = {default = 25,markdownDescription = "Maximum length for inlay hints. Set to null to have an unlimited length.",minimum = 0,type = { "null", "integer" }},["rust-analyzer.inlayHints.parameterHints.enable"] = {default = true,markdownDescription = "Whether to show function parameter name inlay hints at the call\nsite.",type = "boolean"},["rust-analyzer.inlayHints.reborrowHints.enable"] = {default = "never",enum = { "always", "never", "mutable" },enumDescriptions = { "Always show reborrow hints.", "Never show reborrow hints.", "Only show mutable reborrow hints." },markdownDescription = "Whether to show inlay type hints for compiler inserted reborrows.",type = "string"},["rust-analyzer.inlayHints.renderColons"] = {default = true,markdownDescription = "Whether to render leading colons for type hints, and trailing colons for parameter hints.",type = "boolean"},["rust-analyzer.inlayHints.typeHints.enable"] = {default = true,markdownDescription = "Whether to show inlay type hints for variables.",type = "boolean"},["rust-analyzer.inlayHints.typeHints.hideClosureInitialization"] = {default = false,markdownDescription = "Whether to hide inlay type hints for `let` statements that initialize to a closure.\nOnly applies to closures with blocks, same as `#rust-analyzer.inlayHints.closureReturnTypeHints.enable#`.",type = "boolean"},["rust-analyzer.inlayHints.typeHints.hideNamedConstructor"] = {default = false,markdownDescription = "Whether to hide inlay type hints for constructors.",type = "boolean"},["rust-analyzer.joinLines.joinAssignments"] = {default = true,markdownDescription = "Join lines merges consecutive declaration and initialization of an assignment.",type = "boolean"},["rust-analyzer.joinLines.joinElseIf"] = {default = true,markdownDescription = "Join lines inserts else between consecutive ifs.",type = "boolean"},["rust-analyzer.joinLines.removeTrailingComma"] = {default = true,markdownDescription = "Join lines removes trailing commas.",type = "boolean"},["rust-analyzer.joinLines.unwrapTrivialBlock"] = {default = true,markdownDescription = "Join lines unwraps trivial blocks.",type = "boolean"},["rust-analyzer.lens.debug.enable"] = {default = true,markdownDescription = "Whether to show `Debug` lens. Only applies when\n`#rust-analyzer.lens.enable#` is set.",type = "boolean"},["rust-analyzer.lens.enable"] = {default = true,markdownDescription = "Whether to show CodeLens in Rust files.",type = "boolean"},["rust-analyzer.lens.forceCustomCommands"] = {default = true,markdownDescription = "Internal config: use custom client-side commands even when the\nclient doesn't set the corresponding capability.",type = "boolean"},["rust-analyzer.lens.implementations.enable"] = {default = true,markdownDescription = "Whether to show `Implementations` lens. Only applies when\n`#rust-analyzer.lens.enable#` is set.",type = "boolean"},["rust-analyzer.lens.references.adt.enable"] = {default = false,markdownDescription = "Whether to show `References` lens for Struct, Enum, and Union.\nOnly applies when `#rust-analyzer.lens.enable#` is set.",type = "boolean"},["rust-analyzer.lens.references.enumVariant.enable"] = {default = false,markdownDescription = "Whether to show `References` lens for Enum Variants.\nOnly applies when `#rust-analyzer.lens.enable#` is set.",type = "boolean"},["rust-analyzer.lens.references.method.enable"] = {default = false,markdownDescription = "Whether to show `Method References` lens. Only applies when\n`#rust-analyzer.lens.enable#` is set.",type = "boolean"},["rust-analyzer.lens.references.trait.enable"] = {default = false,markdownDescription = "Whether to show `References` lens for Trait.\nOnly applies when `#rust-analyzer.lens.enable#` is set.",type = "boolean"},["rust-analyzer.lens.run.enable"] = {default = true,markdownDescription = "Whether to show `Run` lens. Only applies when\n`#rust-analyzer.lens.enable#` is set.",type = "boolean"},["rust-analyzer.linkedProjects"] = {default = {},items = {type = { "string", "object" }},markdownDescription = "Disable project auto-discovery in favor of explicitly specified set\nof projects.\n\nElements must be paths pointing to `Cargo.toml`,\n`rust-project.json`, or JSON objects in `rust-project.json` format.",type = "array"},["rust-analyzer.lru.capacity"] = {default = vim.NIL,markdownDescription = "Number of syntax trees rust-analyzer keeps in memory. Defaults to 128.",minimum = 0,type = { "null", "integer" }},["rust-analyzer.notifications.cargoTomlNotFound"] = {default = true,markdownDescription = "Whether to show `can't find Cargo.toml` error message.",type = "boolean"},["rust-analyzer.procMacro.attributes.enable"] = {default = true,markdownDescription = "Expand attribute macros. Requires `#rust-analyzer.procMacro.enable#` to be set.",type = "boolean"},["rust-analyzer.procMacro.enable"] = {default = true,markdownDescription = "Enable support for procedural macros, implies `#rust-analyzer.cargo.buildScripts.enable#`.",type = "boolean"},["rust-analyzer.procMacro.ignored"] = {default = vim.empty_dict(),markdownDescription = "These proc-macros will be ignored when trying to expand them.\n\nThis config takes a map of crate names with the exported proc-macro names to ignore as values.",type = "object"},["rust-analyzer.procMacro.server"] = {default = vim.NIL,markdownDescription = "Internal config, path to proc-macro server executable (typically,\nthis is rust-analyzer itself, but we override this in tests).",type = { "null", "string" }},["rust-analyzer.restartServerOnConfigChange"] = {default = false,markdownDescription = "Whether to restart the server automatically when certain settings that require a restart are changed.",type = "boolean"},["rust-analyzer.runnableEnv"] = {anyOf = { {type = "null"}, {items = {properties = {env = {description = 'Variables in form of { "key": "value"}',type = "object"},mask = {description = "Runnable name mask",type = "string"}},type = "object"},type = "array"}, {description = 'Variables in form of { "key": "value"}',type = "object"} },default = vim.NIL,markdownDescription = "Environment variables passed to the runnable launched using `Test` or `Debug` lens or `rust-analyzer.run` command."},["rust-analyzer.runnables.command"] = {default = vim.NIL,markdownDescription = "Command to be executed instead of 'cargo' for runnables.",type = { "null", "string" }},["rust-analyzer.runnables.extraArgs"] = {default = {},items = {type = "string"},markdownDescription = "Additional arguments to be passed to cargo for runnables such as\ntests or binaries. For example, it may be `--release`.",type = "array"},["rust-analyzer.rustc.source"] = {default = vim.NIL,markdownDescription = 'Path to the Cargo.toml of the rust compiler workspace, for usage in rustc_private\nprojects, or "discover" to try to automatically find it if the `rustc-dev` component\nis installed.\n\nAny project which uses rust-analyzer with the rustcPrivate\ncrates must set `[package.metadata.rust-analyzer] rustc_private=true` to use it.\n\nThis option does not take effect until rust-analyzer is restarted.',type = { "null", "string" }},["rust-analyzer.rustfmt.extraArgs"] = {default = {},items = {type = "string"},markdownDescription = "Additional arguments to `rustfmt`.",type = "array"},["rust-analyzer.rustfmt.overrideCommand"] = {default = vim.NIL,items = {type = "string"},markdownDescription = "Advanced option, fully override the command rust-analyzer uses for\nformatting.",type = { "null", "array" }},["rust-analyzer.rustfmt.rangeFormatting.enable"] = {default = false,markdownDescription = "Enables the use of rustfmt's unstable range formatting command for the\n`textDocument/rangeFormatting` request. The rustfmt option is unstable and only\navailable on a nightly build.",type = "boolean"},["rust-analyzer.semanticHighlighting.strings.enable"] = {default = true,markdownDescription = "Use semantic tokens for strings.\n\nIn some editors (e.g. vscode) semantic tokens override other highlighting grammars.\nBy disabling semantic tokens for strings, other grammars can be used to highlight\ntheir contents.",type = "boolean"},["rust-analyzer.server.extraEnv"] = {additionalProperties = {type = { "string", "number" }},default = vim.NIL,markdownDescription = "Extra environment variables that will be passed to the rust-analyzer executable. Useful for passing e.g. `RA_LOG` for debugging.",type = { "null", "object" }},["rust-analyzer.server.path"] = {default = vim.NIL,markdownDescription = "Path to rust-analyzer executable (points to bundled binary by default).",scope = "machine-overridable",type = { "null", "string" }},["rust-analyzer.signatureInfo.detail"] = {default = "full",enum = { "full", "parameters" },enumDescriptions = { "Show the entire signature.", "Show only the parameters." },markdownDescription = "Show full signature of the callable. Only shows parameters if disabled.",type = "string"},["rust-analyzer.signatureInfo.documentation.enable"] = {default = true,markdownDescription = "Show documentation.",type = "boolean"},["rust-analyzer.trace.extension"] = {default = false,description = "Enable logging of VS Code extensions itself.",type = "boolean"},["rust-analyzer.trace.server"] = {default = "off",description = "Trace requests to the rust-analyzer (this is usually overly verbose and not recommended for regular users).",enum = { "off", "messages", "verbose" },enumDescriptions = { "No traces", "Error only", "Full log" },scope = "window",type = "string"},["rust-analyzer.typing.autoClosingAngleBrackets.enable"] = {default = false,markdownDescription = "Whether to insert closing angle brackets when typing an opening angle bracket of a generic argument list.",type = "boolean"},["rust-analyzer.workspace.symbol.search.kind"] = {default = "only_types",enum = { "only_types", "all_symbols" },enumDescriptions = { "Search for types only.", "Search for all symbols kinds." },markdownDescription = "Workspace symbol search kind.",type = "string"},["rust-analyzer.workspace.symbol.search.limit"] = {default = 128,markdownDescription = "Limits the number of items returned from a workspace symbol search (Defaults to 128).\nSome clients like vs-code issue new searches on result filtering and don't require all results to be returned in the initial search.\nOther clients requires all results upfront and might require a higher limit.",minimum = 0,type = "integer"},["rust-analyzer.workspace.symbol.search.scope"] = {default = "workspace",enum = { "workspace", "workspace_and_dependencies" },enumDescriptions = { "Search in current workspace only.", "Search in current workspace and dependencies." },markdownDescription = "Workspace symbol search scope.",type = "string"}},title = "Rust Analyzer",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/solargraph.lua b/lua/mason/_generated/lsp-schemas/solargraph.lua new file mode 100644 index 00000000..7cbb67fb --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/solargraph.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["solargraph.autoformat"] = {default = false,description = "Enable automatic formatting while typing (WARNING: experimental)",enum = { true, false },type = { "boolean" }},["solargraph.bundlerPath"] = {default = "bundle",description = "Path to the bundle executable, defaults to 'bundle'. Needs to be an absolute path for the 'bundle' exec/shim",scope = "resource",type = "string"},["solargraph.checkGemVersion"] = {default = true,description = "Automatically check if a new version of the Solargraph gem is available.",enum = { true, false },type = "boolean"},["solargraph.commandPath"] = {default = "solargraph",description = "Path to the solargraph command. Set this to an absolute path to select from multiple installed Ruby versions.",scope = "resource",type = "string"},["solargraph.completion"] = {default = true,description = "Enable completion",enum = { true, false },type = { "boolean" }},["solargraph.definitions"] = {default = true,description = "Enable definitions (go to, etc.)",enum = { true, false },type = { "boolean" }},["solargraph.diagnostics"] = {default = false,description = "Enable diagnostics",enum = { true, false },type = { "boolean" }},["solargraph.externalServer"] = {default = {host = "localhost",port = 7658},description = "The host and port to use for external transports. (Ignored for stdio and socket transports.)",properties = {host = {default = "localhost",type = "string"},port = {default = 7658,type = "integer"}},type = "object"},["solargraph.folding"] = {default = true,description = "Enable folding ranges",type = "boolean"},["solargraph.formatting"] = {default = false,description = "Enable document formatting",enum = { true, false },type = { "boolean" }},["solargraph.hover"] = {default = true,description = "Enable hover",enum = { true, false },type = { "boolean" }},["solargraph.logLevel"] = {default = "warn",description = "Level of debug info to log. `warn` is least and `debug` is most.",enum = { "warn", "info", "debug" },type = "string"},["solargraph.references"] = {default = true,description = "Enable finding references",enum = { true, false },type = { "boolean" }},["solargraph.rename"] = {default = true,description = "Enable symbol renaming",enum = { true, false },type = { "boolean" }},["solargraph.symbols"] = {default = true,description = "Enable symbols",enum = { true, false },type = { "boolean" }},["solargraph.transport"] = {default = "socket",description = "The type of transport to use.",enum = { "socket", "stdio", "external" },type = "string"},["solargraph.useBundler"] = {default = false,description = "Use `bundle exec` to run solargraph. (If this is true, the solargraph.commandPath setting is ignored.)",type = "boolean"}},title = "Solargraph settings for Ruby"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/sorbet.lua b/lua/mason/_generated/lsp-schemas/sorbet.lua new file mode 100644 index 00000000..7c611020 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/sorbet.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["sorbet.configFilePatterns"] = {default = { "**/sorbet/config", "**/Gemfile", "**/Gemfile.lock" },description = "List of workspace file patterns that contribute to Sorbet's configuration. Changes to any of those files should trigger a restart of any actively running Sorbet language server.",items = {type = "string"},type = "array"},["sorbet.enabled"] = {description = "Enable Sorbet Ruby IDE features",type = "boolean"},["sorbet.lspConfigs"] = {default = { {command = { "bundle", "exec", "srb", "typecheck", "--lsp" },cwd = "${workspaceFolder}",description = "Stable Sorbet Ruby IDE features",id = "stable",name = "Sorbet"}, {command = { "bundle", "exec", "srb", "typecheck", "--lsp", "--enable-all-beta-lsp-features" },cwd = "${workspaceFolder}",description = "Beta Sorbet Ruby IDE features",id = "beta",name = "Sorbet (Beta)"}, {command = { "bundle", "exec", "srb", "typecheck", "--lsp", "--enable-all-experimental-lsp-features" },cwd = "${workspaceFolder}",description = "Experimental Sorbet Ruby IDE features (warning: crashy, for developers only)",id = "experimental",name = "Sorbet (Experimental)"} },description = "Standard Ruby LSP configurations. If you commit your VSCode settings to source control, you probably want to commit *this* setting, not `sorbet.userLspConfigs`.",items = {properties = {command = {description = "Full command line to invoke sorbet",items = {type = "string"},minItems = 1,type = "array"},cwd = {default = "${workspaceFolder}",description = "Current working directory when launching sorbet",format = "uri-reference",type = "string"},description = {description = "Long-form human-readable description of configuration",type = "string"},id = {description = "See `sorbet.selectedLspConfigId`",type = "string"},name = {description = "Short-form human-readable label for configuration",type = "string"}},required = { "id", "description", "command" },type = "object"},type = "array"},["sorbet.revealOutputOnError"] = {default = false,description = "Show the extension output window on errors.",type = "boolean"},["sorbet.selectedLspConfigId"] = {description = "The default configuration to use from `sorbet.userLspConfigs` or `sorbet.lspConfigs`. If unset, defaults to the first item in `sorbet.userLspConfigs` or `sorbet.lspConfigs`.",type = "string"},["sorbet.userLspConfigs"] = {default = {},description = "Custom user LSP configurations that supplement `sorbet.lspConfigs` (and override configurations with the same id). If you commit your VSCode settings to source control, you probably want to commit `sorbet.lspConfigs`, not this value.",items = {default = {command = { "bundle", "exec", "srb", "typecheck", "--your", "--flags", "--here" },cwd = "${workspaceFolder}",description = "A longer description of this Sorbet Configuration for use in hover text",id = "my-custom-configuration",name = "My Custom Sorbet Configuration"},properties = {command = {description = "Full command line to invoke sorbet",items = {type = "string"},minItems = 1,type = "array"},cwd = {default = "${workspaceFolder}",description = "Current working directory when launching sorbet",format = "uri-reference",type = "string"},description = {description = "Long-form human-readable description of configuration",type = "string"},id = {description = "See `sorbet.selectedLspConfigId`",type = "string"},name = {description = "Short-form human-readable label for configuration",type = "string"}},required = { "id", "description", "command" },type = "object"},type = "array"}},title = "Sorbet"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/stylelint-lsp.lua b/lua/mason/_generated/lsp-schemas/stylelint-lsp.lua new file mode 100644 index 00000000..3612361c --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/stylelint-lsp.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["stylelintplus.autoFixOnFormat"] = {default = false,description = "Auto-fix on format request.",scope = "resource",type = "boolean"},["stylelintplus.autoFixOnSave"] = {default = false,description = "Auto-fix and format on save.",scope = "resource",type = "boolean"},["stylelintplus.config"] = {default = vim.NIL,description = "Stylelint config. If config and configFile are unset, stylelint will automatically look for a config file.",scope = "resource",type = "object"},["stylelintplus.configFile"] = {default = vim.NIL,description = "Stylelint config file. If config and configFile are unset, stylelint will automatically look for a config file.",scope = "resource",type = "string"},["stylelintplus.configOverrides"] = {default = vim.NIL,description = "Stylelint config overrides. These will be applied on top of the config, configFile, or auto-discovered config file loaded by stylelint.",scope = "resource",type = "object"},["stylelintplus.cssInJs"] = {default = false,description = "Run stylelint on javascript/typescript files.",scope = "window",type = "boolean"},["stylelintplus.enable"] = {default = true,description = "If false, stylelint will not validate the file.",scope = "resource",type = "boolean"},["stylelintplus.filetypes"] = {default = { "css", "less", "postcss", "sass", "scss", "sugarss", "vue", "wxss" },description = "Filetypes that coc-stylelintplus will lint.",items = {type = "string"},scope = "window",type = "array"},["stylelintplus.trace.server"] = {default = "off",description = "Capture trace messages from the server.",enum = { "off", "messages", "verbose" },scope = "window",type = "string"},["stylelintplus.validateOnSave"] = {default = false,description = "Validate after saving. Automatically enabled if autoFixOnSave is enabled.",scope = "resource",type = "boolean"},["stylelintplus.validateOnType"] = {default = true,description = "Validate after making changes.",scope = "resource",type = "boolean"}},title = "stylelintplus",type = "object"} \ No newline at end of file diff --git a/lua/mason/_generated/lsp-schemas/svelte-language-server.lua b/lua/mason/_generated/lsp-schemas/svelte-language-server.lua new file mode 100644 index 00000000..f39296f7 --- /dev/null +++ b/lua/mason/_generated/lsp-schemas/svelte-language-server.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["svelte.ask-to-enable-ts-plugin"] = {default = true,description = "Ask on startup to enable the TypeScript plugin.",title = "Ask to enable TypeScript Svelte plugin",type = "boolean"},["svelte.enable-ts-plugin"] = {default = false,description = "Enables a TypeScript plugin which provides intellisense for Svelte files inside TS/JS files.",title = "Enable TypeScript Svelte plugin",type = "boolean"},["svelte.language-server.ls-path"] = {description = "- You normally don't set this - Path to the language server executable. If you installed the \"svelte-language-server\" npm package, it's within there at \"bin/server.js\". Path can be either relative to your workspace root or absolute. Set this only if you want to use a custom version of the language server. This will then also use the workspace version of TypeScript. This setting can only be changed in user settings for security reasons.",scope = "application",title = "Language Server Path",type = "string"},["svelte.language-server.port"] = {default = -1,description = "- You normally don't set this - At which port to spawn the language server. Can be used for attaching to the process for debugging / profiling. If you experience crashes due to \"port already in use\", try setting the port. -1 = default port is used.",title = "Language Server Port",type = "number"},["svelte.language-server.runtime"] = {description = "- You normally don't need this - Path to the node executable to use to spawn the language server. This is useful when you depend on native modules such as node-sass as without this they will run in the context of vscode, meaning node version mismatch is likely. Minimum required node version is 12.17. This setting can only be changed in user settings for security reasons.",scope = "application",title = "Language Server Runtime",type = "string"},["svelte.plugin.css.colorPresentations.enable"] = {default = true,description = "Enable color picker for CSS",title = "CSS: Color Picker",type = "boolean"},["svelte.plugin.css.completions.emmet"] = {default = true,description = "Enable emmet auto completions for CSS",title = "CSS: Include Emmet Completions",type = "boolean"},["svelte.plugin.css.completions.enable"] = {default = true,description = "Enable auto completions for CSS",title = "CSS: Auto Complete",type = "boolean"},["svelte.plugin.css.diagnostics.enable"] = {default = true,description = "Enable diagnostic messages for CSS",title = "CSS: Diagnostics",type = "boolean"},["svelte.plugin.css.documentColors.enable"] = {default = true,description = "Enable document colors for CSS",title = "CSS: Document Colors",type = "boolean"},["svelte.plugin.css.documentSymbols.enable"] = {default = true,description = "Enable document symbols for CSS",title = "CSS: Symbols in Outline",type = "boolean"},["svelte.plugin.css.enable"] = {default = true,description = "Enable the CSS plugin",title = "CSS",type = "boolean"},["svelte.plugin.css.globals"] = {default = "",description = "Which css files should be checked for global variables (`--global-var: value;`). These variables are added to the css completions. String of comma-separated file paths or globs relative to workspace root.",title = "CSS: Global Files",type = "string"},["svelte.plugin.css.hover.enable"] = {default = true,description = "Enable hover info for CSS",title = "CSS: Hover Info",type = "boolean"},["svelte.plugin.css.selectionRange.enable"] = {default = true,description = "Enable selection range for CSS",title = "CSS: SelectionRange",type = "boolean"},["svelte.plugin.html.completions.emmet"] = {default = true,description = "Enable emmet auto completions for HTML",title = "HTML: Include Emmet Completions",type = "boolean"},["svelte.plugin.html.completions.enable"] = {default = true,description = "Enable auto completions for HTML",title = "HTML: Auto Complete",type = "boolean"},["svelte.plugin.html.documentSymbols.enable"] = {default = true,description = "Enable document symbols for HTML",title = "HTML: Symbols in Outline",type = "boolean"},["svelte.plugin.html.enable"] = {default = true,description = "Enable the HTML plugin",title = "HTML",type = "boolean"},["svelte.plugin.html.hover.enable"] = {default = true,description = "Enable hover info for HTML",title = "HTML: Hover Info",type = "boolean"},["svelte.plugin.html.linkedEditing.enable"] = {default = true,description = "Enable Linked Editing for HTML",title = "HTML: Linked Editing",type = "boolean"},["svelte.plugin.html.tagComplete.enable"] = {default = true,description = "Enable HTML tag auto closing",title = "HTML: Tag Auto Closing",type = "boolean"},["svelte.plugin.svelte.codeActions.enable"] = {default = true,description = "Enable Code Actions for Svelte",title = "Svelte: Code Actions",type = "boolean"},["svelte.plugin.svelte.compilerWarnings"] = {additionalProperties = {enum = { "ignore", "error" },type = "string"},default = vim.empty_dict(),description = "Svelte compiler warning codes to ignore or to treat as errors. Example: { 'css-unused-selector': 'ignore', 'unused-export-let': 'error'}",title = "Svelte: Compiler Warnings Settings",type = "object"},["svelte.plugin.svelte.completions.enable"] = {default = true,description = "Enable auto completions for Svelte",title = "Svelte: Completions",type = "boolean"},["svelte.plugin.svelte.defaultScriptLanguage"] = {default = "none",description = "The default language to use when generating new script tags",enum = { "none", "ts" },title = "Svelte: Default Script Language",type = "string"},["svelte.plugin.svelte.diagnostics.enable"] = {default = true,description = "Enable diagnostic messages for Svelte",title = "Svelte: Diagnostics",type = "boolean"},["svelte.plugin.svelte.enable"] = {default = true,description = "Enable the Svelte plugin",title = "Svelte",type = "boolean"},["svelte.plugin.svelte.format.config.printWidth"] = {default = 80,description = "Maximum line width after which code is tried to be broken up. This is a Prettier core option. If you have the Prettier extension installed, this option is ignored and the corresponding option of that extension is used instead. This option is also ignored if there's any kind of configuration file, for example a `.prettierrc` file.",title = "Svelte Format: Print Width",type = "number"},["svelte.plugin.svelte.format.config.singleQuote"] = {default = false,description = "Use single quotes instead of double quotes, where possible. This is a Prettier core option. If you have the Prettier extension installed, this option is ignored and the corresponding option of that extension is used instead. This option is also ignored if there's any kind of configuration file, for example a `.prettierrc` file.",title = "Svelte Format: Quotes",type = "boolean"},["svelte.plugin.svelte.format.config.svelteAllowShorthand"] = {default = true,description = "Option to enable/disable component attribute shorthand if attribute name and expression are the same. This option is ignored if there's any kind of configuration file, for example a `.prettierrc` file.",title = "Svelte Format: Allow Shorthand",type = "boolean"},["svelte.plugin.svelte.format.config.svelteBracketNewLine"] = {default = true,description = "Put the `>` of a multiline element on a new line. This option is ignored if there's any kind of configuration file, for example a `.prettierrc` file.",title = "Svelte Format: Bracket New Line",type = "boolean"},["svelte.plugin.svelte.format.config.svelteIndentScriptAndStyle"] = {default = true,description = "Whether or not to indent code inside `