From b67dba027f10eb91a78ecc126dff9c82be672b34 Mon Sep 17 00:00:00 2001 From: "William Boman (automated)" Date: Tue, 8 Mar 2022 13:22:22 +0000 Subject: run autogen_metadata.lua --- lua/nvim-lsp-installer/_generated/schemas/rust_analyzer.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua') diff --git a/lua/nvim-lsp-installer/_generated/schemas/rust_analyzer.lua b/lua/nvim-lsp-installer/_generated/schemas/rust_analyzer.lua index 89328c84..7f539d35 100644 --- a/lua/nvim-lsp-installer/_generated/schemas/rust_analyzer.lua +++ b/lua/nvim-lsp-installer/_generated/schemas/rust_analyzer.lua @@ -1,3 +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.allowMergingIntoGlobImports"] = {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.assist.exprFillDefault"] = {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 for missing expressions in assists.",type = "string"},["rust-analyzer.assist.importEnforceGranularity"] = {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.assist.importGranularity"] = {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.assist.importGroup"] = {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.assist.importPrefix"] = {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.cache.warmup"] = {default = true,markdownDescription = "Warm up caches on project load.",type = "boolean"},["rust-analyzer.callInfo.full"] = {default = true,markdownDescription = "Show function name and docs in parameter hints.",type = "boolean"},["rust-analyzer.cargo.allFeatures"] = {default = false,markdownDescription = "Activate all available features (`--all-features`).",type = "boolean"},["rust-analyzer.cargo.autoreload"] = {default = true,markdownDescription = "Automatically refresh project info via `cargo metadata` on\n`Cargo.toml` changes.",type = "boolean"},["rust-analyzer.cargo.features"] = {default = {},items = {type = "string"},markdownDescription = "List of features to activate.",type = "array"},["rust-analyzer.cargo.noDefaultFeatures"] = {default = false,markdownDescription = "Do not activate the `default` feature.",type