aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/_generated
diff options
context:
space:
mode:
authorSeth Daniel <github.com@sethdaniel.org>2022-03-06 15:48:45 -0600
committerGitHub <noreply@github.com>2022-03-06 22:48:45 +0100
commit6e6d75b7a446a13ec2bdaaf7934c071936ad3d8c (patch)
treecd619ed19eacf31f19a2dfe041a01921f59022f0 /lua/nvim-lsp-installer/_generated
parentSupport libc detection (#527) (diff)
downloadmason-6e6d75b7a446a13ec2bdaaf7934c071936ad3d8c.tar
mason-6e6d75b7a446a13ec2bdaaf7934c071936ad3d8c.tar.gz
mason-6e6d75b7a446a13ec2bdaaf7934c071936ad3d8c.tar.bz2
mason-6e6d75b7a446a13ec2bdaaf7934c071936ad3d8c.tar.lz
mason-6e6d75b7a446a13ec2bdaaf7934c071936ad3d8c.tar.xz
mason-6e6d75b7a446a13ec2bdaaf7934c071936ad3d8c.tar.zst
mason-6e6d75b7a446a13ec2bdaaf7934c071936ad3d8c.zip
add perlnavigator (#522)
Diffstat (limited to 'lua/nvim-lsp-installer/_generated')
-rw-r--r--lua/nvim-lsp-installer/_generated/filetype_map.lua1
-rw-r--r--lua/nvim-lsp-installer/_generated/metadata.lua3
-rw-r--r--lua/nvim-lsp-installer/_generated/schemas/perlnavigator.lua3
3 files changed, 7 insertions, 0 deletions
diff --git a/lua/nvim-lsp-installer/_generated/filetype_map.lua b/lua/nvim-lsp-installer/_generated/filetype_map.lua
index d7d46752..621de451 100644
--- a/lua/nvim-lsp-installer/_generated/filetype_map.lua
+++ b/lua/nvim-lsp-installer/_generated/filetype_map.lua
@@ -94,6 +94,7 @@ return {
opencl = { "opencl_ls" },
org = { "ltex" },
os = { "bsl_ls" },
+ perl = { "perlnavigator" },
php = { "intelephense", "phpactor", "psalm", "tailwindcss" },
plaintex = { "ltex" },
postcss = { "tailwindcss" },
diff --git a/lua/nvim-lsp-installer/_generated/metadata.lua b/lua/nvim-lsp-installer/_generated/metadata.lua
index d07ea455..b7cf53a3 100644
--- a/lua/nvim-lsp-installer/_generated/metadata.lua
+++ b/lua/nvim-lsp-installer/_generated/metadata.lua
@@ -181,6 +181,9 @@ return {
opencl_ls = {
filetypes = { "opencl" }
},
+ perlnavigator = {
+ filetypes = { "perl" }
+ },
phpactor = {
filetypes = { "php" }
},
diff --git a/lua/nvim-lsp-installer/_generated/schemas/perlnavigator.lua b/lua/nvim-lsp-installer/_generated/schemas/perlnavigator.lua
new file mode 100644
index 00000000..88f5467e
--- /dev/null
+++ b/lua/nvim-lsp-installer/_generated/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.includePaths"] = {default = {},description = "Array of paths added to @INC. You can use $workspaceRoot 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.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