A simple CPU rendered GUI IDE experience.
bendn 12 days ago
parent 62fa007 · commit 6e48bb5
-rw-r--r--complete694
-rw-r--r--complete_35667
-rw-r--r--diag522
-rw-r--r--dist/fonts/CascadiaCodeNF.ttf (renamed from CascadiaCodeNF.ttf)bin2893648 -> 2893648 bytes
-rw-r--r--dist/fonts/CascadiaCodeNFBold.ttf (renamed from CascadiaCodeNFBold.ttf)bin2894232 -> 2894232 bytes
-rw-r--r--dist/fonts/CascadiaCodeNFBoldItalic.ttf (renamed from CascadiaCodeNFBoldItalic.ttf)bin2756024 -> 2756024 bytes
-rw-r--r--dist/fonts/CascadiaCodeNFItalic.ttf (renamed from CascadiaCodeNFItalic.ttf)bin2755568 -> 2755568 bytes
-rw-r--r--inlay1163
-rw-r--r--ra-support595
-rw-r--r--src/main.rs8
10 files changed, 4 insertions, 38645 deletions
diff --git a/complete b/complete
deleted file mode 100644
index 48e8b86..0000000
--- a/complete
+++ /dev/null
@@ -1,694 +0,0 @@
-{
- "isIncomplete": true,
- "items": [
- {
- "detail": "Alignment",
- "documentation": {
- "kind": "markdown",
- "value": "Possible alignments returned by `Formatter::align`"
- },
- "filterText": "Alignment",
- "kind": 13,
- "label": "Alignment",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Alignment",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "Arguments<'_>",
- "documentation": {
- "kind": "markdown",
- "value": "This structure represents a safely precompiled version of a format string\nand its arguments. This cannot be generated at runtime because it cannot\nsafely be done, so no constructors are given and the fields are private\nto prevent modification.\n\nThe [`format_args!`] macro will safely create an instance of this structure.\nThe macro validates the format string at compile-time so usage of the\n[`write()`] and [`format()`] functions can be safely performed.\n\nYou can use the `Arguments<'a>` that [`format_args!`] returns in `Debug`\nand `Display` contexts as seen below. The example also shows that `Debug`\nand `Display` format to the same thing: the interpolated format string\nin `format_args!`.\n\n```rust\nlet debug = format!(\"{:?}\", format_args!(\"{} foo {:?}\", 1, 2));\nlet display = format!(\"{}\", format_args!(\"{} foo {:?}\", 1, 2));\nassert_eq!(\"1 foo 2\", display);\nassert_eq!(display, debug);\n```\n\n[`format()`]: ../../std/fmt/fn.format.html"
- },
- "filterText": "Arguments",
- "kind": 22,
- "label": "Arguments",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Arguments",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "documentation": {
- "kind": "markdown",
- "value": "`b` formatting.\n\nThe `Binary` trait should format its output as a number in binary.\n\nFor primitive signed integers ([`i8`] to [`i128`], and [`isize`]),\nnegative values are formatted as the two’s complement representation.\n\nThe alternate flag, `#`, adds a `0b` in front of the output.\n\nFor more information on formatters, see [the module-level documentation][module].\n\n[module]: ../../std/fmt/index.html\n\n# Examples\n\nBasic usage with [`i32`]:\n\n```rust\nlet x = 42; // 42 is '101010' in binary\n\nassert_eq!(format!(\"{x:b}\"), \"101010\");\nassert_eq!(format!(\"{x:#b}\"), \"0b101010\");\n\nassert_eq!(format!(\"{:b}\", -16), \"11111111111111111111111111110000\");\n```\n\nImplementing `Binary` on a type:\n\n```rust\nuse std::fmt;\n\nstruct Length(i32);\n\nimpl fmt::Binary for Length {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n let val = self.0;\n\n fmt::Binary::fmt(&val, f) // delegate to i32's implementation\n }\n}\n\nlet l = Length(107);\n\nassert_eq!(format!(\"l as binary is: {l:b}\"), \"l as binary is: 1101011\");\n\nassert_eq!(\n // Note that the `0b` prefix added by `#` is included in the total width, so we\n // need to add two to correctly display all 32 bits.\n format!(\"l as binary is: {l:#034b}\"),\n \"l as binary is: 0b00000000000000000000000001101011\"\n);\n```"
- },
- "filterText": "Binary",
- "kind": 8,
- "label": "Binary",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Binary",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "documentation": {
- "kind": "markdown",
- "value": "`?` formatting.\n\n`Debug` should format the output in a programmer-facing, debugging context.\n\nGenerally speaking, you should just `derive` a `Debug` implementation.\n\nWhen used with the alternate format specifier `#?`, the output is pretty-printed.\n\nFor more information on formatters, see [the module-level documentation][module].\n\n[module]: ../../std/fmt/index.html\n\nThis trait can be used with `#[derive]` if all fields implement `Debug`. When\n`derive`d for structs, it will use the name of the `struct`, then `{`, then a\ncomma-separated list of each field's name and `Debug` value, then `}`. For\n`enum`s, it will use the name of the variant and, if applicable, `(`, then the\n`Debug` values of the fields, then `)`.\n\n# Stability\n\nDerived `Debug` formats are not stable, and so may change with future Rust\nversions. Additionally, `Debug` implementations of types provided by the\nstandard library (`std`, `core`, `alloc`, etc.) are not stable, and\nmay also change with future Rust versions.\n\n# Examples\n\nDeriving an implementation:\n\n```rust\n#[derive(Debug)]\nstruct Point {\n x: i32,\n y: i32,\n}\n\nlet origin = Point { x: 0, y: 0 };\n\nassert_eq!(\n format!(\"The origin is: {origin:?}\"),\n \"The origin is: Point { x: 0, y: 0 }\",\n);\n```\n\nManually implementing:\n\n```rust\nuse std::fmt;\n\nstruct Point {\n x: i32,\n y: i32,\n}\n\nimpl fmt::Debug for Point {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n f.debug_struct(\"Point\")\n .field(\"x\", &self.x)\n .field(\"y\", &self.y)\n .finish()\n }\n}\n\nlet origin = Point { x: 0, y: 0 };\n\nassert_eq!(\n format!(\"The origin is: {origin:?}\"),\n \"The origin is: Point { x: 0, y: 0 }\",\n);\n```\n\nThere are a number of helper methods on the [`Formatter`] struct to help you with manual\nimplementations, such as [`debug_struct`].\n\n[`debug_struct`]: Formatter::debug_struct\n\nTypes that do not wish to use the standard suite of debug representations\nprovided by the `Formatter` trait (`debug_struct`, `debug_tuple`,\n`debug_list`, `debug_set`, `debug_map`) can do something totally custom by\nmanually writing an arbitrary representation to the `Formatter`.\n\n```rust\nimpl fmt::Debug for Point {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n write!(f, \"Point [{} {}]\", self.x, self.y)\n }\n}\n```\n\n`Debug` implementations using either `derive` or the debug builder API\non [`Formatter`] support pretty-printing using the alternate flag: `{:#?}`.\n\nPretty-printing with `#?`:\n\n```rust\n#[derive(Debug)]\nstruct Point {\n x: i32,\n y: i32,\n}\n\nlet origin = Point { x: 0, y: 0 };\n\nlet expected = \"The origin is: Point {\n x: 0,\n y: 0,\n}\";\nassert_eq!(format!(\"The origin is: {origin:#?}\"), expected);\n```"
- },
- "filterText": "Debug",
- "kind": 8,
- "label": "Debug(alias {:?})",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Debug",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "macro Debug",
- "documentation": {
- "kind": "markdown",
- "value": "Derive macro generating an impl of the trait `Debug`."
- },
- "filterText": "Debug",
- "kind": 3,
- "label": "Debug",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Debug",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "DebugAsHex",
- "documentation": {
- "kind": "markdown",
- "value": "Specifies whether the [`Debug`] trait should use lower-/upper-case\nhexadecimal or normal integers."
- },
- "filterText": "DebugAsHex",
- "kind": 13,
- "label": "DebugAsHex",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "DebugAsHex",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "DebugList<'_, '_>",
- "documentation": {
- "kind": "markdown",
- "value": "A struct to help with [`fmt::Debug`](Debug) implementations.\n\nThis is useful when you wish to output a formatted list of items as a part\nof your [`Debug::fmt`] implementation.\n\nThis can be constructed by the [`Formatter::debug_list`] method.\n\n# Examples\n\n```rust\nuse std::fmt;\n\nstruct Foo(Vec<i32>);\n\nimpl fmt::Debug for Foo {\n fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {\n fmt.debug_list().entries(self.0.iter()).finish()\n }\n}\n\nassert_eq!(\n format!(\"{:?}\", Foo(vec![10, 11])),\n \"[10, 11]\",\n);\n```"
- },
- "filterText": "DebugList",
- "kind": 22,
- "label": "DebugList",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "DebugList",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "DebugMap<'_, '_>",
- "documentation": {
- "kind": "markdown",
- "value": "A struct to help with [`fmt::Debug`](Debug) implementations.\n\nThis is useful when you wish to output a formatted map as a part of your\n[`Debug::fmt`] implementation.\n\nThis can be constructed by the [`Formatter::debug_map`] method.\n\n# Examples\n\n```rust\nuse std::fmt;\n\nstruct Foo(Vec<(String, i32)>);\n\nimpl fmt::Debug for Foo {\n fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {\n fmt.debug_map().entries(self.0.iter().map(|&(ref k, ref v)| (k, v))).finish()\n }\n}\n\nassert_eq!(\n format!(\"{:?}\", Foo(vec![(\"A\".to_string(), 10), (\"B\".to_string(), 11)])),\n r#\"{\"A\": 10, \"B\": 11}\"#,\n);\n```"
- },
- "filterText": "DebugMap",
- "kind": 22,
- "label": "DebugMap",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "DebugMap",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "DebugSet<'_, '_>",
- "documentation": {
- "kind": "markdown",
- "value": "A struct to help with [`fmt::Debug`](Debug) implementations.\n\nThis is useful when you wish to output a formatted set of items as a part\nof your [`Debug::fmt`] implementation.\n\nThis can be constructed by the [`Formatter::debug_set`] method.\n\n# Examples\n\n```rust\nuse std::fmt;\n\nstruct Foo(Vec<i32>);\n\nimpl fmt::Debug for Foo {\n fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {\n fmt.debug_set().entries(self.0.iter()).finish()\n }\n}\n\nassert_eq!(\n format!(\"{:?}\", Foo(vec![10, 11])),\n \"{10, 11}\",\n);\n```"
- },
- "filterText": "DebugSet",
- "kind": 22,
- "label": "DebugSet",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "DebugSet",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "DebugStruct<'_, '_>",
- "documentation": {
- "kind": "markdown",
- "value": "A struct to help with [`fmt::Debug`](Debug) implementations.\n\nThis is useful when you wish to output a formatted struct as a part of your\n[`Debug::fmt`] implementation.\n\nThis can be constructed by the [`Formatter::debug_struct`] method.\n\n# Examples\n\n```rust\nuse std::fmt;\n\nstruct Foo {\n bar: i32,\n baz: String,\n}\n\nimpl fmt::Debug for Foo {\n fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {\n fmt.debug_struct(\"Foo\")\n .field(\"bar\", &self.bar)\n .field(\"baz\", &self.baz)\n .finish()\n }\n}\n\nassert_eq!(\n format!(\"{:?}\", Foo { bar: 10, baz: \"Hello World\".to_string() }),\n r#\"Foo { bar: 10, baz: \"Hello World\" }\"#,\n);\n```"
- },
- "filterText": "DebugStruct",
- "kind": 22,
- "label": "DebugStruct",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "DebugStruct",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "DebugTuple<'_, '_>",
- "documentation": {
- "kind": "markdown",
- "value": "A struct to help with [`fmt::Debug`](Debug) implementations.\n\nThis is useful when you wish to output a formatted tuple as a part of your\n[`Debug::fmt`] implementation.\n\nThis can be constructed by the [`Formatter::debug_tuple`] method.\n\n# Examples\n\n```rust\nuse std::fmt;\n\nstruct Foo(i32, String);\n\nimpl fmt::Debug for Foo {\n fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {\n fmt.debug_tuple(\"Foo\")\n .field(&self.0)\n .field(&self.1)\n .finish()\n }\n}\n\nassert_eq!(\n format!(\"{:?}\", Foo(10, \"Hello World\".to_string())),\n r#\"Foo(10, \"Hello World\")\"#,\n);\n```"
- },
- "filterText": "DebugTuple",
- "kind": 22,
- "label": "DebugTuple",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "DebugTuple",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "documentation": {
- "kind": "markdown",
- "value": "Format trait for an empty format, `{}`.\n\nImplementing this trait for a type will automatically implement the\n[`ToString`][tostring] trait for the type, allowing the usage\nof the [`.to_string()`][tostring_function] method. Prefer implementing\nthe `Display` trait for a type, rather than [`ToString`][tostring].\n\n`Display` is similar to [`Debug`], but `Display` is for user-facing\noutput, and so cannot be derived.\n\nFor more information on formatters, see [the module-level documentation][module].\n\n[module]: ../../std/fmt/index.html\n[tostring]: ../../std/string/trait.ToString.html\n[tostring_function]: ../../std/string/trait.ToString.html#tymethod.to_string\n\n# Completeness and parseability\n\n`Display` for a type might not necessarily be a lossless or complete representation of the type.\nIt may omit internal state, precision, or other information the type does not consider important\nfor user-facing output, as determined by the type. As such, the output of `Display` might not be\npossible to parse, and even if it is, the result of parsing might not exactly match the original\nvalue.\n\nHowever, if a type has a lossless `Display` implementation whose output is meant to be\nconveniently machine-parseable and not just meant for human consumption, then the type may wish\nto accept the same format in `FromStr`, and document that usage. Having both `Display` and\n`FromStr` implementations where the result of `Display` cannot be parsed with `FromStr` may\nsurprise users.\n\n# Internationalization\n\nBecause a type can only have one `Display` implementation, it is often preferable\nto only implement `Display` when there is a single most \"obvious\" way that\nvalues can be formatted as text. This could mean formatting according to the\n\"invariant\" culture and \"undefined\" locale, or it could mean that the type\ndisplay is designed for a specific culture/locale, such as developer logs.\n\nIf not all values have a justifiably canonical textual format or if you want\nto support alternative formats not covered by the standard set of possible\n[formatting traits], the most flexible approach is display adapters: methods\nlike [`str::escape_default`] or [`Path::display`] which create a wrapper\nimplementing `Display` to output the specific display format.\n\n[formatting traits]: ../../std/fmt/index.html#formatting-traits\n[`Path::display`]: ../../std/path/struct.Path.html#method.display\n\n# Examples\n\nImplementing `Display` on a type:\n\n```rust\nuse std::fmt;\n\nstruct Point {\n x: i32,\n y: i32,\n}\n\nimpl fmt::Display for Point {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n write!(f, \"({}, {})\", self.x, self.y)\n }\n}\n\nlet origin = Point { x: 0, y: 0 };\n\nassert_eq!(format!(\"The origin is: {origin}\"), \"The origin is: (0, 0)\");\n```"
- },
- "filterText": "Display",
- "kind": 8,
- "label": "Display(alias {})",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Display",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "Error",
- "documentation": {
- "kind": "markdown",
- "value": "The error type which is returned from formatting a message into a stream.\n\nThis type does not support transmission of an error other than that an error\noccurred. This is because, despite the existence of this error,\nstring formatting is considered an infallible operation.\n`fmt()` implementors should not return this `Error` unless they received it from their\n[`Formatter`]. The only time your code should create a new instance of this\nerror is when implementing `fmt::Write`, in order to cancel the formatting operation when\nwriting to the underlying stream fails.\n\nAny extra information must be arranged to be transmitted through some other means,\nsuch as storing it in a field to be consulted after the formatting operation has been\ncancelled. (For example, this is how [`std::io::Write::write_fmt()`] propagates IO errors\nduring writing.)\n\nThis type, `fmt::Error`, should not be\nconfused with [`std::io::Error`] or [`std::error::Error`], which you may also\nhave in scope.\n\n[`std::io::Error`]: ../../std/io/struct.Error.html\n[`std::io::Write::write_fmt()`]: ../../std/io/trait.Write.html#method.write_fmt\n[`std::error::Error`]: ../../std/error/trait.Error.html\n\n# Examples\n\n```rust\nuse std::fmt::{self, write};\n\nlet mut output = String::new();\nif let Err(fmt::Error) = write(&mut output, format_args!(\"Hello {}!\", \"world\")) {\n panic!(\"An error occurred\");\n}\n```"
- },
- "filterText": "Error",
- "kind": 22,
- "label": "Error",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Error",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "Formatter<'_>",
- "documentation": {
- "kind": "markdown",
- "value": "Configuration for formatting.\n\nA `Formatter` represents various options related to formatting. Users do not\nconstruct `Formatter`s directly; a mutable reference to one is passed to\nthe `fmt` method of all formatting traits, like [`Debug`] and [`Display`].\n\nTo interact with a `Formatter`, you'll call various methods to change the\nvarious options related to formatting. For examples, please see the\ndocumentation of the methods defined on `Formatter` below."
- },
- "filterText": "Formatter",
- "kind": 22,
- "label": "Formatter",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Formatter",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "FormattingOptions",
- "documentation": {
- "kind": "markdown",
- "value": "Options for formatting.\n\n`FormattingOptions` is a [`Formatter`] without an attached [`Write`] trait.\nIt is mainly used to construct `Formatter` instances."
- },
- "filterText": "FormattingOptions",
- "kind": 22,
- "label": "FormattingOptions",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "FormattingOptions",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "FromFn<{unknown}>",
- "documentation": {
- "kind": "markdown",
- "value": "Implements [`fmt::Debug`] and [`fmt::Display`] using a function.\n\nCreated with [`from_fn`]."
- },
- "filterText": "FromFn",
- "kind": 22,
- "label": "FromFn",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "FromFn",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "documentation": {
- "kind": "markdown",
- "value": "`e` formatting.\n\nThe `LowerExp` trait should format its output in scientific notation with a lower-case `e`.\n\nFor more information on formatters, see [the module-level documentation][module].\n\n[module]: ../../std/fmt/index.html\n\n# Examples\n\nBasic usage with `f64`:\n\n```rust\nlet x = 42.0; // 42.0 is '4.2e1' in scientific notation\n\nassert_eq!(format!(\"{x:e}\"), \"4.2e1\");\n```\n\nImplementing `LowerExp` on a type:\n\n```rust\nuse std::fmt;\n\nstruct Length(i32);\n\nimpl fmt::LowerExp for Length {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n let val = f64::from(self.0);\n fmt::LowerExp::fmt(&val, f) // delegate to f64's implementation\n }\n}\n\nlet l = Length(100);\n\nassert_eq!(\n format!(\"l in scientific notation is: {l:e}\"),\n \"l in scientific notation is: 1e2\"\n);\n\nassert_eq!(\n format!(\"l in scientific notation is: {l:05e}\"),\n \"l in scientific notation is: 001e2\"\n);\n```"
- },
- "filterText": "LowerExp",
- "kind": 8,
- "label": "LowerExp",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "LowerExp",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "documentation": {
- "kind": "markdown",
- "value": "`x` formatting.\n\nThe `LowerHex` trait should format its output as a number in hexadecimal, with `a` through `f`\nin lower case.\n\nFor primitive signed integers (`i8` to `i128`, and `isize`),\nnegative values are formatted as the two’s complement representation.\n\nThe alternate flag, `#`, adds a `0x` in front of the output.\n\nFor more information on formatters, see [the module-level documentation][module].\n\n[module]: ../../std/fmt/index.html\n\n# Examples\n\nBasic usage with `i32`:\n\n```rust\nlet y = 42; // 42 is '2a' in hex\n\nassert_eq!(format!(\"{y:x}\"), \"2a\");\nassert_eq!(format!(\"{y:#x}\"), \"0x2a\");\n\nassert_eq!(format!(\"{:x}\", -16), \"fffffff0\");\n```\n\nImplementing `LowerHex` on a type:\n\n```rust\nuse std::fmt;\n\nstruct Length(i32);\n\nimpl fmt::LowerHex for Length {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n let val = self.0;\n\n fmt::LowerHex::fmt(&val, f) // delegate to i32's implementation\n }\n}\n\nlet l = Length(9);\n\nassert_eq!(format!(\"l as hex is: {l:x}\"), \"l as hex is: 9\");\n\nassert_eq!(format!(\"l as hex is: {l:#010x}\"), \"l as hex is: 0x00000009\");\n```"
- },
- "filterText": "LowerHex",
- "kind": 8,
- "label": "LowerHex",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "LowerHex",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "documentation": {
- "kind": "markdown",
- "value": "`o` formatting.\n\nThe `Octal` trait should format its output as a number in base-8.\n\nFor primitive signed integers (`i8` to `i128`, and `isize`),\nnegative values are formatted as the two’s complement representation.\n\nThe alternate flag, `#`, adds a `0o` in front of the output.\n\nFor more information on formatters, see [the module-level documentation][module].\n\n[module]: ../../std/fmt/index.html\n\n# Examples\n\nBasic usage with `i32`:\n\n```rust\nlet x = 42; // 42 is '52' in octal\n\nassert_eq!(format!(\"{x:o}\"), \"52\");\nassert_eq!(format!(\"{x:#o}\"), \"0o52\");\n\nassert_eq!(format!(\"{:o}\", -16), \"37777777760\");\n```\n\nImplementing `Octal` on a type:\n\n```rust\nuse std::fmt;\n\nstruct Length(i32);\n\nimpl fmt::Octal for Length {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n let val = self.0;\n\n fmt::Octal::fmt(&val, f) // delegate to i32's implementation\n }\n}\n\nlet l = Length(9);\n\nassert_eq!(format!(\"l as octal is: {l:o}\"), \"l as octal is: 11\");\n\nassert_eq!(format!(\"l as octal is: {l:#06o}\"), \"l as octal is: 0o0011\");\n```"
- },
- "filterText": "Octal",
- "kind": 8,
- "label": "Octal",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Octal",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "documentation": {
- "kind": "markdown",
- "value": "`p` formatting.\n\nThe `Pointer` trait should format its output as a memory location. This is commonly presented\nas hexadecimal. For more information on formatters, see [the module-level documentation][module].\n\nPrinting of pointers is not a reliable way to discover how Rust programs are implemented.\nThe act of reading an address changes the program itself, and may change how the data is represented\nin memory, and may affect which optimizations are applied to the code.\n\nThe printed pointer values are not guaranteed to be stable nor unique identifiers of objects.\nRust allows moving values to different memory locations, and may reuse the same memory locations\nfor different purposes.\n\nThere is no guarantee that the printed value can be converted back to a pointer.\n\n[module]: ../../std/fmt/index.html\n\n# Examples\n\nBasic usage with `&i32`:\n\n```rust\nlet x = &42;\n\nlet address = format!(\"{x:p}\"); // this produces something like '0x7f06092ac6d0'\n```\n\nImplementing `Pointer` on a type:\n\n```rust\nuse std::fmt;\n\nstruct Length(i32);\n\nimpl fmt::Pointer for Length {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n // use `as` to convert to a `*const T`, which implements Pointer, which we can use\n\n let ptr = self as *const Self;\n fmt::Pointer::fmt(&ptr, f)\n }\n}\n\nlet l = Length(42);\n\nprintln!(\"l is in memory here: {l:p}\");\n\nlet l_ptr = format!(\"{l:018p}\");\nassert_eq!(l_ptr.len(), 18);\nassert_eq!(&l_ptr[..2], \"0x\");\n```"
- },
- "filterText": "Pointer",
- "kind": 8,
- "label": "Pointer",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Pointer",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "documentation": {
- "kind": "markdown",
- "value": "The type returned by formatter methods.\n\n# Examples\n\n```rust\nuse std::fmt;\n\n#[derive(Debug)]\nstruct Triangle {\n a: f32,\n b: f32,\n c: f32\n}\n\nimpl fmt::Display for Triangle {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n write!(f, \"({}, {}, {})\", self.a, self.b, self.c)\n }\n}\n\nlet pythagorean_triple = Triangle { a: 3.0, b: 4.0, c: 5.0 };\n\nassert_eq!(format!(\"{pythagorean_triple}\"), \"(3, 4, 5)\");\n```"
- },
- "filterText": "Result",
- "kind": 22,
- "label": "Result",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Result",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "Sign",
- "documentation": {
- "kind": "markdown",
- "value": "The signedness of a [`Formatter`] (or of a [`FormattingOptions`])."
- },
- "filterText": "Sign",
- "kind": 13,
- "label": "Sign",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Sign",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "documentation": {
- "kind": "markdown",
- "value": "`E` formatting.\n\nThe `UpperExp` trait should format its output in scientific notation with an upper-case `E`.\n\nFor more information on formatters, see [the module-level documentation][module].\n\n[module]: ../../std/fmt/index.html\n\n# Examples\n\nBasic usage with `f64`:\n\n```rust\nlet x = 42.0; // 42.0 is '4.2E1' in scientific notation\n\nassert_eq!(format!(\"{x:E}\"), \"4.2E1\");\n```\n\nImplementing `UpperExp` on a type:\n\n```rust\nuse std::fmt;\n\nstruct Length(i32);\n\nimpl fmt::UpperExp for Length {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n let val = f64::from(self.0);\n fmt::UpperExp::fmt(&val, f) // delegate to f64's implementation\n }\n}\n\nlet l = Length(100);\n\nassert_eq!(\n format!(\"l in scientific notation is: {l:E}\"),\n \"l in scientific notation is: 1E2\"\n);\n\nassert_eq!(\n format!(\"l in scientific notation is: {l:05E}\"),\n \"l in scientific notation is: 001E2\"\n);\n```"
- },
- "filterText": "UpperExp",
- "kind": 8,
- "label": "UpperExp",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "UpperExp",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "documentation": {
- "kind": "markdown",
- "value": "`X` formatting.\n\nThe `UpperHex` trait should format its output as a number in hexadecimal, with `A` through `F`\nin upper case.\n\nFor primitive signed integers (`i8` to `i128`, and `isize`),\nnegative values are formatted as the two’s complement representation.\n\nThe alternate flag, `#`, adds a `0x` in front of the output.\n\nFor more information on formatters, see [the module-level documentation][module].\n\n[module]: ../../std/fmt/index.html\n\n# Examples\n\nBasic usage with `i32`:\n\n```rust\nlet y = 42; // 42 is '2A' in hex\n\nassert_eq!(format!(\"{y:X}\"), \"2A\");\nassert_eq!(format!(\"{y:#X}\"), \"0x2A\");\n\nassert_eq!(format!(\"{:X}\", -16), \"FFFFFFF0\");\n```\n\nImplementing `UpperHex` on a type:\n\n```rust\nuse std::fmt;\n\nstruct Length(i32);\n\nimpl fmt::UpperHex for Length {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n let val = self.0;\n\n fmt::UpperHex::fmt(&val, f) // delegate to i32's implementation\n }\n}\n\nlet l = Length(i32::MAX);\n\nassert_eq!(format!(\"l as hex is: {l:X}\"), \"l as hex is: 7FFFFFFF\");\n\nassert_eq!(format!(\"l as hex is: {l:#010X}\"), \"l as hex is: 0x7FFFFFFF\");\n```"
- },
- "filterText": "UpperHex",
- "kind": 8,
- "label": "UpperHex",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "UpperHex",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "documentation": {
- "kind": "markdown",
- "value": "A trait for writing or formatting into Unicode-accepting buffers or streams.\n\nThis trait only accepts UTF-8–encoded data and is not [flushable]. If you only\nwant to accept Unicode and you don't need flushing, you should implement this trait;\notherwise you should implement [`std::io::Write`].\n\n[`std::io::Write`]: ../../std/io/trait.Write.html\n[flushable]: ../../std/io/trait.Write.html#tymethod.flush"
- },
- "filterText": "Write",
- "kind": 8,
- "label": "Write",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "Write",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "fn(Arguments<'_>) -> String",
- "documentation": {
- "kind": "markdown",
- "value": "Takes an [`Arguments`] struct and returns the resulting formatted string.\n\nThe [`Arguments`] instance can be created with the [`format_args!`] macro.\n\n# Examples\n\nBasic usage:\n\n```rust\nuse std::fmt;\n\nlet s = fmt::format(format_args!(\"Hello, {}!\", \"world\"));\nassert_eq!(s, \"Hello, world!\");\n```\n\nPlease note that using [`format!`] might be preferable.\nExample:\n\n```rust\nlet s = format!(\"Hello, {}!\", \"world\");\nassert_eq!(s, \"Hello, world!\");\n```\n\n[`format_args!`]: core::format_args\n[`format!`]: crate::format"
- },
- "filterText": "format",
- "kind": 3,
- "label": "format",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "format",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "fn(F) -> FromFn<F>",
- "documentation": {
- "kind": "markdown",
- "value": "Creates a type whose [`fmt::Debug`] and [`fmt::Display`] impls are provided with the function\n`f`.\n\n# Examples\n\n```rust\n#![feature(debug_closure_helpers)]\nuse std::fmt;\n\nlet value = 'a';\nassert_eq!(format!(\"{}\", value), \"a\");\nassert_eq!(format!(\"{:?}\", value), \"'a'\");\n\nlet wrapped = fmt::from_fn(|f| write!(f, \"{value:?}\"));\nassert_eq!(format!(\"{}\", wrapped), \"'a'\");\nassert_eq!(format!(\"{:?}\", wrapped), \"'a'\");\n```"
- },
- "filterText": "from_fn",
- "kind": 3,
- "label": "from_fn",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "from_fn",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- },
- {
- "detail": "fn(&mut (dyn Write + 'static), Arguments<'_>) -> Result<(), Error>",
- "documentation": {
- "kind": "markdown",
- "value": "Takes an output stream and an `Arguments` struct that can be precompiled with\nthe `format_args!` macro.\n\nThe arguments will be formatted according to the specified format string\ninto the output stream provided.\n\n# Examples\n\nBasic usage:\n\n```rust\nuse std::fmt;\n\nlet mut output = String::new();\nfmt::write(&mut output, format_args!(\"Hello {}!\", \"world\"))\n .expect(\"Error occurred while trying to write in String\");\nassert_eq!(output, \"Hello world!\");\n```\n\nPlease note that using [`write!`] might be preferable. Example:\n\n```rust\nuse std::fmt::Write;\n\nlet mut output = String::new();\nwrite!(&mut output, \"Hello {}!\", \"world\")\n .expect(\"Error occurred while trying to write in String\");\nassert_eq!(output, \"Hello world!\");\n```\n\n[`write!`]: crate::write!"
- },
- "filterText": "write",
- "kind": 3,
- "label": "write",
- "preselect": true,
- "sortText": "7fffffff",
- "textEdit": {
- "newText": "write",
- "range": {
- "end": {
- "character": 14,
- "line": 1
- },
- "start": {
- "character": 14,
- "line": 1
- }
- }
- }
- }
- ]
-} \ No newline at end of file
diff --git a/complete_ b/complete_
deleted file mode 100644
index 62f39ca..0000000
--- a/complete_
+++ /dev/null
@@ -1,35667 +0,0 @@
-{
- "isIncomplete": true,
- "items": [
- {
- "label": "try_from_fn_result!(…)",
- "labelDetails": {
- "detail": "(use car::try_from_fn_result)",
- "description": "proc_macro try_from_fn_result"
- },
- "kind": 3,
- "detail": "proc_macro try_from_fn_result",
- "sortText": "80000000",
- "filterText": "try_from_fn_result!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "try_from_fn_result!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "bGu2GXp3Ess0vmVvodyHSOlD2N0=",
- "imports": [
- {
- "full_import_path": "car::try_from_fn_result"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "panic_const_async_fn_resumed()",
- "labelDetails": {
- "detail": "(use core::panicking::panic_const::panic_const_async_fn_resumed)",
- "description": "pub const fn panic_const_async_fn_resumed() -> !"
- },
- "kind": 3,
- "detail": "pub const fn panic_const_async_fn_resumed() -> !",
- "sortText": "80000000",
- "filterText": "panic_const_async_fn_resumed",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "panic_const_async_fn_resumed()$0"
- },
- "data": {
- "for_ref": false,
- "hash": "OLhjdN4ZZNZcFOD+fFLhw07o7R0=",
- "imports": [
- {
- "full_import_path": "core::panicking::panic_const::panic_const_async_fn_resumed"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "panic_const_async_gen_fn_resumed_drop()",
- "labelDetails": {
- "detail": "(use core::panicking::panic_const::panic_const_async_gen_fn_resumed_drop)",
- "description": "pub const fn panic_const_async_gen_fn_resumed_drop() -> !"
- },
- "kind": 3,
- "detail": "pub const fn panic_const_async_gen_fn_resumed_drop() -> !",
- "sortText": "80000000",
- "filterText": "panic_const_async_gen_fn_resumed_drop",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "panic_const_async_gen_fn_resumed_drop()$0"
- },
- "data": {
- "for_ref": false,
- "hash": "JQyywePIIWH6Fly+KHgGbJJJIlM=",
- "imports": [
- {
- "full_import_path": "core::panicking::panic_const::panic_const_async_gen_fn_resumed_drop"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "panic_const_async_gen_fn_resumed_panic()",
- "labelDetails": {
- "detail": "(use core::panicking::panic_const::panic_const_async_gen_fn_resumed_panic)",
- "description": "pub const fn panic_const_async_gen_fn_resumed_panic() -> !"
- },
- "kind": 3,
- "detail": "pub const fn panic_const_async_gen_fn_resumed_panic() -> !",
- "sortText": "80000000",
- "filterText": "panic_const_async_gen_fn_resumed_panic",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "panic_const_async_gen_fn_resumed_panic()$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Jf9iurzcBtnpV3nlK6FPhialTuM=",
- "imports": [
- {
- "full_import_path": "core::panicking::panic_const::panic_const_async_gen_fn_resumed_panic"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FoldingRangeRequest",
- "labelDetails": {
- "detail": "(use lsp_types::request::FoldingRangeRequest)",
- "description": "FoldingRangeRequest"
- },
- "kind": 13,
- "detail": "FoldingRangeRequest",
- "sortText": "80000000",
- "filterText": "FoldingRangeRequest",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FoldingRangeRequest"
- },
- "data": {
- "for_ref": false,
- "hash": "2flYw4v8Hb88ce8pV5Y7jdlYtuE=",
- "imports": [
- {
- "full_import_path": "lsp_types::request::FoldingRangeRequest"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkspaceFoldersRequest",
- "labelDetails": {
- "detail": "(use lsp_types::request::WorkspaceFoldersRequest)",
- "description": "WorkspaceFoldersRequest"
- },
- "kind": 13,
- "detail": "WorkspaceFoldersRequest",
- "sortText": "80000000",
- "filterText": "WorkspaceFoldersRequest",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceFoldersRequest"
- },
- "data": {
- "for_ref": false,
- "hash": "DjopSf1RoPdl2D80bd4c3einkZQ=",
- "imports": [
- {
- "full_import_path": "lsp_types::request::WorkspaceFoldersRequest"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FairMutexGuard",
- "labelDetails": {
- "detail": "(use parking_lot::FairMutexGuard)"
- },
- "kind": 22,
- "sortText": "80000000",
- "filterText": "FairMutexGuard",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FairMutexGuard"
- },
- "data": {
- "for_ref": false,
- "hash": "IcE0+1vQbCls2iBFodoYsEvRYIU=",
- "imports": [
- {
- "full_import_path": "parking_lot::FairMutexGuard"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "const_fair_mutex(…)",
- "labelDetails": {
- "detail": "(use parking_lot::const_fair_mutex)",
- "description": "pub const fn const_fair_mutex<T>(val: T) -> FairMutex<T>"
- },
- "kind": 3,
- "detail": "pub const fn const_fair_mutex<T>(val: T) -> FairMutex<T>",
- "sortText": "80000000",
- "filterText": "const_fair_mutex",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "const_fair_mutex(${1:val})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "N3YpMXwh3uK7ZPMRnToahMX1JZE=",
- "imports": [
- {
- "full_import_path": "parking_lot::const_fair_mutex"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "replace_with_or_default_and_return(…)",
- "labelDetails": {
- "detail": "(use replace_with::replace_with_or_default_and_return)",
- "description": "pub fn replace_with_or_default_and_return<T, U, F>(dest: &mut T, f: F) -> U where T: Default, F: FnOnce(T) -> (U, T),"
- },
- "kind": 3,
- "detail": "pub fn replace_with_or_default_and_return<T, U, F>(dest: &mut T, f: F) -> U where T: Default, F: FnOnce(T) -> (U, T),",
- "sortText": "80000000",
- "filterText": "replace_with_or_default_and_return",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "replace_with_or_default_and_return(${1:dest}, ${2:f})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "WlP4x12odlfhUJ/zdaW+FkKGjt4=",
- "imports": [
- {
- "full_import_path": "replace_with::replace_with_or_default_and_return"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_MM_FROUND_CUR_DIRECTION",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_MM_FROUND_CUR_DIRECTION)",
- "description": "i32"
- },
- "kind": 21,
- "detail": "i32",
- "sortText": "80000000",
- "filterText": "_MM_FROUND_CUR_DIRECTION",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_MM_FROUND_CUR_DIRECTION"
- },
- "data": {
- "for_ref": false,
- "hash": "bBPIww9BFQyGgxsNrpKQ+2hMeP8=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_MM_FROUND_CUR_DIRECTION"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_MM_FROUND_NO_EXC",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_MM_FROUND_NO_EXC)",
- "description": "i32"
- },
- "kind": 21,
- "detail": "i32",
- "sortText": "80000000",
- "filterText": "_MM_FROUND_NO_EXC",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_MM_FROUND_NO_EXC"
- },
- "data": {
- "for_ref": false,
- "hash": "U4Z5q9VFBNN3Py/YPLrqgUnRI6Q=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_MM_FROUND_NO_EXC"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_MM_FROUND_RINT",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_MM_FROUND_RINT)",
- "description": "i32"
- },
- "kind": 21,
- "detail": "i32",
- "sortText": "80000000",
- "filterText": "_MM_FROUND_RINT",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_MM_FROUND_RINT"
- },
- "data": {
- "for_ref": false,
- "hash": "tNl12JF3UhDYrvRgipHfv4fYyFU=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_MM_FROUND_RINT"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_MM_FROUND_TO_NEAREST_INT",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_MM_FROUND_TO_NEAREST_INT)",
- "description": "i32"
- },
- "kind": 21,
- "detail": "i32",
- "sortText": "80000000",
- "filterText": "_MM_FROUND_TO_NEAREST_INT",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_MM_FROUND_TO_NEAREST_INT"
- },
- "data": {
- "for_ref": false,
- "hash": "ocBhA8+ghTeL7GmlveJrTWYW/cY=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_MM_FROUND_TO_NEAREST_INT"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_MM_FROUND_TO_POS_INF",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_MM_FROUND_TO_POS_INF)",
- "description": "i32"
- },
- "kind": 21,
- "detail": "i32",
- "sortText": "80000000",
- "filterText": "_MM_FROUND_TO_POS_INF",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_MM_FROUND_TO_POS_INF"
- },
- "data": {
- "for_ref": false,
- "hash": "uZYJw+g9yU0j/cg6QSlzi5MepKg=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_MM_FROUND_TO_POS_INF"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_fcmadd_round_pch(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_fcmadd_round_pch)",
- "description": "pub unsafe fn _mm512_fcmadd_round_pch<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_fcmadd_round_pch<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_fcmadd_round_pch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_fcmadd_round_pch(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "tQWS7lBJms/m4fwKWJ4EKvKFWIM=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_fcmadd_round_pch"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_fmadd_round_pch(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_fmadd_round_pch)",
- "description": "pub unsafe fn _mm512_fmadd_round_pch<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_fmadd_round_pch<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_fmadd_round_pch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_fmadd_round_pch(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "AFxrm1a3VIwVVtuODxe/hL7nvB8=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_fmadd_round_pch"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_fmadd_round_pd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_fmadd_round_pd)",
- "description": "pub unsafe fn _mm512_fmadd_round_pd<const ROUNDING: i32>(a: __m512d, b: __m512d, c: __m512d) -> __m512d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_fmadd_round_pd<const ROUNDING: i32>(a: __m512d, b: __m512d, c: __m512d) -> __m512d",
- "sortText": "80000000",
- "filterText": "_mm512_fmadd_round_pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_fmadd_round_pd(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "98S5vVrZPJXdXUyMwtNG32bw35Y=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_fmadd_round_pd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_fmadd_round_ph(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_fmadd_round_ph)",
- "description": "pub unsafe fn _mm512_fmadd_round_ph<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_fmadd_round_ph<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_fmadd_round_ph",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_fmadd_round_ph(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "P0O1sD6O1E0ztAqCmC7tHk1OBbI=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_fmadd_round_ph"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_fmsub_round_pd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_fmsub_round_pd)",
- "description": "pub unsafe fn _mm512_fmsub_round_pd<const ROUNDING: i32>(a: __m512d, b: __m512d, c: __m512d) -> __m512d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_fmsub_round_pd<const ROUNDING: i32>(a: __m512d, b: __m512d, c: __m512d) -> __m512d",
- "sortText": "80000000",
- "filterText": "_mm512_fmsub_round_pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_fmsub_round_pd(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "TRfDqsZ6CF5X8eueu4IKUU2sCtA=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_fmsub_round_pd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_fmsub_round_ps(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_fmsub_round_ps)",
- "description": "pub unsafe fn _mm512_fmsub_round_ps<const ROUNDING: i32>(a: __m512, b: __m512, c: __m512) -> __m512"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_fmsub_round_ps<const ROUNDING: i32>(a: __m512, b: __m512, c: __m512) -> __m512",
- "sortText": "80000000",
- "filterText": "_mm512_fmsub_round_ps",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_fmsub_round_ps(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "KTIGFDlsMTzVWLVrzwaPNY1/KOc=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_fmsub_round_ps"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_fmsubadd_round_ph(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_fmsubadd_round_ph)",
- "description": "pub unsafe fn _mm512_fmsubadd_round_ph<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_fmsubadd_round_ph<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_fmsubadd_round_ph",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_fmsubadd_round_ph(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "C/keckHOaHJCZ5s3oRb6HLCPQk8=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_fmsubadd_round_ph"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_fmul_round_pch(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_fmul_round_pch)",
- "description": "pub unsafe fn _mm512_fmul_round_pch<const ROUNDING: i32>(a: __m512h, b: __m512h) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_fmul_round_pch<const ROUNDING: i32>(a: __m512h, b: __m512h) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_fmul_round_pch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_fmul_round_pch(${1:a}, ${2:b})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "u22mrAErlz3ctFZCxqy+llvUWgw=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_fmul_round_pch"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_fnmadd_round_pd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_fnmadd_round_pd)",
- "description": "pub unsafe fn _mm512_fnmadd_round_pd<const ROUNDING: i32>(a: __m512d, b: __m512d, c: __m512d) -> __m512d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_fnmadd_round_pd<const ROUNDING: i32>(a: __m512d, b: __m512d, c: __m512d) -> __m512d",
- "sortText": "80000000",
- "filterText": "_mm512_fnmadd_round_pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_fnmadd_round_pd(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "aMJz+at1wI63QKhcYaT15easYDs=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_fnmadd_round_pd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_fnmadd_round_ps(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_fnmadd_round_ps)",
- "description": "pub unsafe fn _mm512_fnmadd_round_ps<const ROUNDING: i32>(a: __m512, b: __m512, c: __m512) -> __m512"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_fnmadd_round_ps<const ROUNDING: i32>(a: __m512, b: __m512, c: __m512) -> __m512",
- "sortText": "80000000",
- "filterText": "_mm512_fnmadd_round_ps",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_fnmadd_round_ps(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "5by9r31ZQpNb2ya+bb6h8v7QZlY=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_fnmadd_round_ps"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask3_fcmadd_round_pch(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask3_fcmadd_round_pch)",
- "description": "pub unsafe fn _mm512_mask3_fcmadd_round_pch<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h, k: __mmask16) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask3_fcmadd_round_pch<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h, k: __mmask16) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_mask3_fcmadd_round_pch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask3_fcmadd_round_pch(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "N12A236lc9/uAKHxsWqCxQDDgnM=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask3_fcmadd_round_pch"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask3_fmadd_round_pch(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask3_fmadd_round_pch)",
- "description": "pub unsafe fn _mm512_mask3_fmadd_round_pch<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h, k: __mmask16) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask3_fmadd_round_pch<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h, k: __mmask16) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_mask3_fmadd_round_pch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask3_fmadd_round_pch(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "+nbitKNsfq+XOcsaQLs9YbC8cFM=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask3_fmadd_round_pch"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask3_fmadd_round_ph(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask3_fmadd_round_ph)",
- "description": "pub unsafe fn _mm512_mask3_fmadd_round_ph<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h, k: __mmask32) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask3_fmadd_round_ph<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h, k: __mmask32) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_mask3_fmadd_round_ph",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask3_fmadd_round_ph(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "7cvBDLQM5v9Cg3kbqgW1/pqtUA8=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask3_fmadd_round_ph"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask3_fmaddsub_round_pd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask3_fmaddsub_round_pd)",
- "description": "pub unsafe fn _mm512_mask3_fmaddsub_round_pd<const ROUNDING: i32>(a: __m512d, b: __m512d, c: __m512d, k: __mmask8) -> __m512d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask3_fmaddsub_round_pd<const ROUNDING: i32>(a: __m512d, b: __m512d, c: __m512d, k: __mmask8) -> __m512d",
- "sortText": "80000000",
- "filterText": "_mm512_mask3_fmaddsub_round_pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask3_fmaddsub_round_pd(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "m1w11Yu1i7Ybhha8uwn4oZgKKUg=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask3_fmaddsub_round_pd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask3_fmaddsub_round_ps(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask3_fmaddsub_round_ps)",
- "description": "pub unsafe fn _mm512_mask3_fmaddsub_round_ps<const ROUNDING: i32>(a: __m512, b: __m512, c: __m512, k: __mmask16) -> __m512"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask3_fmaddsub_round_ps<const ROUNDING: i32>(a: __m512, b: __m512, c: __m512, k: __mmask16) -> __m512",
- "sortText": "80000000",
- "filterText": "_mm512_mask3_fmaddsub_round_ps",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask3_fmaddsub_round_ps(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "HK0aZezYoPdene4SdvOv2Dcl+To=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask3_fmaddsub_round_ps"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask3_fmsub_round_ph(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask3_fmsub_round_ph)",
- "description": "pub unsafe fn _mm512_mask3_fmsub_round_ph<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h, k: __mmask32) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask3_fmsub_round_ph<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h, k: __mmask32) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_mask3_fmsub_round_ph",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask3_fmsub_round_ph(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "cskvVnC8x5YGOmXpAGgZ7+Q4RM8=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask3_fmsub_round_ph"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask3_fmsubadd_round_ph(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask3_fmsubadd_round_ph)",
- "description": "pub unsafe fn _mm512_mask3_fmsubadd_round_ph<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h, k: __mmask32) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask3_fmsubadd_round_ph<const ROUNDING: i32>(a: __m512h, b: __m512h, c: __m512h, k: __mmask32) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_mask3_fmsubadd_round_ph",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask3_fmsubadd_round_ph(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "bkku2hLeNHH0XhJCINutQhSbjtU=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask3_fmsubadd_round_ph"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask3_fnmsub_round_pd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask3_fnmsub_round_pd)",
- "description": "pub unsafe fn _mm512_mask3_fnmsub_round_pd<const ROUNDING: i32>(a: __m512d, b: __m512d, c: __m512d, k: __mmask8) -> __m512d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask3_fnmsub_round_pd<const ROUNDING: i32>(a: __m512d, b: __m512d, c: __m512d, k: __mmask8) -> __m512d",
- "sortText": "80000000",
- "filterText": "_mm512_mask3_fnmsub_round_pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask3_fnmsub_round_pd(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "HhB83zaTTJAvaR2DxrYQmcwNTMw=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask3_fnmsub_round_pd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask3_fnmsub_round_ps(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask3_fnmsub_round_ps)",
- "description": "pub unsafe fn _mm512_mask3_fnmsub_round_ps<const ROUNDING: i32>(a: __m512, b: __m512, c: __m512, k: __mmask16) -> __m512"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask3_fnmsub_round_ps<const ROUNDING: i32>(a: __m512, b: __m512, c: __m512, k: __mmask16) -> __m512",
- "sortText": "80000000",
- "filterText": "_mm512_mask3_fnmsub_round_ps",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask3_fnmsub_round_ps(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "I8JurOE2VBXZzE0SQvv8Uc7kYMg=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask3_fnmsub_round_ps"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask_fcmul_round_pch(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask_fcmul_round_pch)",
- "description": "pub unsafe fn _mm512_mask_fcmul_round_pch<const ROUNDING: i32>(src: __m512h, k: __mmask16, a: __m512h, b: __m512h) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask_fcmul_round_pch<const ROUNDING: i32>(src: __m512h, k: __mmask16, a: __m512h, b: __m512h) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_mask_fcmul_round_pch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask_fcmul_round_pch(${1:src}, ${2:k}, ${3:a}, ${4:b})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Vt/9j0AziOMKWU3CmvnUUmcHaWg=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask_fcmul_round_pch"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask_fmaddsub_round_pd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask_fmaddsub_round_pd)",
- "description": "pub unsafe fn _mm512_mask_fmaddsub_round_pd<const ROUNDING: i32>(a: __m512d, k: __mmask8, b: __m512d, c: __m512d) -> __m512d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask_fmaddsub_round_pd<const ROUNDING: i32>(a: __m512d, k: __mmask8, b: __m512d, c: __m512d) -> __m512d",
- "sortText": "80000000",
- "filterText": "_mm512_mask_fmaddsub_round_pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask_fmaddsub_round_pd(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "qlkhGErSZSjAIAVWHn396ywYl84=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask_fmaddsub_round_pd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask_fmaddsub_round_ph(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask_fmaddsub_round_ph)",
- "description": "pub unsafe fn _mm512_mask_fmaddsub_round_ph<const ROUNDING: i32>(a: __m512h, k: __mmask32, b: __m512h, c: __m512h) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask_fmaddsub_round_ph<const ROUNDING: i32>(a: __m512h, k: __mmask32, b: __m512h, c: __m512h) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_mask_fmaddsub_round_ph",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask_fmaddsub_round_ph(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "BnJ/0bwVsibZQW19hf2tW93Ytho=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask_fmaddsub_round_ph"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask_fmaddsub_round_ps(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask_fmaddsub_round_ps)",
- "description": "pub unsafe fn _mm512_mask_fmaddsub_round_ps<const ROUNDING: i32>(a: __m512, k: __mmask16, b: __m512, c: __m512) -> __m512"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask_fmaddsub_round_ps<const ROUNDING: i32>(a: __m512, k: __mmask16, b: __m512, c: __m512) -> __m512",
- "sortText": "80000000",
- "filterText": "_mm512_mask_fmaddsub_round_ps",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask_fmaddsub_round_ps(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "v5y+lb9NZz0J+WHhGeCP37ulWDc=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask_fmaddsub_round_ps"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask_fmsubadd_round_ps(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask_fmsubadd_round_ps)",
- "description": "pub unsafe fn _mm512_mask_fmsubadd_round_ps<const ROUNDING: i32>(a: __m512, k: __mmask16, b: __m512, c: __m512) -> __m512"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask_fmsubadd_round_ps<const ROUNDING: i32>(a: __m512, k: __mmask16, b: __m512, c: __m512) -> __m512",
- "sortText": "80000000",
- "filterText": "_mm512_mask_fmsubadd_round_ps",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask_fmsubadd_round_ps(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "FQB1SsdC3lVgMqWy9F938s4pvps=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask_fmsubadd_round_ps"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask_fnmsub_round_pd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask_fnmsub_round_pd)",
- "description": "pub unsafe fn _mm512_mask_fnmsub_round_pd<const ROUNDING: i32>(a: __m512d, k: __mmask8, b: __m512d, c: __m512d) -> __m512d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask_fnmsub_round_pd<const ROUNDING: i32>(a: __m512d, k: __mmask8, b: __m512d, c: __m512d) -> __m512d",
- "sortText": "80000000",
- "filterText": "_mm512_mask_fnmsub_round_pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask_fnmsub_round_pd(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "LZHEJbVZrFS/DuB4pMyutol962Y=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask_fnmsub_round_pd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask_fnmsub_round_ph(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask_fnmsub_round_ph)",
- "description": "pub unsafe fn _mm512_mask_fnmsub_round_ph<const ROUNDING: i32>(a: __m512h, k: __mmask32, b: __m512h, c: __m512h) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask_fnmsub_round_ph<const ROUNDING: i32>(a: __m512h, k: __mmask32, b: __m512h, c: __m512h) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_mask_fnmsub_round_ph",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask_fnmsub_round_ph(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "LqZqsxbHRn22q+CZGbkzMe7+H+Q=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask_fnmsub_round_ph"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_mask_scalef_round_ps(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_mask_scalef_round_ps)",
- "description": "pub unsafe fn _mm512_mask_scalef_round_ps<const ROUNDING: i32>(src: __m512, k: __mmask16, a: __m512, b: __m512) -> __m512"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_mask_scalef_round_ps<const ROUNDING: i32>(src: __m512, k: __mmask16, a: __m512, b: __m512) -> __m512",
- "sortText": "80000000",
- "filterText": "_mm512_mask_scalef_round_ps",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_mask_scalef_round_ps(${1:src}, ${2:k}, ${3:a}, ${4:b})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Ej1K/P9fRhBAvlWFzofImsae4c8=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_mask_scalef_round_ps"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_maskz_fmadd_round_pd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_maskz_fmadd_round_pd)",
- "description": "pub unsafe fn _mm512_maskz_fmadd_round_pd<const ROUNDING: i32>(k: __mmask8, a: __m512d, b: __m512d, c: __m512d) -> __m512d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_maskz_fmadd_round_pd<const ROUNDING: i32>(k: __mmask8, a: __m512d, b: __m512d, c: __m512d) -> __m512d",
- "sortText": "80000000",
- "filterText": "_mm512_maskz_fmadd_round_pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_maskz_fmadd_round_pd(${1:k}, ${2:a}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "WB7EmWaIB8c1cMQ25MDACzELOwk=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_maskz_fmadd_round_pd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_maskz_fmaddsub_round_ph(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_maskz_fmaddsub_round_ph)",
- "description": "pub unsafe fn _mm512_maskz_fmaddsub_round_ph<const ROUNDING: i32>(k: __mmask32, a: __m512h, b: __m512h, c: __m512h) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_maskz_fmaddsub_round_ph<const ROUNDING: i32>(k: __mmask32, a: __m512h, b: __m512h, c: __m512h) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_maskz_fmaddsub_round_ph",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_maskz_fmaddsub_round_ph(${1:k}, ${2:a}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "rEj5HGV0B5eEt3W5ugle1m/0a5s=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_maskz_fmaddsub_round_ph"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_maskz_fmsub_round_ps(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_maskz_fmsub_round_ps)",
- "description": "pub unsafe fn _mm512_maskz_fmsub_round_ps<const ROUNDING: i32>(k: __mmask16, a: __m512, b: __m512, c: __m512) -> __m512"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_maskz_fmsub_round_ps<const ROUNDING: i32>(k: __mmask16, a: __m512, b: __m512, c: __m512) -> __m512",
- "sortText": "80000000",
- "filterText": "_mm512_maskz_fmsub_round_ps",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_maskz_fmsub_round_ps(${1:k}, ${2:a}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "1r7bGHtwuejWZ9It6S2rFbT0nh8=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_maskz_fmsub_round_ps"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_maskz_fmsubadd_round_pd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_maskz_fmsubadd_round_pd)",
- "description": "pub unsafe fn _mm512_maskz_fmsubadd_round_pd<const ROUNDING: i32>(k: __mmask8, a: __m512d, b: __m512d, c: __m512d) -> __m512d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_maskz_fmsubadd_round_pd<const ROUNDING: i32>(k: __mmask8, a: __m512d, b: __m512d, c: __m512d) -> __m512d",
- "sortText": "80000000",
- "filterText": "_mm512_maskz_fmsubadd_round_pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_maskz_fmsubadd_round_pd(${1:k}, ${2:a}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ja7b0A7m9e3GG4TrtTug5zU9vjY=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_maskz_fmsubadd_round_pd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_maskz_fmul_round_pch(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_maskz_fmul_round_pch)",
- "description": "pub unsafe fn _mm512_maskz_fmul_round_pch<const ROUNDING: i32>(k: __mmask16, a: __m512h, b: __m512h) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_maskz_fmul_round_pch<const ROUNDING: i32>(k: __mmask16, a: __m512h, b: __m512h) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_maskz_fmul_round_pch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_maskz_fmul_round_pch(${1:k}, ${2:a}, ${3:b})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "+g/cTJACUNrvN2poHKvxRggRpqY=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_maskz_fmul_round_pch"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_maskz_fnmadd_round_pd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_maskz_fnmadd_round_pd)",
- "description": "pub unsafe fn _mm512_maskz_fnmadd_round_pd<const ROUNDING: i32>(k: __mmask8, a: __m512d, b: __m512d, c: __m512d) -> __m512d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_maskz_fnmadd_round_pd<const ROUNDING: i32>(k: __mmask8, a: __m512d, b: __m512d, c: __m512d) -> __m512d",
- "sortText": "80000000",
- "filterText": "_mm512_maskz_fnmadd_round_pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_maskz_fnmadd_round_pd(${1:k}, ${2:a}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "J8B0nTZ1sr1BGZByQ5O3Cobvqls=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_maskz_fnmadd_round_pd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_maskz_fnmadd_round_ps(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_maskz_fnmadd_round_ps)",
- "description": "pub unsafe fn _mm512_maskz_fnmadd_round_ps<const ROUNDING: i32>(k: __mmask16, a: __m512, b: __m512, c: __m512) -> __m512"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_maskz_fnmadd_round_ps<const ROUNDING: i32>(k: __mmask16, a: __m512, b: __m512, c: __m512) -> __m512",
- "sortText": "80000000",
- "filterText": "_mm512_maskz_fnmadd_round_ps",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_maskz_fnmadd_round_ps(${1:k}, ${2:a}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "sx/4+FLGAiZ+zfuq+FzWM8gMGnU=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_maskz_fnmadd_round_ps"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_maskz_scalef_round_pd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_maskz_scalef_round_pd)",
- "description": "pub unsafe fn _mm512_maskz_scalef_round_pd<const ROUNDING: i32>(k: __mmask8, a: __m512d, b: __m512d) -> __m512d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_maskz_scalef_round_pd<const ROUNDING: i32>(k: __mmask8, a: __m512d, b: __m512d) -> __m512d",
- "sortText": "80000000",
- "filterText": "_mm512_maskz_scalef_round_pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_maskz_scalef_round_pd(${1:k}, ${2:a}, ${3:b})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "jaJ97ldB26zexmFjI57172qSWBU=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_maskz_scalef_round_pd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_maskz_scalef_round_ph(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_maskz_scalef_round_ph)",
- "description": "pub unsafe fn _mm512_maskz_scalef_round_ph<const ROUNDING: i32>(k: __mmask32, a: __m512h, b: __m512h) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_maskz_scalef_round_ph<const ROUNDING: i32>(k: __mmask32, a: __m512h, b: __m512h) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_maskz_scalef_round_ph",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_maskz_scalef_round_ph(${1:k}, ${2:a}, ${3:b})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Dbt/rBeodMn6s651A5DLYenaQI4=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_maskz_scalef_round_ph"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_scalef_round_pd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_scalef_round_pd)",
- "description": "pub unsafe fn _mm512_scalef_round_pd<const ROUNDING: i32>(a: __m512d, b: __m512d) -> __m512d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_scalef_round_pd<const ROUNDING: i32>(a: __m512d, b: __m512d) -> __m512d",
- "sortText": "80000000",
- "filterText": "_mm512_scalef_round_pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_scalef_round_pd(${1:a}, ${2:b})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "7BlprlJgXt9BmTI+dIYWyGojeyE=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_scalef_round_pd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm512_scalef_round_ph(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm512_scalef_round_ph)",
- "description": "pub unsafe fn _mm512_scalef_round_ph<const ROUNDING: i32>(a: __m512h, b: __m512h) -> __m512h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm512_scalef_round_ph<const ROUNDING: i32>(a: __m512h, b: __m512h) -> __m512h",
- "sortText": "80000000",
- "filterText": "_mm512_scalef_round_ph",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm512_scalef_round_ph(${1:a}, ${2:b})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "4Q6PI0Rs9VptUS4hElmPbr1SywA=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm512_scalef_round_ph"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_fixupimm_round_ss(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_fixupimm_round_ss)",
- "description": "pub unsafe fn _mm_fixupimm_round_ss<const IMM8: i32, const SAE: i32>(a: __m128, b: __m128, c: __m128i) -> __m128"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_fixupimm_round_ss<const IMM8: i32, const SAE: i32>(a: __m128, b: __m128, c: __m128i) -> __m128",
- "sortText": "80000000",
- "filterText": "_mm_fixupimm_round_ss",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_fixupimm_round_ss(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Mt+2Q6ilCzY8AALd757TLN5gin4=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_fixupimm_round_ss"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_fmadd_round_sh(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_fmadd_round_sh)",
- "description": "pub unsafe fn _mm_fmadd_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_fmadd_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_fmadd_round_sh",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_fmadd_round_sh(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "nZ9K+k67H7NrBfsEhUEP2L26++I=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_fmadd_round_sh"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_fmsub_round_sd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_fmsub_round_sd)",
- "description": "pub unsafe fn _mm_fmsub_round_sd<const ROUNDING: i32>(a: __m128d, b: __m128d, c: __m128d) -> __m128d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_fmsub_round_sd<const ROUNDING: i32>(a: __m128d, b: __m128d, c: __m128d) -> __m128d",
- "sortText": "80000000",
- "filterText": "_mm_fmsub_round_sd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_fmsub_round_sd(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "dDXqib5mQ6VBBk1qHHGVOgoyO7g=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_fmsub_round_sd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_fmsub_round_sh(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_fmsub_round_sh)",
- "description": "pub unsafe fn _mm_fmsub_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_fmsub_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_fmsub_round_sh",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_fmsub_round_sh(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "yt+J5THLoWJQLsiISGNvkesTXcg=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_fmsub_round_sh"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_fnmadd_round_sd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_fnmadd_round_sd)",
- "description": "pub unsafe fn _mm_fnmadd_round_sd<const ROUNDING: i32>(a: __m128d, b: __m128d, c: __m128d) -> __m128d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_fnmadd_round_sd<const ROUNDING: i32>(a: __m128d, b: __m128d, c: __m128d) -> __m128d",
- "sortText": "80000000",
- "filterText": "_mm_fnmadd_round_sd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_fnmadd_round_sd(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "08AcoWgWh82InmQtaSIsneWkhy4=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_fnmadd_round_sd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_fnmadd_round_sh(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_fnmadd_round_sh)",
- "description": "pub unsafe fn _mm_fnmadd_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_fnmadd_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_fnmadd_round_sh",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_fnmadd_round_sh(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "inNg9a5tJ37qnD28MiZE943AEn0=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_fnmadd_round_sh"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_fnmadd_round_ss(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_fnmadd_round_ss)",
- "description": "pub unsafe fn _mm_fnmadd_round_ss<const ROUNDING: i32>(a: __m128, b: __m128, c: __m128) -> __m128"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_fnmadd_round_ss<const ROUNDING: i32>(a: __m128, b: __m128, c: __m128) -> __m128",
- "sortText": "80000000",
- "filterText": "_mm_fnmadd_round_ss",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_fnmadd_round_ss(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "50Lgfb80Ko0c6oJY0q0A6SgKSPU=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_fnmadd_round_ss"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_fnmsub_round_sh(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_fnmsub_round_sh)",
- "description": "pub unsafe fn _mm_fnmsub_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_fnmsub_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_fnmsub_round_sh",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_fnmsub_round_sh(${1:a}, ${2:b}, ${3:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "uaryVqxpMRzEwgcbCApNvZgUFqw=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_fnmsub_round_sh"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask3_fmadd_round_sd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask3_fmadd_round_sd)",
- "description": "pub unsafe fn _mm_mask3_fmadd_round_sd<const ROUNDING: i32>(a: __m128d, b: __m128d, c: __m128d, k: __mmask8) -> __m128d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask3_fmadd_round_sd<const ROUNDING: i32>(a: __m128d, b: __m128d, c: __m128d, k: __mmask8) -> __m128d",
- "sortText": "80000000",
- "filterText": "_mm_mask3_fmadd_round_sd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask3_fmadd_round_sd(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "AOGBX/+jcbzciGEFnFEDngDfUwc=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask3_fmadd_round_sd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask3_fmadd_round_ss(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask3_fmadd_round_ss)",
- "description": "pub unsafe fn _mm_mask3_fmadd_round_ss<const ROUNDING: i32>(a: __m128, b: __m128, c: __m128, k: __mmask8) -> __m128"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask3_fmadd_round_ss<const ROUNDING: i32>(a: __m128, b: __m128, c: __m128, k: __mmask8) -> __m128",
- "sortText": "80000000",
- "filterText": "_mm_mask3_fmadd_round_ss",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask3_fmadd_round_ss(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "bIXAoeA9erYLHryzh+4hUIsKSuQ=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask3_fmadd_round_ss"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask3_fmsub_round_sh(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask3_fmsub_round_sh)",
- "description": "pub unsafe fn _mm_mask3_fmsub_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h, k: __mmask8) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask3_fmsub_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h, k: __mmask8) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_mask3_fmsub_round_sh",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask3_fmsub_round_sh(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "VYEVRez7F6ll/bE1jeQVUPQRA5s=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask3_fmsub_round_sh"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask3_fnmadd_round_sh(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask3_fnmadd_round_sh)",
- "description": "pub unsafe fn _mm_mask3_fnmadd_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h, k: __mmask8) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask3_fnmadd_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h, k: __mmask8) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_mask3_fnmadd_round_sh",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask3_fnmadd_round_sh(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "/tqfVpKTPo29LGhTQdvnubgip/o=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask3_fnmadd_round_sh"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask3_fnmsub_round_sd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask3_fnmsub_round_sd)",
- "description": "pub unsafe fn _mm_mask3_fnmsub_round_sd<const ROUNDING: i32>(a: __m128d, b: __m128d, c: __m128d, k: __mmask8) -> __m128d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask3_fnmsub_round_sd<const ROUNDING: i32>(a: __m128d, b: __m128d, c: __m128d, k: __mmask8) -> __m128d",
- "sortText": "80000000",
- "filterText": "_mm_mask3_fnmsub_round_sd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask3_fnmsub_round_sd(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "wNK1bydyi6qlrK+FeleAc7aRm10=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask3_fnmsub_round_sd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask3_fnmsub_round_sh(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask3_fnmsub_round_sh)",
- "description": "pub unsafe fn _mm_mask3_fnmsub_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h, k: __mmask8) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask3_fnmsub_round_sh<const ROUNDING: i32>(a: __m128h, b: __m128h, c: __m128h, k: __mmask8) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_mask3_fnmsub_round_sh",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask3_fnmsub_round_sh(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "TUq9jlyNBkR5q6E7SM2YjMg+9IY=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask3_fnmsub_round_sh"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask3_fnmsub_round_ss(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask3_fnmsub_round_ss)",
- "description": "pub unsafe fn _mm_mask3_fnmsub_round_ss<const ROUNDING: i32>(a: __m128, b: __m128, c: __m128, k: __mmask8) -> __m128"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask3_fnmsub_round_ss<const ROUNDING: i32>(a: __m128, b: __m128, c: __m128, k: __mmask8) -> __m128",
- "sortText": "80000000",
- "filterText": "_mm_mask3_fnmsub_round_ss",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask3_fnmsub_round_ss(${1:a}, ${2:b}, ${3:c}, ${4:k})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "sfLItU7+QeUNsSaThQtQHOp5vtQ=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask3_fnmsub_round_ss"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask_fcmadd_round_sch(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask_fcmadd_round_sch)",
- "description": "pub unsafe fn _mm_mask_fcmadd_round_sch<const ROUNDING: i32>(a: __m128h, k: __mmask8, b: __m128h, c: __m128h) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask_fcmadd_round_sch<const ROUNDING: i32>(a: __m128h, k: __mmask8, b: __m128h, c: __m128h) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_mask_fcmadd_round_sch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask_fcmadd_round_sch(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "zRYefySHfV6cu7erF4oZYWCiRco=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask_fcmadd_round_sch"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask_fcmul_round_sch(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask_fcmul_round_sch)",
- "description": "pub unsafe fn _mm_mask_fcmul_round_sch<const ROUNDING: i32>(src: __m128h, k: __mmask8, a: __m128h, b: __m128h) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask_fcmul_round_sch<const ROUNDING: i32>(src: __m128h, k: __mmask8, a: __m128h, b: __m128h) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_mask_fcmul_round_sch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask_fcmul_round_sch(${1:src}, ${2:k}, ${3:a}, ${4:b})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "zJBC05Ovn5G5Al8otsOwWlVZetY=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask_fcmul_round_sch"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask_fixupimm_round_sd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask_fixupimm_round_sd)",
- "description": "pub unsafe fn _mm_mask_fixupimm_round_sd<const IMM8: i32, const SAE: i32>(a: __m128d, k: __mmask8, b: __m128d, c: __m128i) -> __m128d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask_fixupimm_round_sd<const IMM8: i32, const SAE: i32>(a: __m128d, k: __mmask8, b: __m128d, c: __m128i) -> __m128d",
- "sortText": "80000000",
- "filterText": "_mm_mask_fixupimm_round_sd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask_fixupimm_round_sd(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "jQxiFZpiRuaRLFEKCPQ+BB8H6Hc=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask_fixupimm_round_sd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask_fmadd_round_sch(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask_fmadd_round_sch)",
- "description": "pub unsafe fn _mm_mask_fmadd_round_sch<const ROUNDING: i32>(a: __m128h, k: __mmask8, b: __m128h, c: __m128h) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask_fmadd_round_sch<const ROUNDING: i32>(a: __m128h, k: __mmask8, b: __m128h, c: __m128h) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_mask_fmadd_round_sch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask_fmadd_round_sch(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "8gY1hi82Lj16YIyNmNVBtCpzrsY=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask_fmadd_round_sch"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask_fmadd_round_sd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask_fmadd_round_sd)",
- "description": "pub unsafe fn _mm_mask_fmadd_round_sd<const ROUNDING: i32>(a: __m128d, k: __mmask8, b: __m128d, c: __m128d) -> __m128d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask_fmadd_round_sd<const ROUNDING: i32>(a: __m128d, k: __mmask8, b: __m128d, c: __m128d) -> __m128d",
- "sortText": "80000000",
- "filterText": "_mm_mask_fmadd_round_sd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask_fmadd_round_sd(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "jMR22iv6sqx0ZKBOZfMYa6kxA8k=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask_fmadd_round_sd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask_fmadd_round_ss(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask_fmadd_round_ss)",
- "description": "pub unsafe fn _mm_mask_fmadd_round_ss<const ROUNDING: i32>(a: __m128, k: __mmask8, b: __m128, c: __m128) -> __m128"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask_fmadd_round_ss<const ROUNDING: i32>(a: __m128, k: __mmask8, b: __m128, c: __m128) -> __m128",
- "sortText": "80000000",
- "filterText": "_mm_mask_fmadd_round_ss",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask_fmadd_round_ss(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "19iQpOUtBtFJaMOvFjV2+N0evQQ=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask_fmadd_round_ss"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask_fnmsub_round_sd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask_fnmsub_round_sd)",
- "description": "pub unsafe fn _mm_mask_fnmsub_round_sd<const ROUNDING: i32>(a: __m128d, k: __mmask8, b: __m128d, c: __m128d) -> __m128d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask_fnmsub_round_sd<const ROUNDING: i32>(a: __m128d, k: __mmask8, b: __m128d, c: __m128d) -> __m128d",
- "sortText": "80000000",
- "filterText": "_mm_mask_fnmsub_round_sd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask_fnmsub_round_sd(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "oJc+sDePEJRvK1JbynE9/KoO2OQ=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask_fnmsub_round_sd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask_fnmsub_round_ss(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask_fnmsub_round_ss)",
- "description": "pub unsafe fn _mm_mask_fnmsub_round_ss<const ROUNDING: i32>(a: __m128, k: __mmask8, b: __m128, c: __m128) -> __m128"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask_fnmsub_round_ss<const ROUNDING: i32>(a: __m128, k: __mmask8, b: __m128, c: __m128) -> __m128",
- "sortText": "80000000",
- "filterText": "_mm_mask_fnmsub_round_ss",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask_fnmsub_round_ss(${1:a}, ${2:k}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Uw2ZsijO4nie51CC5GCuL1mZ52w=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask_fnmsub_round_ss"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_mask_scalef_round_sh(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_mask_scalef_round_sh)",
- "description": "pub unsafe fn _mm_mask_scalef_round_sh<const ROUNDING: i32>(src: __m128h, k: __mmask8, a: __m128h, b: __m128h) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_mask_scalef_round_sh<const ROUNDING: i32>(src: __m128h, k: __mmask8, a: __m128h, b: __m128h) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_mask_scalef_round_sh",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_mask_scalef_round_sh(${1:src}, ${2:k}, ${3:a}, ${4:b})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "GuoOiXL7CpM2yjGWbCAJnOdwka4=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_mask_scalef_round_sh"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_maskz_fcmadd_round_sch(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_maskz_fcmadd_round_sch)",
- "description": "pub unsafe fn _mm_maskz_fcmadd_round_sch<const ROUNDING: i32>(k: __mmask8, a: __m128h, b: __m128h, c: __m128h) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_maskz_fcmadd_round_sch<const ROUNDING: i32>(k: __mmask8, a: __m128h, b: __m128h, c: __m128h) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_maskz_fcmadd_round_sch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_maskz_fcmadd_round_sch(${1:k}, ${2:a}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "69dUntVPCjIExCTw9lkbEu4BHQY=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_maskz_fcmadd_round_sch"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_maskz_fixupimm_round_ss(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_maskz_fixupimm_round_ss)",
- "description": "pub unsafe fn _mm_maskz_fixupimm_round_ss<const IMM8: i32, const SAE: i32>(k: __mmask8, a: __m128, b: __m128, c: __m128i) -> __m128"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_maskz_fixupimm_round_ss<const IMM8: i32, const SAE: i32>(k: __mmask8, a: __m128, b: __m128, c: __m128i) -> __m128",
- "sortText": "80000000",
- "filterText": "_mm_maskz_fixupimm_round_ss",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_maskz_fixupimm_round_ss(${1:k}, ${2:a}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "VUozJPJ3j4ZfgeJxsQm977NMf/E=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_maskz_fixupimm_round_ss"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_maskz_fmadd_round_sch(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_maskz_fmadd_round_sch)",
- "description": "pub unsafe fn _mm_maskz_fmadd_round_sch<const ROUNDING: i32>(k: __mmask8, a: __m128h, b: __m128h, c: __m128h) -> __m128h"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_maskz_fmadd_round_sch<const ROUNDING: i32>(k: __mmask8, a: __m128h, b: __m128h, c: __m128h) -> __m128h",
- "sortText": "80000000",
- "filterText": "_mm_maskz_fmadd_round_sch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_maskz_fmadd_round_sch(${1:k}, ${2:a}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "0dsdNyLvc9au1R7dhEKQGj60mEs=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_maskz_fmadd_round_sch"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_maskz_fmsub_round_sd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_maskz_fmsub_round_sd)",
- "description": "pub unsafe fn _mm_maskz_fmsub_round_sd<const ROUNDING: i32>(k: __mmask8, a: __m128d, b: __m128d, c: __m128d) -> __m128d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_maskz_fmsub_round_sd<const ROUNDING: i32>(k: __mmask8, a: __m128d, b: __m128d, c: __m128d) -> __m128d",
- "sortText": "80000000",
- "filterText": "_mm_maskz_fmsub_round_sd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_maskz_fmsub_round_sd(${1:k}, ${2:a}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "XUx76gy5TTWSHmm+RYhuzLCQ5Ok=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_maskz_fmsub_round_sd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_maskz_fnmadd_round_ss(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_maskz_fnmadd_round_ss)",
- "description": "pub unsafe fn _mm_maskz_fnmadd_round_ss<const ROUNDING: i32>(k: __mmask8, a: __m128, b: __m128, c: __m128) -> __m128"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_maskz_fnmadd_round_ss<const ROUNDING: i32>(k: __mmask8, a: __m128, b: __m128, c: __m128) -> __m128",
- "sortText": "80000000",
- "filterText": "_mm_maskz_fnmadd_round_ss",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_maskz_fnmadd_round_ss(${1:k}, ${2:a}, ${3:b}, ${4:c})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Sp7c50nM2h+qXmxBw3GZgIa87TQ=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_maskz_fnmadd_round_ss"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "_mm_maskz_scalef_round_sd(…)",
- "labelDetails": {
- "detail": "(use std::arch::x86_64::_mm_maskz_scalef_round_sd)",
- "description": "pub unsafe fn _mm_maskz_scalef_round_sd<const ROUNDING: i32>(k: __mmask8, a: __m128d, b: __m128d) -> __m128d"
- },
- "kind": 3,
- "detail": "pub unsafe fn _mm_maskz_scalef_round_sd<const ROUNDING: i32>(k: __mmask8, a: __m128d, b: __m128d) -> __m128d",
- "sortText": "80000000",
- "filterText": "_mm_maskz_scalef_round_sd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "_mm_maskz_scalef_round_sd(${1:k}, ${2:a}, ${3:b})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "KrL2AE4/48ISFYzsE7OluVgmDfo=",
- "imports": [
- {
- "full_import_path": "std::arch::x86_64::_mm_maskz_scalef_round_sd"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "prefetch_write_instruction(…)",
- "labelDetails": {
- "detail": "(use std::intrinsics::prefetch_write_instruction)",
- "description": "pub const fn prefetch_write_instruction<T, const LOCALITY: i32>(data: *const T)"
- },
- "kind": 3,
- "detail": "pub const fn prefetch_write_instruction<T, const LOCALITY: i32>(data: *const T)",
- "sortText": "80000000",
- "filterText": "prefetch_write_instruction",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "prefetch_write_instruction(${1:data});$0"
- },
- "data": {
- "for_ref": false,
- "hash": "DS8dYZbkwpPWfQFba25jAPnnniU=",
- "imports": [
- {
- "full_import_path": "std::intrinsics::prefetch_write_instruction"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ptr_offset_from_unsigned(…)",
- "labelDetails": {
- "detail": "(use std::intrinsics::ptr_offset_from_unsigned)",
- "description": "pub const unsafe fn ptr_offset_from_unsigned<T>(ptr: *const T, base: *const T) -> usize"
- },
- "kind": 3,
- "detail": "pub const unsafe fn ptr_offset_from_unsigned<T>(ptr: *const T, base: *const T) -> usize",
- "sortText": "80000000",
- "filterText": "ptr_offset_from_unsigned",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ptr_offset_from_unsigned(${1:ptr}, ${2:base})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "q/uJAGU616k0Wx3m65pbJjA2rsE=",
- "imports": [
- {
- "full_import_path": "std::intrinsics::ptr_offset_from_unsigned"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FromCoroutine",
- "labelDetails": {
- "detail": "(use std::iter::FromCoroutine)",
- "description": "FromCoroutine<{unknown}>"
- },
- "kind": 22,
- "detail": "FromCoroutine<{unknown}>",
- "sortText": "80000000",
- "filterText": "FromCoroutine",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FromCoroutine"
- },
- "data": {
- "for_ref": false,
- "hash": "F0iuUlQmpr1H40EYre2OPFMX9v4=",
- "imports": [
- {
- "full_import_path": "std::iter::FromCoroutine"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "forget_unsized(…)",
- "labelDetails": {
- "detail": "(use std::mem::forget_unsized)",
- "description": "pub fn forget_unsized<T>(t: T) where T: ?Sized,"
- },
- "kind": 3,
- "detail": "pub fn forget_unsized<T>(t: T) where T: ?Sized,",
- "sortText": "80000000",
- "filterText": "forget_unsized",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "forget_unsized(${1:t});$0"
- },
- "data": {
- "for_ref": false,
- "hash": "vs3GGSEJBnucyNc/UhrxJ2Wpb4c=",
- "imports": [
- {
- "full_import_path": "std::mem::forget_unsized"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "from_raw_parts_mut(…)",
- "labelDetails": {
- "detail": "(use std::ptr::from_raw_parts_mut)",
- "description": "pub const fn from_raw_parts_mut<T>(data_pointer: *mut impl Thin, metadata: <T as Pointee>::Metadata) -> *mut T where T: PointeeSized,"
- },
- "kind": 3,
- "detail": "pub const fn from_raw_parts_mut<T>(data_pointer: *mut impl Thin, metadata: <T as Pointee>::Metadata) -> *mut T where T: PointeeSized,",
- "sortText": "80000000",
- "filterText": "from_raw_parts_mut",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "from_raw_parts_mut(${1:data_pointer}, ${2:metadata})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "MdYe7QIzQaTQkL4KmCwQMyD//YA=",
- "imports": [
- {
- "full_import_path": "std::ptr::from_raw_parts_mut"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DefaultRandomSource",
- "labelDetails": {
- "detail": "(use std::random::DefaultRandomSource)",
- "description": "DefaultRandomSource"
- },
- "kind": 22,
- "detail": "DefaultRandomSource",
- "sortText": "80000000",
- "filterText": "DefaultRandomSource",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DefaultRandomSource"
- },
- "data": {
- "for_ref": false,
- "hash": "mFSgNui1usT9Ym2wnK1LfUTrzSg=",
- "imports": [
- {
- "full_import_path": "std::random::DefaultRandomSource"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "from_mut(…)",
- "labelDetails": {
- "detail": "(use std::slice::from_mut)",
- "description": "pub const fn from_mut<T>(s: &mut T) -> &mut [T]"
- },
- "kind": 3,
- "detail": "pub const fn from_mut<T>(s: &mut T) -> &mut [T]",
- "sortText": "80000000",
- "filterText": "from_mut",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "from_mut(${1:s})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Tl/IbM/VPYbbtEr44y6JvV3X8rs=",
- "imports": [
- {
- "full_import_path": "std::slice::from_mut"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "from_mut_ptr_range(…)",
- "labelDetails": {
- "detail": "(use std::slice::from_mut_ptr_range)",
- "description": "pub const unsafe fn from_mut_ptr_range<'a, T>(range: Range<*mut T>) -> &'a mut [T]"
- },
- "kind": 3,
- "detail": "pub const unsafe fn from_mut_ptr_range<'a, T>(range: Range<*mut T>) -> &'a mut [T]",
- "sortText": "80000000",
- "filterText": "from_mut_ptr_range",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "from_mut_ptr_range(${1:range})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "xItGciin+iqrKfq6PWmbqkOCHe8=",
- "imports": [
- {
- "full_import_path": "std::slice::from_mut_ptr_range"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "from_raw_parts_mut(…)",
- "labelDetails": {
- "detail": "(use std::slice::from_raw_parts_mut)",
- "description": "pub const unsafe fn from_raw_parts_mut<'a, T>(data: *mut T, len: usize) -> &'a mut [T]"
- },
- "kind": 3,
- "detail": "pub const unsafe fn from_raw_parts_mut<'a, T>(data: *mut T, len: usize) -> &'a mut [T]",
- "sortText": "80000000",
- "filterText": "from_raw_parts_mut",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "from_raw_parts_mut(${1:data}, ${2:len})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "+gVHpP9CzqiM1DvuxZ8aTFIqSbo=",
- "imports": [
- {
- "full_import_path": "std::slice::from_raw_parts_mut"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "from_boxed_utf8_unchecked(…)",
- "labelDetails": {
- "detail": "(use std::str::from_boxed_utf8_unchecked)",
- "description": "pub unsafe fn from_boxed_utf8_unchecked(v: Box<[u8]>) -> Box<str>"
- },
- "kind": 3,
- "detail": "pub unsafe fn from_boxed_utf8_unchecked(v: Box<[u8]>) -> Box<str>",
- "sortText": "80000000",
- "filterText": "from_boxed_utf8_unchecked",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "from_boxed_utf8_unchecked(${1:v})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "wjz6rwh9ymqOAx7Pq1D0mOspk4Y=",
- "imports": [
- {
- "full_import_path": "std::str::from_boxed_utf8_unchecked"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "from_raw_parts_mut(…)",
- "labelDetails": {
- "detail": "(use std::str::from_raw_parts_mut)",
- "description": "pub const unsafe fn from_raw_parts_mut<'a>(ptr: *mut u8, len: usize) -> &'a mut str"
- },
- "kind": 3,
- "detail": "pub const unsafe fn from_raw_parts_mut<'a>(ptr: *mut u8, len: usize) -> &'a mut str",
- "sortText": "80000000",
- "filterText": "from_raw_parts_mut",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "from_raw_parts_mut(${1:ptr}, ${2:len})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "zVnfxzafdx2kRJtwIk4X9xmTwKw=",
- "imports": [
- {
- "full_import_path": "std::str::from_raw_parts_mut"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "from_utf8_mut(…)",
- "labelDetails": {
- "detail": "(use std::str::from_utf8_mut)",
- "description": "pub const fn from_utf8_mut(v: &mut [u8]) -> Result<&mut str, Utf8Error>"
- },
- "kind": 3,
- "detail": "pub const fn from_utf8_mut(v: &mut [u8]) -> Result<&mut str, Utf8Error>",
- "sortText": "80000000",
- "filterText": "from_utf8_mut",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "from_utf8_mut(${1:v})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Wx2qFh3xUbQ2Ezh8M1BLUwWWcOc=",
- "imports": [
- {
- "full_import_path": "std::str::from_utf8_mut"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "from_utf8_unchecked_mut(…)",
- "labelDetails": {
- "detail": "(use std::str::from_utf8_unchecked_mut)",
- "description": "pub const unsafe fn from_utf8_unchecked_mut(v: &mut [u8]) -> &mut str"
- },
- "kind": 3,
- "detail": "pub const unsafe fn from_utf8_unchecked_mut(v: &mut [u8]) -> &mut str",
- "sortText": "80000000",
- "filterText": "from_utf8_unchecked_mut",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "from_utf8_unchecked_mut(${1:v})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "jQjXsNXC8OBdfaM4qdLrek9uoao=",
- "imports": [
- {
- "full_import_path": "std::str::from_utf8_unchecked_mut"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FromUtf16Error",
- "labelDetails": {
- "detail": "(use std::string::FromUtf16Error)",
- "description": "FromUtf16Error"
- },
- "kind": 22,
- "detail": "FromUtf16Error",
- "sortText": "80000000",
- "filterText": "FromUtf16Error",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FromUtf16Error"
- },
- "data": {
- "for_ref": false,
- "hash": "dD9Xh9B+t3RR0Y/wfZFGf6glbQE=",
- "imports": [
- {
- "full_import_path": "std::string::FromUtf16Error"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FromUtf8Error",
- "labelDetails": {
- "detail": "(use std::string::FromUtf8Error)",
- "description": "FromUtf8Error"
- },
- "kind": 22,
- "detail": "FromUtf8Error",
- "sortText": "80000000",
- "filterText": "FromUtf8Error",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FromUtf8Error"
- },
- "data": {
- "for_ref": false,
- "hash": "oN89H+xaK56hHOWsdC71JT0LMpk=",
- "imports": [
- {
- "full_import_path": "std::string::FromUtf8Error"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "modifier_supplement",
- "labelDetails": {
- "detail": "(use winit::platform::modifier_supplement)"
- },
- "kind": 9,
- "sortText": "80000000",
- "filterText": "modifier_supplement",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "modifier_supplement"
- },
- "data": {
- "for_ref": false,
- "hash": "W58THi2Yw4YDCQabF9ozy9m2IzY=",
- "imports": [
- {
- "full_import_path": "winit::platform::modifier_supplement"
- }
- ],
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "self::",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "self::",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "self::"
- }
- },
- {
- "label": "crate::",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "crate::",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "crate::"
- }
- },
- {
- "label": "AASAdd",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "AASAdd",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AASAdd"
- }
- },
- {
- "label": "AVRInput",
- "labelDetails": {
- "description": "AVRInput"
- },
- "kind": 20,
- "detail": "AVRInput",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AVRInput",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AVRInput$0"
- },
- "data": {
- "for_ref": false,
- "hash": "tV+8PpSp4ZR75y8ukc2MoKb0lPg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AVRPower",
- "labelDetails": {
- "description": "AVRPower"
- },
- "kind": 20,
- "detail": "AVRPower",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AVRPower",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AVRPower$0"
- },
- "data": {
- "for_ref": false,
- "hash": "FYcuKDrTi0sZPmnSfq0aN7awXnc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Accept",
- "labelDetails": {
- "description": "Accept"
- },
- "kind": 20,
- "detail": "Accept",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Accept",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Accept$0"
- },
- "data": {
- "for_ref": false,
- "hash": "qkkWvxhuygjT1viXwAPDN8wMtA4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Action",
- "labelDetails": {
- "description": "Action"
- },
- "kind": 13,
- "detail": "Action",
- "sortText": "7fffffff",
- "filterText": "Action",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Action"
- }
- },
- {
- "label": "Again",
- "labelDetails": {
- "description": "Again"
- },
- "kind": 20,
- "detail": "Again",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Again",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Again$0"
- },
- "data": {
- "for_ref": false,
- "hash": "oTY6+3kQvaz81IZm+cm6rJJExvc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AllCandidates",
- "labelDetails": {
- "description": "AllCandidates"
- },
- "kind": 20,
- "detail": "AllCandidates",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AllCandidates",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AllCandidates$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ltF5q4kkTZvPiNFBCVRi6sGYJDw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Alphanumeric",
- "labelDetails": {
- "description": "Alphanumeric"
- },
- "kind": 20,
- "detail": "Alphanumeric",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Alphanumeric",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Alphanumeric$0"
- }
- },
- {
- "label": "Alt",
- "labelDetails": {
- "description": "Alt"
- },
- "kind": 20,
- "detail": "Alt",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Alt",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Alt$0"
- },
- "data": {
- "for_ref": false,
- "hash": "WU7yCMygRQxxQ/p2HpMRGkvK4KY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AltGraph",
- "labelDetails": {
- "description": "AltGraph"
- },
- "kind": 20,
- "detail": "AltGraph",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AltGraph",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AltGraph$0"
- },
- "data": {
- "for_ref": false,
- "hash": "wx0pxgVQo4YOPV8ThsfO7HX4IPo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AnnotatedTextEdit",
- "labelDetails": {
- "description": "AnnotatedTextEdit"
- },
- "kind": 22,
- "detail": "AnnotatedTextEdit",
- "sortText": "7fffffff",
- "filterText": "AnnotatedTextEdit",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AnnotatedTextEdit"
- },
- "data": {
- "for_ref": false,
- "hash": "nUs1fx+XPRnptUK7bvkO/bhkggw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AppSwitch",
- "labelDetails": {
- "description": "AppSwitch"
- },
- "kind": 20,
- "detail": "AppSwitch",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AppSwitch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AppSwitch$0"
- },
- "data": {
- "for_ref": false,
- "hash": "t3Z71dJA8hy7QOJL8idvlh5Fyak=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ApplyWorkspaceEditParams",
- "labelDetails": {
- "description": "ApplyWorkspaceEditParams"
- },
- "kind": 22,
- "detail": "ApplyWorkspaceEditParams",
- "sortText": "7fffffff",
- "filterText": "ApplyWorkspaceEditParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ApplyWorkspaceEditParams"
- }
- },
- {
- "label": "ApplyWorkspaceEditResponse",
- "labelDetails": {
- "description": "ApplyWorkspaceEditResponse"
- },
- "kind": 22,
- "detail": "ApplyWorkspaceEditResponse",
- "sortText": "7fffffff",
- "filterText": "ApplyWorkspaceEditResponse",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ApplyWorkspaceEditResponse"
- }
- },
- {
- "label": "Arc",
- "labelDetails": {
- "description": "Arc<{unknown}, {unknown}>"
- },
- "kind": 22,
- "detail": "Arc<{unknown}, {unknown}>",
- "sortText": "7fffffff",
- "filterText": "Arc",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Arc"
- },
- "data": {
- "for_ref": false,
- "hash": "sn1zS1I+9fWZRXeE7SLLbt85El0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ArrowDown",
- "labelDetails": {
- "description": "ArrowDown"
- },
- "kind": 20,
- "detail": "ArrowDown",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ArrowDown",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ArrowDown$0"
- },
- "data": {
- "for_ref": false,
- "hash": "iGLzKdWYTB/HX24TKApzfvo7o08=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ArrowLeft",
- "labelDetails": {
- "description": "ArrowLeft"
- },
- "kind": 20,
- "detail": "ArrowLeft",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ArrowLeft",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ArrowLeft$0"
- },
- "data": {
- "for_ref": false,
- "hash": "L6cbO46A0h9eIYM9qGpPvQfb2nQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ArrowRight",
- "labelDetails": {
- "description": "ArrowRight"
- },
- "kind": 20,
- "detail": "ArrowRight",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ArrowRight",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ArrowRight$0"
- },
- "data": {
- "for_ref": false,
- "hash": "mLNd7U3l7ANLjDwwFpUErmSwAcM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ArrowUp",
- "labelDetails": {
- "description": "ArrowUp"
- },
- "kind": 20,
- "detail": "ArrowUp",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ArrowUp",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ArrowUp$0"
- },
- "data": {
- "for_ref": false,
- "hash": "OQBGDyAKEpL7744Pve05aym9nI0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Attn",
- "labelDetails": {
- "description": "Attn"
- },
- "kind": 20,
- "detail": "Attn",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Attn",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Attn$0"
- },
- "data": {
- "for_ref": false,
- "hash": "gXx8/JXZrdktyVs2CKAv3LGIyr8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioBalanceLeft",
- "labelDetails": {
- "description": "AudioBalanceLeft"
- },
- "kind": 20,
- "detail": "AudioBalanceLeft",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioBalanceLeft",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioBalanceLeft$0"
- },
- "data": {
- "for_ref": false,
- "hash": "56r7Pt8q0BJwTv0IDrogu7ng764=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioBalanceRight",
- "labelDetails": {
- "description": "AudioBalanceRight"
- },
- "kind": 20,
- "detail": "AudioBalanceRight",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioBalanceRight",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioBalanceRight$0"
- },
- "data": {
- "for_ref": false,
- "hash": "6sM2GcEL9C+U0ZSa8l2iRAJLZiE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioBassBoostDown",
- "labelDetails": {
- "description": "AudioBassBoostDown"
- },
- "kind": 20,
- "detail": "AudioBassBoostDown",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioBassBoostDown",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioBassBoostDown$0"
- },
- "data": {
- "for_ref": false,
- "hash": "wrKQ0/sXexKoyNR4VHlL/xO+G24=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioBassBoostToggle",
- "labelDetails": {
- "description": "AudioBassBoostToggle"
- },
- "kind": 20,
- "detail": "AudioBassBoostToggle",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioBassBoostToggle",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioBassBoostToggle$0"
- },
- "data": {
- "for_ref": false,
- "hash": "2FxuhCG8ekqunS21yKkA2D8e5e8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioBassBoostUp",
- "labelDetails": {
- "description": "AudioBassBoostUp"
- },
- "kind": 20,
- "detail": "AudioBassBoostUp",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioBassBoostUp",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioBassBoostUp$0"
- },
- "data": {
- "for_ref": false,
- "hash": "vNPumJY+LOmzzbiXLJ9+WerPj/E=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioFaderFront",
- "labelDetails": {
- "description": "AudioFaderFront"
- },
- "kind": 20,
- "detail": "AudioFaderFront",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioFaderFront",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioFaderFront$0"
- },
- "data": {
- "for_ref": false,
- "hash": "dX9GUqkPLEkW+hTTDMpgg6J+R+w=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioFaderRear",
- "labelDetails": {
- "description": "AudioFaderRear"
- },
- "kind": 20,
- "detail": "AudioFaderRear",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioFaderRear",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioFaderRear$0"
- },
- "data": {
- "for_ref": false,
- "hash": "GJz+oPSuEJOj1cD4bjrINJw6dMc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioSurroundModeNext",
- "labelDetails": {
- "description": "AudioSurroundModeNext"
- },
- "kind": 20,
- "detail": "AudioSurroundModeNext",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioSurroundModeNext",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioSurroundModeNext$0"
- },
- "data": {
- "for_ref": false,
- "hash": "HOrmfFmz0Ns8IMv1GSePUgYogL4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioTrebleDown",
- "labelDetails": {
- "description": "AudioTrebleDown"
- },
- "kind": 20,
- "detail": "AudioTrebleDown",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioTrebleDown",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioTrebleDown$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ZS2zsVUd2tMFplAdjhohNF7TeQs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioTrebleUp",
- "labelDetails": {
- "description": "AudioTrebleUp"
- },
- "kind": 20,
- "detail": "AudioTrebleUp",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioTrebleUp",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioTrebleUp$0"
- },
- "data": {
- "for_ref": false,
- "hash": "yaYcHWLWs5tLAiLPHK7K+uKeDYg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioVolumeDown",
- "labelDetails": {
- "description": "AudioVolumeDown"
- },
- "kind": 20,
- "detail": "AudioVolumeDown",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioVolumeDown",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioVolumeDown$0"
- },
- "data": {
- "for_ref": false,
- "hash": "v0AoEP4vXEQlNcSc6CWyrIv82Ag=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioVolumeMute",
- "labelDetails": {
- "description": "AudioVolumeMute"
- },
- "kind": 20,
- "detail": "AudioVolumeMute",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioVolumeMute",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioVolumeMute$0"
- },
- "data": {
- "for_ref": false,
- "hash": "RXdfycgxr/iX48h0z7hgoiBhbyQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AudioVolumeUp",
- "labelDetails": {
- "description": "AudioVolumeUp"
- },
- "kind": 20,
- "detail": "AudioVolumeUp",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "AudioVolumeUp",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AudioVolumeUp$0"
- },
- "data": {
- "for_ref": false,
- "hash": "hKzi/mwSgph5XTjY/9s9p3dIbBk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "BFONT",
- "labelDetails": {
- "description": "LazyLock<Instance<'static>, fn() -> Instance<'static>>"
- },
- "kind": 12,
- "detail": "LazyLock<Instance<'static>, fn() -> Instance<'static>>",
- "sortText": "7fffffff",
- "filterText": "BFONT",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BFONT"
- }
- },
- {
- "label": "BG",
- "labelDetails": {
- "description": "[u8; 3]"
- },
- "kind": 21,
- "detail": "[u8; 3]",
- "sortText": "7fffffff",
- "filterText": "BG",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BG"
- }
- },
- {
- "label": "BIFONT",
- "labelDetails": {
- "description": "LazyLock<Instance<'static>, fn() -> Instance<'static>>"
- },
- "kind": 12,
- "detail": "LazyLock<Instance<'static>, fn() -> Instance<'static>>",
- "sortText": "7fffffff",
- "filterText": "BIFONT",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BIFONT"
- }
- },
- {
- "label": "Backspace",
- "labelDetails": {
- "description": "Backspace"
- },
- "kind": 20,
- "detail": "Backspace",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Backspace",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Backspace$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Enk3YJ2bBT2q0V0C2BP7xoLzHU4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Bar",
- "labelDetails": {
- "description": "Bar"
- },
- "kind": 22,
- "detail": "Bar",
- "sortText": "7fffffff",
- "filterText": "Bar",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Bar"
- }
- },
- {
- "label": "BoolRequest",
- "labelDetails": {
- "description": "BoolRequest"
- },
- "kind": 13,
- "detail": "BoolRequest",
- "sortText": "7fffffff",
- "filterText": "BoolRequest",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BoolRequest"
- }
- },
- {
- "label": "BrightnessDown",
- "labelDetails": {
- "description": "BrightnessDown"
- },
- "kind": 20,
- "detail": "BrightnessDown",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "BrightnessDown",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BrightnessDown$0"
- },
- "data": {
- "for_ref": false,
- "hash": "70tSiuXIfuFbOWVDuFVAS/zq27g=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "BrightnessUp",
- "labelDetails": {
- "description": "BrightnessUp"
- },
- "kind": 20,
- "detail": "BrightnessUp",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "BrightnessUp",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BrightnessUp$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Nt18GbzcA33U9NbZPlzyJeXSZEQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "BrowserBack",
- "labelDetails": {
- "description": "BrowserBack"
- },
- "kind": 20,
- "detail": "BrowserBack",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "BrowserBack",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BrowserBack$0"
- },
- "data": {
- "for_ref": false,
- "hash": "xrhuY/Y7qjdoAQlzJdvdbBRZaTU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "BrowserFavorites",
- "labelDetails": {
- "description": "BrowserFavorites"
- },
- "kind": 20,
- "detail": "BrowserFavorites",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "BrowserFavorites",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BrowserFavorites$0"
- },
- "data": {
- "for_ref": false,
- "hash": "/muGuMUhMAeawN80opr7Yu65JrE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "BrowserForward",
- "labelDetails": {
- "description": "BrowserForward"
- },
- "kind": 20,
- "detail": "BrowserForward",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "BrowserForward",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BrowserForward$0"
- },
- "data": {
- "for_ref": false,
- "hash": "4wq5CLlSp3eu1BXnk5L3+KT0ErI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "BrowserHome",
- "labelDetails": {
- "description": "BrowserHome"
- },
- "kind": 20,
- "detail": "BrowserHome",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "BrowserHome",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BrowserHome$0"
- },
- "data": {
- "for_ref": false,
- "hash": "6tph6vVibGugyzD02alcH+rPCWg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "BrowserRefresh",
- "labelDetails": {
- "description": "BrowserRefresh"
- },
- "kind": 20,
- "detail": "BrowserRefresh",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "BrowserRefresh",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BrowserRefresh$0"
- },
- "data": {
- "for_ref": false,
- "hash": "f6g7uLMCYQ3ecNoxp/Q5w3DY/NY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "BrowserSearch",
- "labelDetails": {
- "description": "BrowserSearch"
- },
- "kind": 20,
- "detail": "BrowserSearch",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "BrowserSearch",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BrowserSearch$0"
- },
- "data": {
- "for_ref": false,
- "hash": "oPoJ9jfirGUtPM2NLahosRtw1fs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "BrowserStop",
- "labelDetails": {
- "description": "BrowserStop"
- },
- "kind": 20,
- "detail": "BrowserStop",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "BrowserStop",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BrowserStop$0"
- },
- "data": {
- "for_ref": false,
- "hash": "hNmkZpuV/3/DBQmEcmvw/tePYig=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "BufReader",
- "labelDetails": {
- "description": "BufReader<{unknown}>"
- },
- "kind": 22,
- "detail": "BufReader<{unknown}>",
- "sortText": "7fffffff",
- "filterText": "BufReader",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "BufReader"
- },
- "data": {
- "for_ref": false,
- "hash": "7sknAnPFRAvZD1yUM3b0yaw6LNc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CDo",
- "labelDetails": {
- "description": "CDo"
- },
- "kind": 13,
- "detail": "CDo",
- "sortText": "7fffffff",
- "filterText": "CDo",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CDo"
- }
- },
- {
- "label": "CLICKING",
- "labelDetails": {
- "description": "bool"
- },
- "kind": 12,
- "detail": "bool",
- "sortText": "7fffffff",
- "filterText": "CLICKING",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CLICKING"
- }
- },
- {
- "label": "Call",
- "labelDetails": {
- "description": "Call"
- },
- "kind": 20,
- "detail": "Call",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Call",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Call$0"
- },
- "data": {
- "for_ref": false,
- "hash": "j080dT14n76NnnrTjIsec7dn5lo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CallHierarchyClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "CallHierarchyClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CallHierarchyClientCapabilities"
- }
- },
- {
- "label": "CallHierarchyIncomingCall",
- "labelDetails": {
- "description": "CallHierarchyIncomingCall"
- },
- "kind": 22,
- "detail": "CallHierarchyIncomingCall",
- "sortText": "7fffffff",
- "filterText": "CallHierarchyIncomingCall",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CallHierarchyIncomingCall"
- },
- "data": {
- "for_ref": false,
- "hash": "DicIQ3bVaa+zJM7iIXfGmjwni2g=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CallHierarchyIncomingCallsParams",
- "labelDetails": {
- "description": "CallHierarchyIncomingCallsParams"
- },
- "kind": 22,
- "detail": "CallHierarchyIncomingCallsParams",
- "sortText": "7fffffff",
- "filterText": "CallHierarchyIncomingCallsParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CallHierarchyIncomingCallsParams"
- }
- },
- {
- "label": "CallHierarchyItem",
- "labelDetails": {
- "description": "CallHierarchyItem"
- },
- "kind": 22,
- "detail": "CallHierarchyItem",
- "sortText": "7fffffff",
- "filterText": "CallHierarchyItem",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CallHierarchyItem"
- }
- },
- {
- "label": "CallHierarchyOptions",
- "labelDetails": {
- "description": "CallHierarchyOptions"
- },
- "kind": 22,
- "detail": "CallHierarchyOptions",
- "sortText": "7fffffff",
- "filterText": "CallHierarchyOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CallHierarchyOptions"
- }
- },
- {
- "label": "CallHierarchyOutgoingCall",
- "labelDetails": {
- "description": "CallHierarchyOutgoingCall"
- },
- "kind": 22,
- "detail": "CallHierarchyOutgoingCall",
- "sortText": "7fffffff",
- "filterText": "CallHierarchyOutgoingCall",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CallHierarchyOutgoingCall"
- },
- "data": {
- "for_ref": false,
- "hash": "spQ0LU4o71Cn6lpphjhXhh9LVUc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CallHierarchyOutgoingCallsParams",
- "labelDetails": {
- "description": "CallHierarchyOutgoingCallsParams"
- },
- "kind": 22,
- "detail": "CallHierarchyOutgoingCallsParams",
- "sortText": "7fffffff",
- "filterText": "CallHierarchyOutgoingCallsParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CallHierarchyOutgoingCallsParams"
- }
- },
- {
- "label": "CallHierarchyPrepareParams",
- "labelDetails": {
- "description": "CallHierarchyPrepareParams"
- },
- "kind": 22,
- "detail": "CallHierarchyPrepareParams",
- "sortText": "7fffffff",
- "filterText": "CallHierarchyPrepareParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CallHierarchyPrepareParams"
- }
- },
- {
- "label": "CallHierarchyServerCapability",
- "labelDetails": {
- "description": "CallHierarchyServerCapability"
- },
- "kind": 13,
- "detail": "CallHierarchyServerCapability",
- "sortText": "7fffffff",
- "filterText": "CallHierarchyServerCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CallHierarchyServerCapability"
- }
- },
- {
- "label": "Camera",
- "labelDetails": {
- "description": "Camera"
- },
- "kind": 20,
- "detail": "Camera",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Camera",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Camera$0"
- },
- "data": {
- "for_ref": false,
- "hash": "fXG+XnS5NuziQPCGtYpfuK33mwg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CameraFocus",
- "labelDetails": {
- "description": "CameraFocus"
- },
- "kind": 20,
- "detail": "CameraFocus",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "CameraFocus",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CameraFocus$0"
- },
- "data": {
- "for_ref": false,
- "hash": "woFpbpkxO48cnpguXUJdLd2wHK4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Cancel",
- "labelDetails": {
- "description": "Cancel"
- },
- "kind": 20,
- "detail": "Cancel",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Cancel",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Cancel$0"
- }
- },
- {
- "label": "CancelParams",
- "labelDetails": {
- "description": "CancelParams"
- },
- "kind": 22,
- "detail": "CancelParams",
- "sortText": "7fffffff",
- "filterText": "CancelParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CancelParams"
- }
- },
- {
- "label": "CapsLock",
- "labelDetails": {
- "description": "CapsLock"
- },
- "kind": 20,
- "detail": "CapsLock",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "CapsLock",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CapsLock$0"
- },
- "data": {
- "for_ref": false,
- "hash": "8VyGxT41B7i51Qb77dyGrpGKsOE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Cell",
- "labelDetails": {
- "description": "Cell"
- },
- "kind": 22,
- "detail": "Cell",
- "sortText": "7fffffff",
- "filterText": "Cell",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Cell"
- }
- },
- {
- "label": "ChangeAnnotation",
- "labelDetails": {
- "description": "ChangeAnnotation"
- },
- "kind": 22,
- "detail": "ChangeAnnotation",
- "sortText": "7fffffff",
- "filterText": "ChangeAnnotation",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ChangeAnnotation"
- },
- "data": {
- "for_ref": false,
- "hash": "THUsaouHNGglaDRMr+wkuc1L83w=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ChangeAnnotationIdentifier",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "ChangeAnnotationIdentifier",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ChangeAnnotationIdentifier"
- },
- "data": {
- "for_ref": false,
- "hash": "/aTM/1TJXeprz+h0SG5XODQ268g=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ChangeAnnotationWorkspaceEditClientCapabilities",
- "labelDetails": {
- "description": "ChangeAnnotationWorkspaceEditClientCapabilities"
- },
- "kind": 22,
- "detail": "ChangeAnnotationWorkspaceEditClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "ChangeAnnotationWorkspaceEditClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ChangeAnnotationWorkspaceEditClientCapabilities"
- }
- },
- {
- "label": "ChannelDown",
- "labelDetails": {
- "description": "ChannelDown"
- },
- "kind": 20,
- "detail": "ChannelDown",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ChannelDown",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ChannelDown$0"
- },
- "data": {
- "for_ref": false,
- "hash": "yztta3OEijeEhCatMX6LXyIPKn0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ChannelUp",
- "labelDetails": {
- "description": "ChannelUp"
- },
- "kind": 20,
- "detail": "ChannelUp",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ChannelUp",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ChannelUp$0"
- },
- "data": {
- "for_ref": false,
- "hash": "T66MABlVfmvcP9hVUL15gM9Wcnw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Clear",
- "labelDetails": {
- "description": "Clear"
- },
- "kind": 20,
- "detail": "Clear",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Clear",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Clear$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Sb6stVmTHlKXNk+WuQURg+Dje4c=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ClientCapabilities",
- "labelDetails": {
- "description": "ClientCapabilities"
- },
- "kind": 22,
- "detail": "ClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "ClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "Af6q12hdKzwIUfANUfOhuIJpygU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ClientInfo",
- "labelDetails": {
- "description": "ClientInfo"
- },
- "kind": 22,
- "detail": "ClientInfo",
- "sortText": "7fffffff",
- "filterText": "ClientInfo",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ClientInfo"
- }
- },
- {
- "label": "Close",
- "labelDetails": {
- "description": "Close"
- },
- "kind": 20,
- "detail": "Close",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Close",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Close$0"
- },
- "data": {
- "for_ref": false,
- "hash": "C0HFbNBhmn8Kvsqp07atOQq/0qU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ClosedCaptionToggle",
- "labelDetails": {
- "description": "ClosedCaptionToggle"
- },
- "kind": 20,
- "detail": "ClosedCaptionToggle",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ClosedCaptionToggle",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ClosedCaptionToggle$0"
- },
- "data": {
- "for_ref": false,
- "hash": "rpcx5aCyG7GnKDjUAcyjdz95/tE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CodeAction",
- "labelDetails": {
- "description": "CodeAction"
- },
- "kind": 22,
- "detail": "CodeAction",
- "sortText": "7fffffff",
- "filterText": "CodeAction",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeAction"
- }
- },
- {
- "label": "CodeActionCapabilityResolveSupport",
- "labelDetails": {
- "description": "CodeActionCapabilityResolveSupport"
- },
- "kind": 22,
- "detail": "CodeActionCapabilityResolveSupport",
- "sortText": "7fffffff",
- "filterText": "CodeActionCapabilityResolveSupport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionCapabilityResolveSupport"
- },
- "data": {
- "for_ref": false,
- "hash": "XtyfJo54IwGMvwpciZsETsePKRo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CodeActionClientCapabilities",
- "labelDetails": {
- "description": "CodeActionClientCapabilities"
- },
- "kind": 22,
- "detail": "CodeActionClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "CodeActionClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionClientCapabilities"
- }
- },
- {
- "label": "CodeActionContext",
- "labelDetails": {
- "description": "CodeActionContext"
- },
- "kind": 22,
- "detail": "CodeActionContext",
- "sortText": "7fffffff",
- "filterText": "CodeActionContext",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionContext"
- },
- "data": {
- "for_ref": false,
- "hash": "3QomhbC6lhyUsP8Au9BxzcTJkiM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CodeActionDisabled",
- "labelDetails": {
- "description": "CodeActionDisabled"
- },
- "kind": 22,
- "detail": "CodeActionDisabled",
- "sortText": "7fffffff",
- "filterText": "CodeActionDisabled",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionDisabled"
- }
- },
- {
- "label": "CodeActionKind",
- "labelDetails": {
- "description": "CodeActionKind"
- },
- "kind": 22,
- "detail": "CodeActionKind",
- "sortText": "7fffffff",
- "filterText": "CodeActionKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionKind"
- }
- },
- {
- "label": "CodeActionKindLiteralSupport",
- "labelDetails": {
- "description": "CodeActionKindLiteralSupport"
- },
- "kind": 22,
- "detail": "CodeActionKindLiteralSupport",
- "sortText": "7fffffff",
- "filterText": "CodeActionKindLiteralSupport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionKindLiteralSupport"
- }
- },
- {
- "label": "CodeActionLiteralSupport",
- "labelDetails": {
- "description": "CodeActionLiteralSupport"
- },
- "kind": 22,
- "detail": "CodeActionLiteralSupport",
- "sortText": "7fffffff",
- "filterText": "CodeActionLiteralSupport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionLiteralSupport"
- }
- },
- {
- "label": "CodeActionOptions",
- "labelDetails": {
- "description": "CodeActionOptions"
- },
- "kind": 22,
- "detail": "CodeActionOptions",
- "sortText": "7fffffff",
- "filterText": "CodeActionOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionOptions"
- }
- },
- {
- "label": "CodeActionOrCommand",
- "labelDetails": {
- "description": "CodeActionOrCommand"
- },
- "kind": 13,
- "detail": "CodeActionOrCommand",
- "sortText": "7fffffff",
- "filterText": "CodeActionOrCommand",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionOrCommand"
- }
- },
- {
- "label": "CodeActionParams",
- "labelDetails": {
- "description": "CodeActionParams"
- },
- "kind": 22,
- "detail": "CodeActionParams",
- "sortText": "7fffffff",
- "filterText": "CodeActionParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionParams"
- },
- "data": {
- "for_ref": false,
- "hash": "kheyba0Dwg9rtDJJzUCgn0vJhEU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CodeActionProviderCapability",
- "labelDetails": {
- "description": "CodeActionProviderCapability"
- },
- "kind": 13,
- "detail": "CodeActionProviderCapability",
- "sortText": "7fffffff",
- "filterText": "CodeActionProviderCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionProviderCapability"
- }
- },
- {
- "label": "CodeActionResponse",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "CodeActionResponse",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionResponse"
- },
- "data": {
- "for_ref": false,
- "hash": "jdRds7CMcPDtnwO592ugw1DRqNE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CodeActionTriggerKind",
- "labelDetails": {
- "description": "CodeActionTriggerKind"
- },
- "kind": 22,
- "detail": "CodeActionTriggerKind",
- "sortText": "7fffffff",
- "filterText": "CodeActionTriggerKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeActionTriggerKind"
- },
- "data": {
- "for_ref": false,
- "hash": "onGhkTxzMEyWIti6rwxj84jgIMs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CodeDescription",
- "labelDetails": {
- "description": "CodeDescription"
- },
- "kind": 22,
- "detail": "CodeDescription",
- "sortText": "7fffffff",
- "filterText": "CodeDescription",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeDescription"
- }
- },
- {
- "label": "CodeInput",
- "labelDetails": {
- "description": "CodeInput"
- },
- "kind": 20,
- "detail": "CodeInput",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "CodeInput",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeInput$0"
- },
- "data": {
- "for_ref": false,
- "hash": "0DjaEest+m5xiTOxyuQf3uFFbGM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CodeLens",
- "labelDetails": {
- "description": "CodeLens"
- },
- "kind": 22,
- "detail": "CodeLens",
- "sortText": "7fffffff",
- "filterText": "CodeLens",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeLens"
- },
- "data": {
- "for_ref": false,
- "hash": "9/vLsyepZsS39WXZU1TF2ea8RHs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CodeLensClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "CodeLensClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeLensClientCapabilities"
- }
- },
- {
- "label": "CodeLensOptions",
- "labelDetails": {
- "description": "CodeLensOptions"
- },
- "kind": 22,
- "detail": "CodeLensOptions",
- "sortText": "7fffffff",
- "filterText": "CodeLensOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeLensOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "NpC0YOfNRBgyDYhHzlglEM0oUkg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CodeLensParams",
- "labelDetails": {
- "description": "CodeLensParams"
- },
- "kind": 22,
- "detail": "CodeLensParams",
- "sortText": "7fffffff",
- "filterText": "CodeLensParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeLensParams"
- }
- },
- {
- "label": "CodeLensWorkspaceClientCapabilities",
- "labelDetails": {
- "description": "CodeLensWorkspaceClientCapabilities"
- },
- "kind": 22,
- "detail": "CodeLensWorkspaceClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "CodeLensWorkspaceClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CodeLensWorkspaceClientCapabilities"
- }
- },
- {
- "label": "Color",
- "labelDetails": {
- "description": "Color"
- },
- "kind": 22,
- "detail": "Color",
- "sortText": "7fffffff",
- "filterText": "Color",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Color"
- }
- },
- {
- "label": "ColorF0Red",
- "labelDetails": {
- "description": "ColorF0Red"
- },
- "kind": 20,
- "detail": "ColorF0Red",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ColorF0Red",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ColorF0Red$0"
- },
- "data": {
- "for_ref": false,
- "hash": "rlZWvJ2hvvtiWwjKjKSD5vhJ03s=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ColorF1Green",
- "labelDetails": {
- "description": "ColorF1Green"
- },
- "kind": 20,
- "detail": "ColorF1Green",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ColorF1Green",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ColorF1Green$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ZFNHRZ/XyC8+cMq46XzOODdwA7U=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ColorF2Yellow",
- "labelDetails": {
- "description": "ColorF2Yellow"
- },
- "kind": 20,
- "detail": "ColorF2Yellow",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ColorF2Yellow",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ColorF2Yellow$0"
- },
- "data": {
- "for_ref": false,
- "hash": "yi2R7oEvY6Y21hjd8RsEM7GNgzo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ColorF3Blue",
- "labelDetails": {
- "description": "ColorF3Blue"
- },
- "kind": 20,
- "detail": "ColorF3Blue",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ColorF3Blue",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ColorF3Blue$0"
- },
- "data": {
- "for_ref": false,
- "hash": "2wv1I2ON7N3D+7eFm3KAyF8q5N0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ColorF4Grey",
- "labelDetails": {
- "description": "ColorF4Grey"
- },
- "kind": 20,
- "detail": "ColorF4Grey",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ColorF4Grey",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ColorF4Grey$0"
- },
- "data": {
- "for_ref": false,
- "hash": "oY50T1wCoFUgb+w20EcbRKrAD6s=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ColorF5Brown",
- "labelDetails": {
- "description": "ColorF5Brown"
- },
- "kind": 20,
- "detail": "ColorF5Brown",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ColorF5Brown",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ColorF5Brown$0"
- },
- "data": {
- "for_ref": false,
- "hash": "QzKWbdRUd6yV0MLsiBVQTaVtxOg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ColorInformation",
- "labelDetails": {
- "description": "ColorInformation"
- },
- "kind": 22,
- "detail": "ColorInformation",
- "sortText": "7fffffff",
- "filterText": "ColorInformation",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ColorInformation"
- }
- },
- {
- "label": "ColorPresentation",
- "labelDetails": {
- "description": "ColorPresentation"
- },
- "kind": 22,
- "detail": "ColorPresentation",
- "sortText": "7fffffff",
- "filterText": "ColorPresentation",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ColorPresentation"
- }
- },
- {
- "label": "ColorPresentationParams",
- "labelDetails": {
- "description": "ColorPresentationParams"
- },
- "kind": 22,
- "detail": "ColorPresentationParams",
- "sortText": "7fffffff",
- "filterText": "ColorPresentationParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ColorPresentationParams"
- }
- },
- {
- "label": "ColorProviderCapability",
- "labelDetails": {
- "description": "ColorProviderCapability"
- },
- "kind": 13,
- "detail": "ColorProviderCapability",
- "sortText": "7fffffff",
- "filterText": "ColorProviderCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ColorProviderCapability"
- }
- },
- {
- "label": "ColorProviderOptions",
- "labelDetails": {
- "description": "ColorProviderOptions"
- },
- "kind": 22,
- "detail": "ColorProviderOptions",
- "sortText": "7fffffff",
- "filterText": "ColorProviderOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ColorProviderOptions"
- }
- },
- {
- "label": "Command",
- "labelDetails": {
- "description": "Command"
- },
- "kind": 22,
- "detail": "Command",
- "sortText": "7fffffff",
- "filterText": "Command",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Command"
- },
- "data": {
- "for_ref": false,
- "hash": "W6uck9QFOB54grGWF/uob6O1Y/k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Complete",
- "labelDetails": {
- "description": "Complete"
- },
- "kind": 22,
- "detail": "Complete",
- "sortText": "7fffffff",
- "filterText": "Complete",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Complete"
- }
- },
- {
- "label": "CompletionAction",
- "labelDetails": {
- "description": "CompletionAction<'_>"
- },
- "kind": 13,
- "detail": "CompletionAction<'_>",
- "sortText": "7fffffff",
- "filterText": "CompletionAction",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionAction"
- }
- },
- {
- "label": "CompletionClientCapabilities",
- "labelDetails": {
- "description": "CompletionClientCapabilities"
- },
- "kind": 22,
- "detail": "CompletionClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "CompletionClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionClientCapabilities"
- }
- },
- {
- "label": "CompletionContext",
- "labelDetails": {
- "description": "CompletionContext"
- },
- "kind": 22,
- "detail": "CompletionContext",
- "sortText": "7fffffff",
- "filterText": "CompletionContext",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionContext"
- }
- },
- {
- "label": "CompletionItem",
- "labelDetails": {
- "description": "CompletionItem"
- },
- "kind": 22,
- "detail": "CompletionItem",
- "sortText": "7fffffff",
- "filterText": "CompletionItem",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionItem"
- }
- },
- {
- "label": "CompletionItemCapability",
- "labelDetails": {
- "description": "CompletionItemCapability"
- },
- "kind": 22,
- "detail": "CompletionItemCapability",
- "sortText": "7fffffff",
- "filterText": "CompletionItemCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionItemCapability"
- }
- },
- {
- "label": "CompletionItemCapabilityResolveSupport",
- "labelDetails": {
- "description": "CompletionItemCapabilityResolveSupport"
- },
- "kind": 22,
- "detail": "CompletionItemCapabilityResolveSupport",
- "sortText": "7fffffff",
- "filterText": "CompletionItemCapabilityResolveSupport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionItemCapabilityResolveSupport"
- }
- },
- {
- "label": "CompletionItemKind",
- "labelDetails": {
- "description": "CompletionItemKind"
- },
- "kind": 22,
- "detail": "CompletionItemKind",
- "sortText": "7fffffff",
- "filterText": "CompletionItemKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionItemKind"
- },
- "data": {
- "for_ref": false,
- "hash": "m3G+haX6mXKx6VRqBaXMWMIG4WI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CompletionItemKindCapability",
- "labelDetails": {
- "description": "CompletionItemKindCapability"
- },
- "kind": 22,
- "detail": "CompletionItemKindCapability",
- "sortText": "7fffffff",
- "filterText": "CompletionItemKindCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionItemKindCapability"
- }
- },
- {
- "label": "CompletionItemLabelDetails",
- "labelDetails": {
- "description": "CompletionItemLabelDetails"
- },
- "kind": 22,
- "detail": "CompletionItemLabelDetails",
- "sortText": "7fffffff",
- "filterText": "CompletionItemLabelDetails",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionItemLabelDetails"
- },
- "data": {
- "for_ref": false,
- "hash": "fsrEDyxqCi95d5lqZ8kZJEWckxQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CompletionItemTag",
- "labelDetails": {
- "description": "CompletionItemTag"
- },
- "kind": 22,
- "detail": "CompletionItemTag",
- "sortText": "7fffffff",
- "filterText": "CompletionItemTag",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionItemTag"
- }
- },
- {
- "label": "CompletionList",
- "labelDetails": {
- "description": "CompletionList"
- },
- "kind": 22,
- "detail": "CompletionList",
- "sortText": "7fffffff",
- "filterText": "CompletionList",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionList"
- },
- "data": {
- "for_ref": false,
- "hash": "NiLjlso1DzdfPckzopFhFR+vxT0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CompletionListCapability",
- "labelDetails": {
- "description": "CompletionListCapability"
- },
- "kind": 22,
- "detail": "CompletionListCapability",
- "sortText": "7fffffff",
- "filterText": "CompletionListCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionListCapability"
- }
- },
- {
- "label": "CompletionOptions",
- "labelDetails": {
- "description": "CompletionOptions"
- },
- "kind": 22,
- "detail": "CompletionOptions",
- "sortText": "7fffffff",
- "filterText": "CompletionOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "zliYWHwSMOncD//fabQLyw/c2Aw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CompletionOptionsCompletionItem",
- "labelDetails": {
- "description": "CompletionOptionsCompletionItem"
- },
- "kind": 22,
- "detail": "CompletionOptionsCompletionItem",
- "sortText": "7fffffff",
- "filterText": "CompletionOptionsCompletionItem",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionOptionsCompletionItem"
- }
- },
- {
- "label": "CompletionParams",
- "labelDetails": {
- "description": "CompletionParams"
- },
- "kind": 22,
- "detail": "CompletionParams",
- "sortText": "7fffffff",
- "filterText": "CompletionParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionParams"
- }
- },
- {
- "label": "CompletionRegistrationOptions",
- "labelDetails": {
- "description": "CompletionRegistrationOptions"
- },
- "kind": 22,
- "detail": "CompletionRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "CompletionRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionRegistrationOptions"
- }
- },
- {
- "label": "CompletionResponse",
- "labelDetails": {
- "description": "CompletionResponse"
- },
- "kind": 13,
- "detail": "CompletionResponse",
- "sortText": "7fffffff",
- "filterText": "CompletionResponse",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionResponse"
- }
- },
- {
- "label": "CompletionState",
- "labelDetails": {
- "description": "CompletionState"
- },
- "kind": 13,
- "detail": "CompletionState",
- "sortText": "7fffffff",
- "filterText": "CompletionState",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionState"
- },
- "data": {
- "for_ref": false,
- "hash": "Pvb2b94+P0B/k6OCEp3xq8KmfiY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CompletionTextEdit",
- "labelDetails": {
- "description": "CompletionTextEdit"
- },
- "kind": 13,
- "detail": "CompletionTextEdit",
- "sortText": "7fffffff",
- "filterText": "CompletionTextEdit",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionTextEdit"
- }
- },
- {
- "label": "CompletionTriggerKind",
- "labelDetails": {
- "description": "CompletionTriggerKind"
- },
- "kind": 22,
- "detail": "CompletionTriggerKind",
- "sortText": "7fffffff",
- "filterText": "CompletionTriggerKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CompletionTriggerKind"
- },
- "data": {
- "for_ref": false,
- "hash": "H6v+EQX2ite9rgeTR2ped/zGuq4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Compose",
- "labelDetails": {
- "description": "Compose"
- },
- "kind": 20,
- "detail": "Compose",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Compose",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Compose$0"
- },
- "data": {
- "for_ref": false,
- "hash": "reZOKrdt7flcvf6UHzbVa+sLDzs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ConfigurationItem",
- "labelDetails": {
- "description": "ConfigurationItem"
- },
- "kind": 22,
- "detail": "ConfigurationItem",
- "sortText": "7fffffff",
- "filterText": "ConfigurationItem",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ConfigurationItem"
- }
- },
- {
- "label": "ConfigurationParams",
- "labelDetails": {
- "description": "ConfigurationParams"
- },
- "kind": 22,
- "detail": "ConfigurationParams",
- "sortText": "7fffffff",
- "filterText": "ConfigurationParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ConfigurationParams"
- }
- },
- {
- "label": "ContextMenu",
- "labelDetails": {
- "description": "ContextMenu"
- },
- "kind": 20,
- "detail": "ContextMenu",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ContextMenu",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ContextMenu$0"
- },
- "data": {
- "for_ref": false,
- "hash": "U5K1lK+ONmr2W1qMT6mek7yL5Es=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Control",
- "labelDetails": {
- "description": "Control"
- },
- "kind": 20,
- "detail": "Control",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Control",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Control$0"
- },
- "data": {
- "for_ref": false,
- "hash": "MFOppN1YVHQ1jKemR8o+WwZouR4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ControlFlow",
- "labelDetails": {
- "description": "ControlFlow"
- },
- "kind": 13,
- "detail": "ControlFlow",
- "sortText": "7fffffff",
- "filterText": "ControlFlow",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ControlFlow"
- },
- "data": {
- "for_ref": false,
- "hash": "AYserO0sYOrpWmm6AvnuR/wpq48=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Convert",
- "labelDetails": {
- "description": "Convert"
- },
- "kind": 20,
- "detail": "Convert",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Convert",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Convert$0"
- },
- "data": {
- "for_ref": false,
- "hash": "i3jFUroTR010r6da1AUmwoEaVLY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Copy",
- "labelDetails": {
- "description": "Copy"
- },
- "kind": 20,
- "detail": "Copy",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Copy",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Copy$0"
- },
- "data": {
- "for_ref": false,
- "hash": "SATqk9uhvlfsx7jf8fwk0N99kBg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Copy",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "Copy",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Copy"
- },
- "data": {
- "for_ref": false,
- "hash": "PPCSwC0vTAxrEMUDJWAKIup/RRU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Cow",
- "labelDetails": {
- "description": "Cow<'_, {unknown}>"
- },
- "kind": 13,
- "detail": "Cow<'_, {unknown}>",
- "sortText": "7fffffff",
- "filterText": "Cow",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Cow"
- },
- "data": {
- "for_ref": false,
- "hash": "ybEkXliV8ubreBTfXEHlITJ/bbc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CrSel",
- "labelDetails": {
- "description": "CrSel"
- },
- "kind": 20,
- "detail": "CrSel",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "CrSel",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CrSel$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Pe62awXm4zVZwXi18ayRLRuWf6M=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CreateFile",
- "labelDetails": {
- "description": "CreateFile"
- },
- "kind": 22,
- "detail": "CreateFile",
- "sortText": "7fffffff",
- "filterText": "CreateFile",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CreateFile"
- },
- "data": {
- "for_ref": false,
- "hash": "ma9YIU+U2s8PfLnypXfoG1Af1dM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CreateFileOptions",
- "labelDetails": {
- "description": "CreateFileOptions"
- },
- "kind": 22,
- "detail": "CreateFileOptions",
- "sortText": "7fffffff",
- "filterText": "CreateFileOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CreateFileOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "hxQW+FKJbDnptoev93xjRJSXpZ8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "CreateFilesParams",
- "labelDetails": {
- "description": "CreateFilesParams"
- },
- "kind": 22,
- "detail": "CreateFilesParams",
- "sortText": "7fffffff",
- "filterText": "CreateFilesParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "CreateFilesParams"
- },
- "data": {
- "for_ref": false,
- "hash": "G05h/Og9KkK/GVq56+DgXs1hC2s=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Cut",
- "labelDetails": {
- "description": "Cut"
- },
- "kind": 20,
- "detail": "Cut",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Cut",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Cut$0"
- },
- "data": {
- "for_ref": false,
- "hash": "6/B1xDkTWRj13Quk4Ux64Px9hME=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DType",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "DType",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DType"
- }
- },
- {
- "label": "DVR",
- "labelDetails": {
- "description": "DVR"
- },
- "kind": 20,
- "detail": "DVR",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "DVR",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DVR$0"
- },
- "data": {
- "for_ref": false,
- "hash": "rInrm++jKuRaKB3W7mfQio6LDd4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DeclarationCapability",
- "labelDetails": {
- "description": "DeclarationCapability"
- },
- "kind": 13,
- "detail": "DeclarationCapability",
- "sortText": "7fffffff",
- "filterText": "DeclarationCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DeclarationCapability"
- }
- },
- {
- "label": "DeclarationOptions",
- "labelDetails": {
- "description": "DeclarationOptions"
- },
- "kind": 22,
- "detail": "DeclarationOptions",
- "sortText": "7fffffff",
- "filterText": "DeclarationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DeclarationOptions"
- }
- },
- {
- "label": "DeclarationRegistrationOptions",
- "labelDetails": {
- "description": "DeclarationRegistrationOptions"
- },
- "kind": 22,
- "detail": "DeclarationRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "DeclarationRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DeclarationRegistrationOptions"
- }
- },
- {
- "label": "DefinitionOptions",
- "labelDetails": {
- "description": "DefinitionOptions"
- },
- "kind": 22,
- "detail": "DefinitionOptions",
- "sortText": "7fffffff",
- "filterText": "DefinitionOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DefinitionOptions"
- }
- },
- {
- "label": "Delete",
- "labelDetails": {
- "description": "Delete"
- },
- "kind": 20,
- "detail": "Delete",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Delete",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Delete$0"
- },
- "data": {
- "for_ref": false,
- "hash": "/8QNqoILm8TFao4/rmeQIp6ZT+0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DeleteFile",
- "labelDetails": {
- "description": "DeleteFile"
- },
- "kind": 22,
- "detail": "DeleteFile",
- "sortText": "7fffffff",
- "filterText": "DeleteFile",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DeleteFile"
- },
- "data": {
- "for_ref": false,
- "hash": "ul8Jr/UAAGTXtUFC3I5dR9eD5mw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DeleteFileOptions",
- "labelDetails": {
- "description": "DeleteFileOptions"
- },
- "kind": 22,
- "detail": "DeleteFileOptions",
- "sortText": "7fffffff",
- "filterText": "DeleteFileOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DeleteFileOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "edEc5j/EaV64L9QB0Vkb9061W2M=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DeleteFilesParams",
- "labelDetails": {
- "description": "DeleteFilesParams"
- },
- "kind": 22,
- "detail": "DeleteFilesParams",
- "sortText": "7fffffff",
- "filterText": "DeleteFilesParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DeleteFilesParams"
- },
- "data": {
- "for_ref": false,
- "hash": "SpSo1NZ5bj4yVCTZyUV7XwL+My0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Diagnostic",
- "labelDetails": {
- "description": "Diagnostic"
- },
- "kind": 22,
- "detail": "Diagnostic",
- "sortText": "7fffffff",
- "filterText": "Diagnostic",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Diagnostic"
- },
- "data": {
- "for_ref": false,
- "hash": "duV17pFLAlsklF599KaM67O4p0I=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DiagnosticClientCapabilities",
- "labelDetails": {
- "description": "DiagnosticClientCapabilities"
- },
- "kind": 22,
- "detail": "DiagnosticClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "DiagnosticClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DiagnosticClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "/gwpXNkxOi+xPH5z7MLzHQjRHik=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DiagnosticOptions",
- "labelDetails": {
- "description": "DiagnosticOptions"
- },
- "kind": 22,
- "detail": "DiagnosticOptions",
- "sortText": "7fffffff",
- "filterText": "DiagnosticOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DiagnosticOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "ZegjgGXb1MBvqOmqD5oURBJ7n6M=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DiagnosticRegistrationOptions",
- "labelDetails": {
- "description": "DiagnosticRegistrationOptions"
- },
- "kind": 22,
- "detail": "DiagnosticRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "DiagnosticRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DiagnosticRegistrationOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "eMoLHw3I13V00TteCBeUD4RmHWs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DiagnosticRelatedInformation",
- "labelDetails": {
- "description": "DiagnosticRelatedInformation"
- },
- "kind": 22,
- "detail": "DiagnosticRelatedInformation",
- "sortText": "7fffffff",
- "filterText": "DiagnosticRelatedInformation",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DiagnosticRelatedInformation"
- },
- "data": {
- "for_ref": false,
- "hash": "5UvRL8Vw2LvVhcnEzw7TPJCCF+k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DiagnosticServerCancellationData",
- "labelDetails": {
- "description": "DiagnosticServerCancellationData"
- },
- "kind": 22,
- "detail": "DiagnosticServerCancellationData",
- "sortText": "7fffffff",
- "filterText": "DiagnosticServerCancellationData",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DiagnosticServerCancellationData"
- },
- "data": {
- "for_ref": false,
- "hash": "A2MWPyWiMYKOpj3u0kK1jGY4uP4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DiagnosticServerCapabilities",
- "labelDetails": {
- "description": "DiagnosticServerCapabilities"
- },
- "kind": 13,
- "detail": "DiagnosticServerCapabilities",
- "sortText": "7fffffff",
- "filterText": "DiagnosticServerCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DiagnosticServerCapabilities"
- }
- },
- {
- "label": "DiagnosticSeverity",
- "labelDetails": {
- "description": "DiagnosticSeverity"
- },
- "kind": 22,
- "detail": "DiagnosticSeverity",
- "sortText": "7fffffff",
- "filterText": "DiagnosticSeverity",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DiagnosticSeverity"
- },
- "data": {
- "for_ref": false,
- "hash": "K+E/D8Q+npiaOTh37tMGYM6sGPw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DiagnosticTag",
- "labelDetails": {
- "description": "DiagnosticTag"
- },
- "kind": 22,
- "detail": "DiagnosticTag",
- "sortText": "7fffffff",
- "filterText": "DiagnosticTag",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DiagnosticTag"
- },
- "data": {
- "for_ref": false,
- "hash": "HSu+zHMdROQw/OUga+4DLZajRZo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DiagnosticWorkspaceClientCapabilities",
- "labelDetails": {
- "description": "DiagnosticWorkspaceClientCapabilities"
- },
- "kind": 22,
- "detail": "DiagnosticWorkspaceClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "DiagnosticWorkspaceClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DiagnosticWorkspaceClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "ACNXr4LdMiGCuyPtfRwlP5WcmoM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DidChangeConfigurationClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "DidChangeConfigurationClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DidChangeConfigurationClientCapabilities"
- }
- },
- {
- "label": "DidChangeConfigurationParams",
- "labelDetails": {
- "description": "DidChangeConfigurationParams"
- },
- "kind": 22,
- "detail": "DidChangeConfigurationParams",
- "sortText": "7fffffff",
- "filterText": "DidChangeConfigurationParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DidChangeConfigurationParams"
- }
- },
- {
- "label": "DidChangeTextDocumentParams",
- "labelDetails": {
- "description": "DidChangeTextDocumentParams"
- },
- "kind": 22,
- "detail": "DidChangeTextDocumentParams",
- "sortText": "7fffffff",
- "filterText": "DidChangeTextDocumentParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DidChangeTextDocumentParams"
- }
- },
- {
- "label": "DidChangeWatchedFilesClientCapabilities",
- "labelDetails": {
- "description": "DidChangeWatchedFilesClientCapabilities"
- },
- "kind": 22,
- "detail": "DidChangeWatchedFilesClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "DidChangeWatchedFilesClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DidChangeWatchedFilesClientCapabilities"
- }
- },
- {
- "label": "DidChangeWatchedFilesParams",
- "labelDetails": {
- "description": "DidChangeWatchedFilesParams"
- },
- "kind": 22,
- "detail": "DidChangeWatchedFilesParams",
- "sortText": "7fffffff",
- "filterText": "DidChangeWatchedFilesParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DidChangeWatchedFilesParams"
- }
- },
- {
- "label": "DidChangeWatchedFilesRegistrationOptions",
- "labelDetails": {
- "description": "DidChangeWatchedFilesRegistrationOptions"
- },
- "kind": 22,
- "detail": "DidChangeWatchedFilesRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "DidChangeWatchedFilesRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DidChangeWatchedFilesRegistrationOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "yesozOXRANB1yODBg8oTWa4B9Y0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DidChangeWorkspaceFoldersParams",
- "labelDetails": {
- "description": "DidChangeWorkspaceFoldersParams"
- },
- "kind": 22,
- "detail": "DidChangeWorkspaceFoldersParams",
- "sortText": "7fffffff",
- "filterText": "DidChangeWorkspaceFoldersParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DidChangeWorkspaceFoldersParams"
- }
- },
- {
- "label": "DidCloseTextDocumentParams",
- "labelDetails": {
- "description": "DidCloseTextDocumentParams"
- },
- "kind": 22,
- "detail": "DidCloseTextDocumentParams",
- "sortText": "7fffffff",
- "filterText": "DidCloseTextDocumentParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DidCloseTextDocumentParams"
- }
- },
- {
- "label": "DidOpenTextDocumentParams",
- "labelDetails": {
- "description": "DidOpenTextDocumentParams"
- },
- "kind": 22,
- "detail": "DidOpenTextDocumentParams",
- "sortText": "7fffffff",
- "filterText": "DidOpenTextDocumentParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DidOpenTextDocumentParams"
- }
- },
- {
- "label": "DidSaveTextDocumentParams",
- "labelDetails": {
- "description": "DidSaveTextDocumentParams"
- },
- "kind": 22,
- "detail": "DidSaveTextDocumentParams",
- "sortText": "7fffffff",
- "filterText": "DidSaveTextDocumentParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DidSaveTextDocumentParams"
- }
- },
- {
- "label": "Diff",
- "labelDetails": {
- "description": "Diff"
- },
- "kind": 22,
- "detail": "Diff",
- "sortText": "7fffffff",
- "filterText": "Diff",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Diff"
- }
- },
- {
- "label": "Dimmer",
- "labelDetails": {
- "description": "Dimmer"
- },
- "kind": 20,
- "detail": "Dimmer",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Dimmer",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Dimmer$0"
- },
- "data": {
- "for_ref": false,
- "hash": "20ZTGJkF4e7XH0tIN52pfE03AEo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DisplaySwap",
- "labelDetails": {
- "description": "DisplaySwap"
- },
- "kind": 20,
- "detail": "DisplaySwap",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "DisplaySwap",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DisplaySwap$0"
- },
- "data": {
- "for_ref": false,
- "hash": "a1ElCigf10RVHnc+KIo6FPieukE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Do",
- "labelDetails": {
- "description": "Do"
- },
- "kind": 13,
- "detail": "Do",
- "sortText": "7fffffff",
- "filterText": "Do",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Do"
- }
- },
- {
- "label": "DocumentChangeOperation",
- "labelDetails": {
- "description": "DocumentChangeOperation"
- },
- "kind": 13,
- "detail": "DocumentChangeOperation",
- "sortText": "7fffffff",
- "filterText": "DocumentChangeOperation",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentChangeOperation"
- }
- },
- {
- "label": "DocumentChanges",
- "labelDetails": {
- "description": "DocumentChanges"
- },
- "kind": 13,
- "detail": "DocumentChanges",
- "sortText": "7fffffff",
- "filterText": "DocumentChanges",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentChanges"
- }
- },
- {
- "label": "DocumentColorClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "DocumentColorClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentColorClientCapabilities"
- }
- },
- {
- "label": "DocumentColorParams",
- "labelDetails": {
- "description": "DocumentColorParams"
- },
- "kind": 22,
- "detail": "DocumentColorParams",
- "sortText": "7fffffff",
- "filterText": "DocumentColorParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentColorParams"
- }
- },
- {
- "label": "DocumentDiagnosticParams",
- "labelDetails": {
- "description": "DocumentDiagnosticParams"
- },
- "kind": 22,
- "detail": "DocumentDiagnosticParams",
- "sortText": "7fffffff",
- "filterText": "DocumentDiagnosticParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentDiagnosticParams"
- },
- "data": {
- "for_ref": false,
- "hash": "W0xCt7xj8M30nq03UjE8miVhO0k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DocumentDiagnosticReport",
- "labelDetails": {
- "description": "DocumentDiagnosticReport"
- },
- "kind": 13,
- "detail": "DocumentDiagnosticReport",
- "sortText": "7fffffff",
- "filterText": "DocumentDiagnosticReport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentDiagnosticReport"
- },
- "data": {
- "for_ref": false,
- "hash": "Wqx1I9Kd/0bDiAPqMK6GnYW4seM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DocumentDiagnosticReportKind",
- "labelDetails": {
- "description": "DocumentDiagnosticReportKind"
- },
- "kind": 13,
- "detail": "DocumentDiagnosticReportKind",
- "sortText": "7fffffff",
- "filterText": "DocumentDiagnosticReportKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentDiagnosticReportKind"
- },
- "data": {
- "for_ref": false,
- "hash": "j5Ls5sZiHknmHxSwoNB+oYBgmcE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DocumentDiagnosticReportPartialResult",
- "labelDetails": {
- "description": "DocumentDiagnosticReportPartialResult"
- },
- "kind": 22,
- "detail": "DocumentDiagnosticReportPartialResult",
- "sortText": "7fffffff",
- "filterText": "DocumentDiagnosticReportPartialResult",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentDiagnosticReportPartialResult"
- },
- "data": {
- "for_ref": false,
- "hash": "/7wtbs49WaQEOwM4XbHRHuSFe2k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DocumentDiagnosticReportResult",
- "labelDetails": {
- "description": "DocumentDiagnosticReportResult"
- },
- "kind": 13,
- "detail": "DocumentDiagnosticReportResult",
- "sortText": "7fffffff",
- "filterText": "DocumentDiagnosticReportResult",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentDiagnosticReportResult"
- }
- },
- {
- "label": "DocumentFilter",
- "labelDetails": {
- "description": "DocumentFilter"
- },
- "kind": 22,
- "detail": "DocumentFilter",
- "sortText": "7fffffff",
- "filterText": "DocumentFilter",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentFilter"
- },
- "data": {
- "for_ref": false,
- "hash": "yIOOg7KnXUhr2ZN0YyiZVqAgN/c=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DocumentFormattingClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "DocumentFormattingClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentFormattingClientCapabilities"
- }
- },
- {
- "label": "DocumentFormattingOptions",
- "labelDetails": {
- "description": "DocumentFormattingOptions"
- },
- "kind": 22,
- "detail": "DocumentFormattingOptions",
- "sortText": "7fffffff",
- "filterText": "DocumentFormattingOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentFormattingOptions"
- }
- },
- {
- "label": "DocumentFormattingParams",
- "labelDetails": {
- "description": "DocumentFormattingParams"
- },
- "kind": 22,
- "detail": "DocumentFormattingParams",
- "sortText": "7fffffff",
- "filterText": "DocumentFormattingParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentFormattingParams"
- }
- },
- {
- "label": "DocumentHighlight",
- "labelDetails": {
- "description": "DocumentHighlight"
- },
- "kind": 22,
- "detail": "DocumentHighlight",
- "sortText": "7fffffff",
- "filterText": "DocumentHighlight",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentHighlight"
- },
- "data": {
- "for_ref": false,
- "hash": "XViT3QYYU4BoH2ysGQAlSfiO9Ao=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DocumentHighlightClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "DocumentHighlightClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentHighlightClientCapabilities"
- }
- },
- {
- "label": "DocumentHighlightKind",
- "labelDetails": {
- "description": "DocumentHighlightKind"
- },
- "kind": 22,
- "detail": "DocumentHighlightKind",
- "sortText": "7fffffff",
- "filterText": "DocumentHighlightKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentHighlightKind"
- },
- "data": {
- "for_ref": false,
- "hash": "LrarUGFZP3dib1H6S8wC6RyhIZY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DocumentHighlightOptions",
- "labelDetails": {
- "description": "DocumentHighlightOptions"
- },
- "kind": 22,
- "detail": "DocumentHighlightOptions",
- "sortText": "7fffffff",
- "filterText": "DocumentHighlightOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentHighlightOptions"
- }
- },
- {
- "label": "DocumentHighlightParams",
- "labelDetails": {
- "description": "DocumentHighlightParams"
- },
- "kind": 22,
- "detail": "DocumentHighlightParams",
- "sortText": "7fffffff",
- "filterText": "DocumentHighlightParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentHighlightParams"
- }
- },
- {
- "label": "DocumentLink",
- "labelDetails": {
- "description": "DocumentLink"
- },
- "kind": 22,
- "detail": "DocumentLink",
- "sortText": "7fffffff",
- "filterText": "DocumentLink",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentLink"
- },
- "data": {
- "for_ref": false,
- "hash": "o4ANH9etlVHo7xMUDkHtZedjxRI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DocumentLinkClientCapabilities",
- "labelDetails": {
- "description": "DocumentLinkClientCapabilities"
- },
- "kind": 22,
- "detail": "DocumentLinkClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "DocumentLinkClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentLinkClientCapabilities"
- }
- },
- {
- "label": "DocumentLinkOptions",
- "labelDetails": {
- "description": "DocumentLinkOptions"
- },
- "kind": 22,
- "detail": "DocumentLinkOptions",
- "sortText": "7fffffff",
- "filterText": "DocumentLinkOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentLinkOptions"
- }
- },
- {
- "label": "DocumentLinkParams",
- "labelDetails": {
- "description": "DocumentLinkParams"
- },
- "kind": 22,
- "detail": "DocumentLinkParams",
- "sortText": "7fffffff",
- "filterText": "DocumentLinkParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentLinkParams"
- }
- },
- {
- "label": "DocumentOnTypeFormattingClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "DocumentOnTypeFormattingClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentOnTypeFormattingClientCapabilities"
- }
- },
- {
- "label": "DocumentOnTypeFormattingOptions",
- "labelDetails": {
- "description": "DocumentOnTypeFormattingOptions"
- },
- "kind": 22,
- "detail": "DocumentOnTypeFormattingOptions",
- "sortText": "7fffffff",
- "filterText": "DocumentOnTypeFormattingOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentOnTypeFormattingOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "kTq0F6uQLAGD+eyyJGc7pjJYzBk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DocumentOnTypeFormattingParams",
- "labelDetails": {
- "description": "DocumentOnTypeFormattingParams"
- },
- "kind": 22,
- "detail": "DocumentOnTypeFormattingParams",
- "sortText": "7fffffff",
- "filterText": "DocumentOnTypeFormattingParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentOnTypeFormattingParams"
- }
- },
- {
- "label": "DocumentOnTypeFormattingRegistrationOptions",
- "labelDetails": {
- "description": "DocumentOnTypeFormattingRegistrationOptions"
- },
- "kind": 22,
- "detail": "DocumentOnTypeFormattingRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "DocumentOnTypeFormattingRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentOnTypeFormattingRegistrationOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "xENFcdwfJYBxHgigTe3dUqV2TRo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DocumentRangeFormattingClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "DocumentRangeFormattingClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentRangeFormattingClientCapabilities"
- }
- },
- {
- "label": "DocumentRangeFormattingOptions",
- "labelDetails": {
- "description": "DocumentRangeFormattingOptions"
- },
- "kind": 22,
- "detail": "DocumentRangeFormattingOptions",
- "sortText": "7fffffff",
- "filterText": "DocumentRangeFormattingOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentRangeFormattingOptions"
- }
- },
- {
- "label": "DocumentRangeFormattingParams",
- "labelDetails": {
- "description": "DocumentRangeFormattingParams"
- },
- "kind": 22,
- "detail": "DocumentRangeFormattingParams",
- "sortText": "7fffffff",
- "filterText": "DocumentRangeFormattingParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentRangeFormattingParams"
- }
- },
- {
- "label": "DocumentSelector",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "DocumentSelector",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentSelector"
- },
- "data": {
- "for_ref": false,
- "hash": "kD4QTrLYPun63+vha8n/OH8Sk78=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DocumentSymbol",
- "labelDetails": {
- "description": "DocumentSymbol"
- },
- "kind": 22,
- "detail": "DocumentSymbol",
- "sortText": "7fffffff",
- "filterText": "DocumentSymbol",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentSymbol"
- },
- "data": {
- "for_ref": false,
- "hash": "bLpQuDRxPVmXXSzB9hEgHVXzPiw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DocumentSymbolClientCapabilities",
- "labelDetails": {
- "description": "DocumentSymbolClientCapabilities"
- },
- "kind": 22,
- "detail": "DocumentSymbolClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "DocumentSymbolClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentSymbolClientCapabilities"
- }
- },
- {
- "label": "DocumentSymbolOptions",
- "labelDetails": {
- "description": "DocumentSymbolOptions"
- },
- "kind": 22,
- "detail": "DocumentSymbolOptions",
- "sortText": "7fffffff",
- "filterText": "DocumentSymbolOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentSymbolOptions"
- }
- },
- {
- "label": "DocumentSymbolParams",
- "labelDetails": {
- "description": "DocumentSymbolParams"
- },
- "kind": 22,
- "detail": "DocumentSymbolParams",
- "sortText": "7fffffff",
- "filterText": "DocumentSymbolParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentSymbolParams"
- }
- },
- {
- "label": "DocumentSymbolResponse",
- "labelDetails": {
- "description": "DocumentSymbolResponse"
- },
- "kind": 13,
- "detail": "DocumentSymbolResponse",
- "sortText": "7fffffff",
- "filterText": "DocumentSymbolResponse",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DocumentSymbolResponse"
- }
- },
- {
- "label": "Documentation",
- "labelDetails": {
- "description": "Documentation"
- },
- "kind": 13,
- "detail": "Documentation",
- "sortText": "7fffffff",
- "filterText": "Documentation",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Documentation"
- }
- },
- {
- "label": "DynamicRegistrationClientCapabilities",
- "labelDetails": {
- "description": "DynamicRegistrationClientCapabilities"
- },
- "kind": 22,
- "detail": "DynamicRegistrationClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "DynamicRegistrationClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DynamicRegistrationClientCapabilities"
- }
- },
- {
- "label": "Eisu",
- "labelDetails": {
- "description": "Eisu"
- },
- "kind": 20,
- "detail": "Eisu",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Eisu",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Eisu$0"
- },
- "data": {
- "for_ref": false,
- "hash": "H9bxphqrPXAzlAQKgNDc17TSuU0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Eject",
- "labelDetails": {
- "description": "Eject"
- },
- "kind": 20,
- "detail": "Eject",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Eject",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Eject$0"
- },
- "data": {
- "for_ref": false,
- "hash": "wBwb7vD3ZF/tt1yW956Nrc0R4AQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ElementState",
- "labelDetails": {
- "description": "ElementState"
- },
- "kind": 13,
- "detail": "ElementState",
- "sortText": "7fffffff",
- "filterText": "ElementState",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ElementState"
- },
- "data": {
- "for_ref": false,
- "hash": "LJtz3joGF+bPgPbtnZPMHvDMSy0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "End",
- "labelDetails": {
- "description": "End"
- },
- "kind": 20,
- "detail": "End",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "End",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "End$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ACm4YaMCBC74z5w8yx9+qMO/dWk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "EndCall",
- "labelDetails": {
- "description": "EndCall"
- },
- "kind": 20,
- "detail": "EndCall",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "EndCall",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "EndCall$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ucQk1Mi73zNbQwB1PmBQn1IJugM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Enter",
- "labelDetails": {
- "description": "Enter"
- },
- "kind": 20,
- "detail": "Enter",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Enter",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Enter$0"
- },
- "data": {
- "for_ref": false,
- "hash": "7Tt+WE2e9/iFmFaj2jl29NJO/kc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "EraseEof",
- "labelDetails": {
- "description": "EraseEof"
- },
- "kind": 20,
- "detail": "EraseEof",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "EraseEof",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "EraseEof$0"
- },
- "data": {
- "for_ref": false,
- "hash": "vULpkGHJrNIBylcHp0BLx3GRdGk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Escape",
- "labelDetails": {
- "description": "Escape"
- },
- "kind": 20,
- "detail": "Escape",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Escape",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Escape$0"
- },
- "data": {
- "for_ref": false,
- "hash": "knenrwqKX25kqq/cjCUE7NWkfNc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Event",
- "labelDetails": {
- "description": "Event<{unknown}>"
- },
- "kind": 13,
- "detail": "Event<{unknown}>",
- "sortText": "7fffffff",
- "filterText": "Event",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Event"
- },
- "data": {
- "for_ref": false,
- "hash": "wr+QqNrGdfffNMnPRegk8pFGVpM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "EventLoop",
- "labelDetails": {
- "description": "EventLoop<{unknown}>"
- },
- "kind": 22,
- "detail": "EventLoop<{unknown}>",
- "sortText": "7fffffff",
- "filterText": "EventLoop",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "EventLoop"
- },
- "data": {
- "for_ref": false,
- "hash": "7xnHmUcoFMjSfliMuZEqdMrgDik=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ExSel",
- "labelDetails": {
- "description": "ExSel"
- },
- "kind": 20,
- "detail": "ExSel",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ExSel",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ExSel$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Q/iFbDufdQ0e8DIKT0Iw598sXfY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Execute",
- "labelDetails": {
- "description": "Execute"
- },
- "kind": 20,
- "detail": "Execute",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Execute",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Execute$0"
- }
- },
- {
- "label": "ExecuteCommandClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "ExecuteCommandClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ExecuteCommandClientCapabilities"
- }
- },
- {
- "label": "ExecuteCommandOptions",
- "labelDetails": {
- "description": "ExecuteCommandOptions"
- },
- "kind": 22,
- "detail": "ExecuteCommandOptions",
- "sortText": "7fffffff",
- "filterText": "ExecuteCommandOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ExecuteCommandOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "IVSwSAig7mG6PUOOrEfRRg9o97Y=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ExecuteCommandParams",
- "labelDetails": {
- "description": "ExecuteCommandParams"
- },
- "kind": 22,
- "detail": "ExecuteCommandParams",
- "sortText": "7fffffff",
- "filterText": "ExecuteCommandParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ExecuteCommandParams"
- }
- },
- {
- "label": "ExecuteCommandRegistrationOptions",
- "labelDetails": {
- "description": "ExecuteCommandRegistrationOptions"
- },
- "kind": 22,
- "detail": "ExecuteCommandRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "ExecuteCommandRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ExecuteCommandRegistrationOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "5w5HAN9FZaAPaGq3P6P9PMFZXXs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Exit",
- "labelDetails": {
- "description": "Exit"
- },
- "kind": 20,
- "detail": "Exit",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Exit",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Exit$0"
- },
- "data": {
- "for_ref": false,
- "hash": "4JH4Lq8kdigXNf3lc72Z+3um5zw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F",
- "labelDetails": {
- "description": "F<'_>"
- },
- "kind": 13,
- "detail": "F<'_>",
- "sortText": "7fffffff",
- "filterText": "F",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F"
- }
- },
- {
- "label": "F1",
- "labelDetails": {
- "description": "F1"
- },
- "kind": 20,
- "detail": "F1",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F1",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F1$0"
- },
- "data": {
- "for_ref": false,
- "hash": "9Mzzydfvs/FW9hwktgMFTQkgtns=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F10",
- "labelDetails": {
- "description": "F10"
- },
- "kind": 20,
- "detail": "F10",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F10",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F10$0"
- },
- "data": {
- "for_ref": false,
- "hash": "VEUbkvlW4C1Q9mB00y0vuK6BOrc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F11",
- "labelDetails": {
- "description": "F11"
- },
- "kind": 20,
- "detail": "F11",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F11",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F11$0"
- },
- "data": {
- "for_ref": false,
- "hash": "E7uT7Z3Oa7I3Nkg8Ul6qTQtB2Aw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F12",
- "labelDetails": {
- "description": "F12"
- },
- "kind": 20,
- "detail": "F12",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F12",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F12$0"
- },
- "data": {
- "for_ref": false,
- "hash": "pVSmp0xPRDF97D6i4fiQ5zAmKSU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F13",
- "labelDetails": {
- "description": "F13"
- },
- "kind": 20,
- "detail": "F13",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F13",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F13$0"
- },
- "data": {
- "for_ref": false,
- "hash": "wQ34Ku+1e7gc7tHHDQEn0VNuugw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F14",
- "labelDetails": {
- "description": "F14"
- },
- "kind": 20,
- "detail": "F14",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F14",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F14$0"
- },
- "data": {
- "for_ref": false,
- "hash": "tvOtb0bNz1eB8SK5+AthBjQstYo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F15",
- "labelDetails": {
- "description": "F15"
- },
- "kind": 20,
- "detail": "F15",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F15",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F15$0"
- },
- "data": {
- "for_ref": false,
- "hash": "9VjpspS30bxFTzepe8e02sN4oU0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F16",
- "labelDetails": {
- "description": "F16"
- },
- "kind": 20,
- "detail": "F16",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F16",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F16$0"
- },
- "data": {
- "for_ref": false,
- "hash": "WXs6J2BxL+dxArCp40YvFnrgFVg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F17",
- "labelDetails": {
- "description": "F17"
- },
- "kind": 20,
- "detail": "F17",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F17",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F17$0"
- },
- "data": {
- "for_ref": false,
- "hash": "lzRpJvyPXffP1uonGls45cHK2sg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F18",
- "labelDetails": {
- "description": "F18"
- },
- "kind": 20,
- "detail": "F18",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F18",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F18$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Yjn6pbqYIdz16swJz24gpqw9Otc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F19",
- "labelDetails": {
- "description": "F19"
- },
- "kind": 20,
- "detail": "F19",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F19",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F19$0"
- },
- "data": {
- "for_ref": false,
- "hash": "vtnA+339n10GeoIFyF2f4Atsh1s=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F2",
- "labelDetails": {
- "description": "F2"
- },
- "kind": 20,
- "detail": "F2",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F2",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F2$0"
- },
- "data": {
- "for_ref": false,
- "hash": "GJ6cKoAOWhRfslYm2ZQ7NMccjWo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F20",
- "labelDetails": {
- "description": "F20"
- },
- "kind": 20,
- "detail": "F20",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F20",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F20$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ssm3J612ScN07gx/gW9KkHdWgoM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F21",
- "labelDetails": {
- "description": "F21"
- },
- "kind": 20,
- "detail": "F21",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F21",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F21$0"
- },
- "data": {
- "for_ref": false,
- "hash": "3um8fz1uHHsALl/gGk1tUis+jWo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F22",
- "labelDetails": {
- "description": "F22"
- },
- "kind": 20,
- "detail": "F22",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F22",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F22$0"
- },
- "data": {
- "for_ref": false,
- "hash": "qcV7+KQVrD4ei4JLQB+SyS9sCqI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F23",
- "labelDetails": {
- "description": "F23"
- },
- "kind": 20,
- "detail": "F23",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F23",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F23$0"
- },
- "data": {
- "for_ref": false,
- "hash": "xcs7IqSGmN6gAXoGRf3cbs5DAdw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F24",
- "labelDetails": {
- "description": "F24"
- },
- "kind": 20,
- "detail": "F24",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F24",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F24$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Eepjgbn8xSDnrQ2tkftWsysl+N0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F25",
- "labelDetails": {
- "description": "F25"
- },
- "kind": 20,
- "detail": "F25",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F25",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F25$0"
- },
- "data": {
- "for_ref": false,
- "hash": "zDx064XOVPgTKT3fRSAuGEElk2Y=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F26",
- "labelDetails": {
- "description": "F26"
- },
- "kind": 20,
- "detail": "F26",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F26",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F26$0"
- },
- "data": {
- "for_ref": false,
- "hash": "vJakuKsvQBq0NCkdcbYX0eaRMMM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F27",
- "labelDetails": {
- "description": "F27"
- },
- "kind": 20,
- "detail": "F27",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F27",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F27$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ZoZs6P9cgIvBRVi/CfOpCnj2wx8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F28",
- "labelDetails": {
- "description": "F28"
- },
- "kind": 20,
- "detail": "F28",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F28",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F28$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Z7KyMnUInW7geXeyPWpBdq7pL+c=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F29",
- "labelDetails": {
- "description": "F29"
- },
- "kind": 20,
- "detail": "F29",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F29",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F29$0"
- },
- "data": {
- "for_ref": false,
- "hash": "3FedJlBi8Yr26nMD4Xs4Vf1gzbk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F3",
- "labelDetails": {
- "description": "F3"
- },
- "kind": 20,
- "detail": "F3",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F3",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F3$0"
- },
- "data": {
- "for_ref": false,
- "hash": "rmmPyWYAuLF116YB+xzoFRzfnbs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F30",
- "labelDetails": {
- "description": "F30"
- },
- "kind": 20,
- "detail": "F30",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F30",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F30$0"
- },
- "data": {
- "for_ref": false,
- "hash": "zkkiNrZI1ehI8kDECv2ZEA9hGFE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F31",
- "labelDetails": {
- "description": "F31"
- },
- "kind": 20,
- "detail": "F31",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F31",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F31$0"
- },
- "data": {
- "for_ref": false,
- "hash": "yL7SOg2prtv2FN6gc0HIHT1oDlo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F32",
- "labelDetails": {
- "description": "F32"
- },
- "kind": 20,
- "detail": "F32",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F32",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F32$0"
- },
- "data": {
- "for_ref": false,
- "hash": "GSxt087l/D489TstJKIjb/a6fO8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F33",
- "labelDetails": {
- "description": "F33"
- },
- "kind": 20,
- "detail": "F33",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F33",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F33$0"
- },
- "data": {
- "for_ref": false,
- "hash": "+qHLF+enwMfOKYFnBSQBpPpvTsE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F34",
- "labelDetails": {
- "description": "F34"
- },
- "kind": 20,
- "detail": "F34",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F34",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F34$0"
- },
- "data": {
- "for_ref": false,
- "hash": "oF8gDdg5+RLXTOOCKeM+U5XYGug=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F35",
- "labelDetails": {
- "description": "F35"
- },
- "kind": 20,
- "detail": "F35",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F35",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F35$0"
- },
- "data": {
- "for_ref": false,
- "hash": "YZIYHjxYIcW/Yq/3FkcwWjWCWeA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F4",
- "labelDetails": {
- "description": "F4"
- },
- "kind": 20,
- "detail": "F4",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F4",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F4$0"
- },
- "data": {
- "for_ref": false,
- "hash": "l5RuW9KcT6My8v3VSlewl9+DOFU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F5",
- "labelDetails": {
- "description": "F5"
- },
- "kind": 20,
- "detail": "F5",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F5",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F5$0"
- },
- "data": {
- "for_ref": false,
- "hash": "olKYh1Nngglqn0LH/O/yEA5I98o=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F6",
- "labelDetails": {
- "description": "F6"
- },
- "kind": 20,
- "detail": "F6",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F6",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F6$0"
- },
- "data": {
- "for_ref": false,
- "hash": "mOO/TJTQpluuJNDcFxweTdy5hBc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F7",
- "labelDetails": {
- "description": "F7"
- },
- "kind": 20,
- "detail": "F7",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F7",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F7$0"
- },
- "data": {
- "for_ref": false,
- "hash": "xcsEWfWrYeFvTIMGpfJ/X/u4klE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F8",
- "labelDetails": {
- "description": "F8"
- },
- "kind": 20,
- "detail": "F8",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F8",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F8$0"
- },
- "data": {
- "for_ref": false,
- "hash": "z7s+Pap2q6Sv7ljzW3BsfTNB+xc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "F9",
- "labelDetails": {
- "description": "F9"
- },
- "kind": 20,
- "detail": "F9",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "F9",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "F9$0"
- },
- "data": {
- "for_ref": false,
- "hash": "dxk6wYUkVxgx6yqWOZSOEv6anoQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FG",
- "labelDetails": {
- "description": "[u8; 3]"
- },
- "kind": 21,
- "detail": "[u8; 3]",
- "sortText": "7fffffff",
- "filterText": "FG",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FG"
- }
- },
- {
- "label": "FONT",
- "labelDetails": {
- "description": "LazyLock<FontRef<'static>, fn() -> FontRef<'static>>"
- },
- "kind": 12,
- "detail": "LazyLock<FontRef<'static>, fn() -> FontRef<'static>>",
- "sortText": "7fffffff",
- "filterText": "FONT",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FONT"
- }
- },
- {
- "label": "FailureHandlingKind",
- "labelDetails": {
- "description": "FailureHandlingKind"
- },
- "kind": 13,
- "detail": "FailureHandlingKind",
- "sortText": "7fffffff",
- "filterText": "FailureHandlingKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FailureHandlingKind"
- }
- },
- {
- "label": "FavoriteClear0",
- "labelDetails": {
- "description": "FavoriteClear0"
- },
- "kind": 20,
- "detail": "FavoriteClear0",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FavoriteClear0",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FavoriteClear0$0"
- },
- "data": {
- "for_ref": false,
- "hash": "jv6dd0DEb2fG8vGatKxAqwaIqmM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FavoriteClear1",
- "labelDetails": {
- "description": "FavoriteClear1"
- },
- "kind": 20,
- "detail": "FavoriteClear1",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FavoriteClear1",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FavoriteClear1$0"
- },
- "data": {
- "for_ref": false,
- "hash": "4d7NLvN/18nwS25MLFn882ppTFw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FavoriteClear2",
- "labelDetails": {
- "description": "FavoriteClear2"
- },
- "kind": 20,
- "detail": "FavoriteClear2",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FavoriteClear2",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FavoriteClear2$0"
- },
- "data": {
- "for_ref": false,
- "hash": "fLGZP3dLbZsJ5q32LMKnIFnkeAw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FavoriteClear3",
- "labelDetails": {
- "description": "FavoriteClear3"
- },
- "kind": 20,
- "detail": "FavoriteClear3",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FavoriteClear3",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FavoriteClear3$0"
- },
- "data": {
- "for_ref": false,
- "hash": "yc2z7J2MGb1gsRTgwF0VueYB4YI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FavoriteRecall0",
- "labelDetails": {
- "description": "FavoriteRecall0"
- },
- "kind": 20,
- "detail": "FavoriteRecall0",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FavoriteRecall0",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FavoriteRecall0$0"
- },
- "data": {
- "for_ref": false,
- "hash": "dPOhDj1ikTWbIj3vW368gyrMEUI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FavoriteRecall1",
- "labelDetails": {
- "description": "FavoriteRecall1"
- },
- "kind": 20,
- "detail": "FavoriteRecall1",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FavoriteRecall1",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FavoriteRecall1$0"
- },
- "data": {
- "for_ref": false,
- "hash": "IhGRP5izFkMvCJzPToDqCOarotI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FavoriteRecall2",
- "labelDetails": {
- "description": "FavoriteRecall2"
- },
- "kind": 20,
- "detail": "FavoriteRecall2",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FavoriteRecall2",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FavoriteRecall2$0"
- },
- "data": {
- "for_ref": false,
- "hash": "7IZuVDpjiyaXBHwlXC4YTvDyVjY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FavoriteRecall3",
- "labelDetails": {
- "description": "FavoriteRecall3"
- },
- "kind": 20,
- "detail": "FavoriteRecall3",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FavoriteRecall3",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FavoriteRecall3$0"
- },
- "data": {
- "for_ref": false,
- "hash": "h7Zd6YHEsc85Ja1e3wSZveYETVU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FavoriteStore0",
- "labelDetails": {
- "description": "FavoriteStore0"
- },
- "kind": 20,
- "detail": "FavoriteStore0",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FavoriteStore0",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FavoriteStore0$0"
- },
- "data": {
- "for_ref": false,
- "hash": "iESlkX7WblQLqCgHzQZE461y/D8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FavoriteStore1",
- "labelDetails": {
- "description": "FavoriteStore1"
- },
- "kind": 20,
- "detail": "FavoriteStore1",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FavoriteStore1",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FavoriteStore1$0"
- },
- "data": {
- "for_ref": false,
- "hash": "K7nvydRAcqgZ63Ay/vi67bMLHKg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FavoriteStore2",
- "labelDetails": {
- "description": "FavoriteStore2"
- },
- "kind": 20,
- "detail": "FavoriteStore2",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FavoriteStore2",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FavoriteStore2$0"
- },
- "data": {
- "for_ref": false,
- "hash": "HaW3mUTftYTm+gRHtl8b60Fs60Q=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FavoriteStore3",
- "labelDetails": {
- "description": "FavoriteStore3"
- },
- "kind": 20,
- "detail": "FavoriteStore3",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FavoriteStore3",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FavoriteStore3$0"
- },
- "data": {
- "for_ref": false,
- "hash": "0vJC0iuoqjFzRvsKoQkC2Fy8hLQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FileChangeType",
- "labelDetails": {
- "description": "FileChangeType"
- },
- "kind": 22,
- "detail": "FileChangeType",
- "sortText": "7fffffff",
- "filterText": "FileChangeType",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FileChangeType"
- },
- "data": {
- "for_ref": false,
- "hash": "RrEG5Q2f9NBHKau0eMyNUwW2CHU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FileCreate",
- "labelDetails": {
- "description": "FileCreate"
- },
- "kind": 22,
- "detail": "FileCreate",
- "sortText": "7fffffff",
- "filterText": "FileCreate",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FileCreate"
- },
- "data": {
- "for_ref": false,
- "hash": "NSjZAy6yOy5gPD2IazkuSHKROO8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FileDelete",
- "labelDetails": {
- "description": "FileDelete"
- },
- "kind": 22,
- "detail": "FileDelete",
- "sortText": "7fffffff",
- "filterText": "FileDelete",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FileDelete"
- },
- "data": {
- "for_ref": false,
- "hash": "bquxfUI7FxOnWVwP1Tbhe8HcFGc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FileEvent",
- "labelDetails": {
- "description": "FileEvent"
- },
- "kind": 22,
- "detail": "FileEvent",
- "sortText": "7fffffff",
- "filterText": "FileEvent",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FileEvent"
- },
- "data": {
- "for_ref": false,
- "hash": "NozAQC2qzBGKxG4FWZmsbf06nXY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FileOperationFilter",
- "labelDetails": {
- "description": "FileOperationFilter"
- },
- "kind": 22,
- "detail": "FileOperationFilter",
- "sortText": "7fffffff",
- "filterText": "FileOperationFilter",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FileOperationFilter"
- },
- "data": {
- "for_ref": false,
- "hash": "pieTlWjqNdjxnexozV4Q+Oz6iaw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FileOperationPattern",
- "labelDetails": {
- "description": "FileOperationPattern"
- },
- "kind": 22,
- "detail": "FileOperationPattern",
- "sortText": "7fffffff",
- "filterText": "FileOperationPattern",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FileOperationPattern"
- },
- "data": {
- "for_ref": false,
- "hash": "gMqXhyIxa9h5VlhiiwsIKuVPHuo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FileOperationPatternKind",
- "labelDetails": {
- "description": "FileOperationPatternKind"
- },
- "kind": 13,
- "detail": "FileOperationPatternKind",
- "sortText": "7fffffff",
- "filterText": "FileOperationPatternKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FileOperationPatternKind"
- },
- "data": {
- "for_ref": false,
- "hash": "KBIWvW0crkawfBtOaJVP7cLSwWw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FileOperationPatternOptions",
- "labelDetails": {
- "description": "FileOperationPatternOptions"
- },
- "kind": 22,
- "detail": "FileOperationPatternOptions",
- "sortText": "7fffffff",
- "filterText": "FileOperationPatternOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FileOperationPatternOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "pwWcgWBPcnfba847yu6l5bzI0Gc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FileOperationRegistrationOptions",
- "labelDetails": {
- "description": "FileOperationRegistrationOptions"
- },
- "kind": 22,
- "detail": "FileOperationRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "FileOperationRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FileOperationRegistrationOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "c3Sq7J1QqrF/n7+i1VWtl1f2l+Y=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FileRename",
- "labelDetails": {
- "description": "FileRename"
- },
- "kind": 22,
- "detail": "FileRename",
- "sortText": "7fffffff",
- "filterText": "FileRename",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FileRename"
- },
- "data": {
- "for_ref": false,
- "hash": "SkL1VinwZKhYe7C4RHrHi88zQEY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FileSystemWatcher",
- "labelDetails": {
- "description": "FileSystemWatcher"
- },
- "kind": 22,
- "detail": "FileSystemWatcher",
- "sortText": "7fffffff",
- "filterText": "FileSystemWatcher",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FileSystemWatcher"
- }
- },
- {
- "label": "FinalMode",
- "labelDetails": {
- "description": "FinalMode"
- },
- "kind": 20,
- "detail": "FinalMode",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FinalMode",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FinalMode$0"
- },
- "data": {
- "for_ref": false,
- "hash": "QnCN/j7ZFcVfeOI3g6mfEbF3nCs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Find",
- "labelDetails": {
- "description": "Find"
- },
- "kind": 20,
- "detail": "Find",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Find",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Find$0"
- },
- "data": {
- "for_ref": false,
- "hash": "I103CD0o8V3ZFC3QbjjP3yFRwY4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Fn",
- "labelDetails": {
- "description": "Fn"
- },
- "kind": 20,
- "detail": "Fn",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Fn",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Fn$0"
- },
- "data": {
- "for_ref": false,
- "hash": "i1f+IT3QeDt8xSaZmADAeqfWbj4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Fn",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "Fn",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Fn"
- },
- "data": {
- "for_ref": false,
- "hash": "7Qq1HYDM+fl8j0b55A7G6fgBfH8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FnLock",
- "labelDetails": {
- "description": "FnLock"
- },
- "kind": 20,
- "detail": "FnLock",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "FnLock",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FnLock$0"
- },
- "data": {
- "for_ref": false,
- "hash": "1Oc/yMH9OFQ12ghZyllVseLo9LE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FoldingProviderOptions",
- "labelDetails": {
- "description": "FoldingProviderOptions"
- },
- "kind": 22,
- "detail": "FoldingProviderOptions",
- "sortText": "7fffffff",
- "filterText": "FoldingProviderOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FoldingProviderOptions"
- }
- },
- {
- "label": "FoldingRange",
- "labelDetails": {
- "description": "FoldingRange"
- },
- "kind": 22,
- "detail": "FoldingRange",
- "sortText": "7fffffff",
- "filterText": "FoldingRange",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FoldingRange"
- },
- "data": {
- "for_ref": false,
- "hash": "J9EnQ+j/giQtgBjPR1dzbG+frhA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FoldingRangeCapability",
- "labelDetails": {
- "description": "FoldingRangeCapability"
- },
- "kind": 22,
- "detail": "FoldingRangeCapability",
- "sortText": "7fffffff",
- "filterText": "FoldingRangeCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FoldingRangeCapability"
- }
- },
- {
- "label": "FoldingRangeClientCapabilities",
- "labelDetails": {
- "description": "FoldingRangeClientCapabilities"
- },
- "kind": 22,
- "detail": "FoldingRangeClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "FoldingRangeClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FoldingRangeClientCapabilities"
- }
- },
- {
- "label": "FoldingRangeKind",
- "labelDetails": {
- "description": "FoldingRangeKind"
- },
- "kind": 13,
- "detail": "FoldingRangeKind",
- "sortText": "7fffffff",
- "filterText": "FoldingRangeKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FoldingRangeKind"
- },
- "data": {
- "for_ref": false,
- "hash": "mEK02UirhiGicnMKH+tYJXU1ipI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FoldingRangeKindCapability",
- "labelDetails": {
- "description": "FoldingRangeKindCapability"
- },
- "kind": 22,
- "detail": "FoldingRangeKindCapability",
- "sortText": "7fffffff",
- "filterText": "FoldingRangeKindCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FoldingRangeKindCapability"
- }
- },
- {
- "label": "FoldingRangeParams",
- "labelDetails": {
- "description": "FoldingRangeParams"
- },
- "kind": 22,
- "detail": "FoldingRangeParams",
- "sortText": "7fffffff",
- "filterText": "FoldingRangeParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FoldingRangeParams"
- }
- },
- {
- "label": "FoldingRangeProviderCapability",
- "labelDetails": {
- "description": "FoldingRangeProviderCapability"
- },
- "kind": 13,
- "detail": "FoldingRangeProviderCapability",
- "sortText": "7fffffff",
- "filterText": "FoldingRangeProviderCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FoldingRangeProviderCapability"
- }
- },
- {
- "label": "FontRef",
- "labelDetails": {
- "description": "FontRef<'_>"
- },
- "kind": 22,
- "detail": "FontRef<'_>",
- "sortText": "7fffffff",
- "filterText": "FontRef",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FontRef"
- },
- "data": {
- "for_ref": false,
- "hash": "5wqxQRZa0m39BWKYKA3dXXVASaU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FormattingOptions",
- "labelDetails": {
- "description": "FormattingOptions"
- },
- "kind": 22,
- "detail": "FormattingOptions",
- "sortText": "7fffffff",
- "filterText": "FormattingOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FormattingOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "daWTVC2X/Fx7brWr5MGbcpUffXQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FormattingProperty",
- "labelDetails": {
- "description": "FormattingProperty"
- },
- "kind": 13,
- "detail": "FormattingProperty",
- "sortText": "7fffffff",
- "filterText": "FormattingProperty",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FormattingProperty"
- }
- },
- {
- "label": "FullDocumentDiagnosticReport",
- "labelDetails": {
- "description": "FullDocumentDiagnosticReport"
- },
- "kind": 22,
- "detail": "FullDocumentDiagnosticReport",
- "sortText": "7fffffff",
- "filterText": "FullDocumentDiagnosticReport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FullDocumentDiagnosticReport"
- },
- "data": {
- "for_ref": false,
- "hash": "R9pBKZM8MjdLbhunX6eQodmXklo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "GeneralClientCapabilities",
- "labelDetails": {
- "description": "GeneralClientCapabilities"
- },
- "kind": 22,
- "detail": "GeneralClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "GeneralClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GeneralClientCapabilities"
- }
- },
- {
- "label": "GenericOptions",
- "labelDetails": {
- "description": "GenericOptions"
- },
- "kind": 22,
- "detail": "GenericOptions",
- "sortText": "7fffffff",
- "filterText": "GenericOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GenericOptions"
- }
- },
- {
- "label": "GenericParams",
- "labelDetails": {
- "description": "GenericParams"
- },
- "kind": 22,
- "detail": "GenericParams",
- "sortText": "7fffffff",
- "filterText": "GenericParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GenericParams"
- }
- },
- {
- "label": "GenericRegistrationOptions",
- "labelDetails": {
- "description": "GenericRegistrationOptions"
- },
- "kind": 22,
- "detail": "GenericRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "GenericRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GenericRegistrationOptions"
- }
- },
- {
- "label": "GlobPattern",
- "labelDetails": {
- "description": "GlobPattern"
- },
- "kind": 13,
- "detail": "GlobPattern",
- "sortText": "7fffffff",
- "filterText": "GlobPattern",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GlobPattern"
- },
- "data": {
- "for_ref": false,
- "hash": "29kD0M5qVTCELny2Zo6iPastFqk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "GoBack",
- "labelDetails": {
- "description": "GoBack"
- },
- "kind": 20,
- "detail": "GoBack",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "GoBack",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GoBack$0"
- },
- "data": {
- "for_ref": false,
- "hash": "tx4JiMg73DXOJVVG6Mc+lSQzeYg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "GoHome",
- "labelDetails": {
- "description": "GoHome"
- },
- "kind": 20,
- "detail": "GoHome",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "GoHome",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GoHome$0"
- },
- "data": {
- "for_ref": false,
- "hash": "VOYxGywBLYIrcGfcSTL4by0h1EY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "GotoCapability",
- "labelDetails": {
- "description": "GotoCapability"
- },
- "kind": 22,
- "detail": "GotoCapability",
- "sortText": "7fffffff",
- "filterText": "GotoCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GotoCapability"
- }
- },
- {
- "label": "GotoDefinitionParams",
- "labelDetails": {
- "description": "GotoDefinitionParams"
- },
- "kind": 22,
- "detail": "GotoDefinitionParams",
- "sortText": "7fffffff",
- "filterText": "GotoDefinitionParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GotoDefinitionParams"
- }
- },
- {
- "label": "GotoDefinitionResponse",
- "labelDetails": {
- "description": "GotoDefinitionResponse"
- },
- "kind": 13,
- "detail": "GotoDefinitionResponse",
- "sortText": "7fffffff",
- "filterText": "GotoDefinitionResponse",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GotoDefinitionResponse"
- },
- "data": {
- "for_ref": false,
- "hash": "PvXzA63lLCw2KZni9PzXLDe+zYw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "GroupFirst",
- "labelDetails": {
- "description": "GroupFirst"
- },
- "kind": 20,
- "detail": "GroupFirst",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "GroupFirst",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GroupFirst$0"
- },
- "data": {
- "for_ref": false,
- "hash": "SzSS/Lv6u98kxt4PJVS8AMDEuNk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "GroupLast",
- "labelDetails": {
- "description": "GroupLast"
- },
- "kind": 20,
- "detail": "GroupLast",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "GroupLast",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GroupLast$0"
- },
- "data": {
- "for_ref": false,
- "hash": "4ty/uGB0P1fz6UVWEb9hyQy55o8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "GroupNext",
- "labelDetails": {
- "description": "GroupNext"
- },
- "kind": 20,
- "detail": "GroupNext",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "GroupNext",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GroupNext$0"
- },
- "data": {
- "for_ref": false,
- "hash": "6smNBSYzVqzX2D9TW/uh8CcMXu8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "GroupPrevious",
- "labelDetails": {
- "description": "GroupPrevious"
- },
- "kind": 20,
- "detail": "GroupPrevious",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "GroupPrevious",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GroupPrevious$0"
- },
- "data": {
- "for_ref": false,
- "hash": "jdrlo6nrTUmm8kUGqBFlvBGkYw8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Guide",
- "labelDetails": {
- "description": "Guide"
- },
- "kind": 20,
- "detail": "Guide",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Guide",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Guide$0"
- },
- "data": {
- "for_ref": false,
- "hash": "2P+7uGqrKPEy6YzeoE2pha+ddwg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "GuideNextDay",
- "labelDetails": {
- "description": "GuideNextDay"
- },
- "kind": 20,
- "detail": "GuideNextDay",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "GuideNextDay",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GuideNextDay$0"
- },
- "data": {
- "for_ref": false,
- "hash": "HZP8dK9x3p0VBvMCFrLUb0AyVl4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "GuidePreviousDay",
- "labelDetails": {
- "description": "GuidePreviousDay"
- },
- "kind": 20,
- "detail": "GuidePreviousDay",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "GuidePreviousDay",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "GuidePreviousDay$0"
- },
- "data": {
- "for_ref": false,
- "hash": "crfcRLUtdB/SJew4hH+hWM7ziIo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "HangulMode",
- "labelDetails": {
- "description": "HangulMode"
- },
- "kind": 20,
- "detail": "HangulMode",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "HangulMode",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "HangulMode$0"
- },
- "data": {
- "for_ref": false,
- "hash": "y/rmj2zF22GzuynFjBWMq/PF0Do=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "HanjaMode",
- "labelDetails": {
- "description": "HanjaMode"
- },
- "kind": 20,
- "detail": "HanjaMode",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "HanjaMode",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "HanjaMode$0"
- }
- },
- {
- "label": "Hankaku",
- "labelDetails": {
- "description": "Hankaku"
- },
- "kind": 20,
- "detail": "Hankaku",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Hankaku",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Hankaku$0"
- },
- "data": {
- "for_ref": false,
- "hash": "+MiMWghG9CuIhwFUhnnCK69DPgI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "HeadsetHook",
- "labelDetails": {
- "description": "HeadsetHook"
- },
- "kind": 20,
- "detail": "HeadsetHook",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "HeadsetHook",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "HeadsetHook$0"
- },
- "data": {
- "for_ref": false,
- "hash": "sxpAP85LTIdxk0zlR4++aXFeJDU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Help",
- "labelDetails": {
- "description": "Help"
- },
- "kind": 20,
- "detail": "Help",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Help",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Help$0"
- },
- "data": {
- "for_ref": false,
- "hash": "9LZ7AuiL55LTmCQ/7Ht3sca5UE8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Hibernate",
- "labelDetails": {
- "description": "Hibernate"
- },
- "kind": 20,
- "detail": "Hibernate",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Hibernate",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Hibernate$0"
- },
- "data": {
- "for_ref": false,
- "hash": "VH05NQUTcX1X7R/fSyTSCjgo/RY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Hiragana",
- "labelDetails": {
- "description": "Hiragana"
- },
- "kind": 20,
- "detail": "Hiragana",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Hiragana",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Hiragana$0"
- },
- "data": {
- "for_ref": false,
- "hash": "/QSnrJ0GYnL9Y0aOdcN5MEfK7qg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "HiraganaKatakana",
- "labelDetails": {
- "description": "HiraganaKatakana"
- },
- "kind": 20,
- "detail": "HiraganaKatakana",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "HiraganaKatakana",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "HiraganaKatakana$0"
- },
- "data": {
- "for_ref": false,
- "hash": "qMSSG92aPyUpu0sMh0GKKoQDJ7Y=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Hist",
- "labelDetails": {
- "description": "Hist"
- },
- "kind": 22,
- "detail": "Hist",
- "sortText": "7fffffff",
- "filterText": "Hist",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Hist"
- }
- },
- {
- "label": "Home",
- "labelDetails": {
- "description": "Home"
- },
- "kind": 20,
- "detail": "Home",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Home",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Home$0"
- },
- "data": {
- "for_ref": false,
- "hash": "qSEgKiVVf6J4Q3ijUpT4WU6vzZ4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Hover",
- "labelDetails": {
- "description": "Hover"
- },
- "kind": 22,
- "detail": "Hover",
- "sortText": "7fffffff",
- "filterText": "Hover",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Hover"
- },
- "data": {
- "for_ref": false,
- "hash": "0uOdfSxTB18MOg/aSF90jPJmzCA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "HoverClientCapabilities",
- "labelDetails": {
- "description": "HoverClientCapabilities"
- },
- "kind": 22,
- "detail": "HoverClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "HoverClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "HoverClientCapabilities"
- }
- },
- {
- "label": "HoverContents",
- "labelDetails": {
- "description": "HoverContents"
- },
- "kind": 13,
- "detail": "HoverContents",
- "sortText": "7fffffff",
- "filterText": "HoverContents",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "HoverContents"
- },
- "data": {
- "for_ref": false,
- "hash": "qZl6FHQyJ/Rlhp/ug6eDiyuXaqs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "HoverOptions",
- "labelDetails": {
- "description": "HoverOptions"
- },
- "kind": 22,
- "detail": "HoverOptions",
- "sortText": "7fffffff",
- "filterText": "HoverOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "HoverOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "8hzLc01/tCf2G3pEiQmxEia/kBM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "HoverParams",
- "labelDetails": {
- "description": "HoverParams"
- },
- "kind": 22,
- "detail": "HoverParams",
- "sortText": "7fffffff",
- "filterText": "HoverParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "HoverParams"
- }
- },
- {
- "label": "HoverProviderCapability",
- "labelDetails": {
- "description": "HoverProviderCapability"
- },
- "kind": 13,
- "detail": "HoverProviderCapability",
- "sortText": "7fffffff",
- "filterText": "HoverProviderCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "HoverProviderCapability"
- }
- },
- {
- "label": "HoverRegistrationOptions",
- "labelDetails": {
- "description": "HoverRegistrationOptions"
- },
- "kind": 22,
- "detail": "HoverRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "HoverRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "HoverRegistrationOptions"
- }
- },
- {
- "label": "HoverRequest",
- "labelDetails": {
- "description": "HoverRequest"
- },
- "kind": 13,
- "detail": "HoverRequest",
- "sortText": "7fffffff",
- "filterText": "HoverRequest",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "HoverRequest"
- },
- "data": {
- "for_ref": false,
- "hash": "T/AWX6VMStWKcAhgjHt6RrIcT08=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Hovr",
- "labelDetails": {
- "description": "Hovr"
- },
- "kind": 22,
- "detail": "Hovr",
- "sortText": "7fffffff",
- "filterText": "Hovr",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Hovr"
- }
- },
- {
- "label": "Hyper",
- "labelDetails": {
- "description": "Hyper"
- },
- "kind": 20,
- "detail": "Hyper",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Hyper",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Hyper$0"
- }
- },
- {
- "label": "IFONT",
- "labelDetails": {
- "description": "LazyLock<FontRef<'static>, fn() -> FontRef<'static>>"
- },
- "kind": 12,
- "detail": "LazyLock<FontRef<'static>, fn() -> FontRef<'static>>",
- "sortText": "7fffffff",
- "filterText": "IFONT",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "IFONT"
- }
- },
- {
- "label": "Icon",
- "labelDetails": {
- "description": "Icon"
- },
- "kind": 22,
- "detail": "Icon",
- "sortText": "7fffffff",
- "filterText": "Icon",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Icon"
- },
- "data": {
- "for_ref": false,
- "hash": "oR5oH3LJKhlGYWmRe0AhSSJyTpA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Image",
- "labelDetails": {
- "description": "Image<{unknown}, _>"
- },
- "kind": 22,
- "detail": "Image<{unknown}, _>",
- "sortText": "7fffffff",
- "filterText": "Image",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Image"
- },
- "data": {
- "for_ref": false,
- "hash": "8Gjup943Ji9dltjulhn6LEX5BX4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ImplementationProviderCapability",
- "labelDetails": {
- "description": "ImplementationProviderCapability"
- },
- "kind": 13,
- "detail": "ImplementationProviderCapability",
- "sortText": "7fffffff",
- "filterText": "ImplementationProviderCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ImplementationProviderCapability"
- }
- },
- {
- "label": "Info",
- "labelDetails": {
- "description": "Info"
- },
- "kind": 20,
- "detail": "Info",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Info",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Info$0"
- },
- "data": {
- "for_ref": false,
- "hash": "t6PrCimwP77q5tEnI8O35gfyDE4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InitializeError",
- "labelDetails": {
- "description": "InitializeError"
- },
- "kind": 22,
- "detail": "InitializeError",
- "sortText": "7fffffff",
- "filterText": "InitializeError",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InitializeError"
- }
- },
- {
- "label": "InitializeParams",
- "labelDetails": {
- "description": "InitializeParams"
- },
- "kind": 22,
- "detail": "InitializeParams",
- "sortText": "7fffffff",
- "filterText": "InitializeParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InitializeParams"
- }
- },
- {
- "label": "InitializeResult",
- "labelDetails": {
- "description": "InitializeResult"
- },
- "kind": 22,
- "detail": "InitializeResult",
- "sortText": "7fffffff",
- "filterText": "InitializeResult",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InitializeResult"
- }
- },
- {
- "label": "InitializedParams",
- "labelDetails": {
- "description": "InitializedParams"
- },
- "kind": 22,
- "detail": "InitializedParams",
- "sortText": "7fffffff",
- "filterText": "InitializedParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InitializedParams"
- }
- },
- {
- "label": "InlayHint",
- "labelDetails": {
- "description": "InlayHint"
- },
- "kind": 22,
- "detail": "InlayHint",
- "sortText": "7fffffff",
- "filterText": "InlayHint",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHint"
- },
- "data": {
- "for_ref": false,
- "hash": "iRmt/cvimqcR9XEHBBE2BOQ9rPU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlayHintClientCapabilities",
- "labelDetails": {
- "description": "InlayHintClientCapabilities"
- },
- "kind": 22,
- "detail": "InlayHintClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "InlayHintClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHintClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "XoLJ9gq1oV4RpCVg6vOb+k5OWYs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlayHintKind",
- "labelDetails": {
- "description": "InlayHintKind"
- },
- "kind": 22,
- "detail": "InlayHintKind",
- "sortText": "7fffffff",
- "filterText": "InlayHintKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHintKind"
- },
- "data": {
- "for_ref": false,
- "hash": "irRzm5H8InpibsMb/cO/ue7P27Y=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlayHintLabel",
- "labelDetails": {
- "description": "InlayHintLabel"
- },
- "kind": 13,
- "detail": "InlayHintLabel",
- "sortText": "7fffffff",
- "filterText": "InlayHintLabel",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHintLabel"
- }
- },
- {
- "label": "InlayHintLabelPart",
- "labelDetails": {
- "description": "InlayHintLabelPart"
- },
- "kind": 22,
- "detail": "InlayHintLabelPart",
- "sortText": "7fffffff",
- "filterText": "InlayHintLabelPart",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHintLabelPart"
- },
- "data": {
- "for_ref": false,
- "hash": "0AixVdWdQBIPzPltctHWRcYvXIY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlayHintLabelPartTooltip",
- "labelDetails": {
- "description": "InlayHintLabelPartTooltip"
- },
- "kind": 13,
- "detail": "InlayHintLabelPartTooltip",
- "sortText": "7fffffff",
- "filterText": "InlayHintLabelPartTooltip",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHintLabelPartTooltip"
- }
- },
- {
- "label": "InlayHintOptions",
- "labelDetails": {
- "description": "InlayHintOptions"
- },
- "kind": 22,
- "detail": "InlayHintOptions",
- "sortText": "7fffffff",
- "filterText": "InlayHintOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHintOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "5hzDYJ6GTkl7cAZtshZEC2ZwD7U=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlayHintParams",
- "labelDetails": {
- "description": "InlayHintParams"
- },
- "kind": 22,
- "detail": "InlayHintParams",
- "sortText": "7fffffff",
- "filterText": "InlayHintParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHintParams"
- },
- "data": {
- "for_ref": false,
- "hash": "5SpwNu5sdbtpFq8oVIpnc7jHRXc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlayHintRegistrationOptions",
- "labelDetails": {
- "description": "InlayHintRegistrationOptions"
- },
- "kind": 22,
- "detail": "InlayHintRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "InlayHintRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHintRegistrationOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "slV1VWM6Cq63MsllzcuGZgv7in4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlayHintResolveClientCapabilities",
- "labelDetails": {
- "description": "InlayHintResolveClientCapabilities"
- },
- "kind": 22,
- "detail": "InlayHintResolveClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "InlayHintResolveClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHintResolveClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "9kufOpVEl19As79H//yFdxL/fzY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlayHintServerCapabilities",
- "labelDetails": {
- "description": "InlayHintServerCapabilities"
- },
- "kind": 13,
- "detail": "InlayHintServerCapabilities",
- "sortText": "7fffffff",
- "filterText": "InlayHintServerCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHintServerCapabilities"
- }
- },
- {
- "label": "InlayHintTooltip",
- "labelDetails": {
- "description": "InlayHintTooltip"
- },
- "kind": 13,
- "detail": "InlayHintTooltip",
- "sortText": "7fffffff",
- "filterText": "InlayHintTooltip",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHintTooltip"
- }
- },
- {
- "label": "InlayHintWorkspaceClientCapabilities",
- "labelDetails": {
- "description": "InlayHintWorkspaceClientCapabilities"
- },
- "kind": 22,
- "detail": "InlayHintWorkspaceClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "InlayHintWorkspaceClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlayHintWorkspaceClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "VAM7/L0HABgppazkkHXj4Dmlx0U=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlineValue",
- "labelDetails": {
- "description": "InlineValue"
- },
- "kind": 13,
- "detail": "InlineValue",
- "sortText": "7fffffff",
- "filterText": "InlineValue",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlineValue"
- },
- "data": {
- "for_ref": false,
- "hash": "AEC09st3on73e0gRQVXlj6MH8MQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlineValueClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "InlineValueClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlineValueClientCapabilities"
- }
- },
- {
- "label": "InlineValueContext",
- "labelDetails": {
- "description": "InlineValueContext"
- },
- "kind": 22,
- "detail": "InlineValueContext",
- "sortText": "7fffffff",
- "filterText": "InlineValueContext",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlineValueContext"
- },
- "data": {
- "for_ref": false,
- "hash": "D/QdOivipH5pEeELi4YN5bA1Ksw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlineValueEvaluatableExpression",
- "labelDetails": {
- "description": "InlineValueEvaluatableExpression"
- },
- "kind": 22,
- "detail": "InlineValueEvaluatableExpression",
- "sortText": "7fffffff",
- "filterText": "InlineValueEvaluatableExpression",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlineValueEvaluatableExpression"
- },
- "data": {
- "for_ref": false,
- "hash": "o09W++1DULlsTK77gNi5meibPXc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlineValueOptions",
- "labelDetails": {
- "description": "InlineValueOptions"
- },
- "kind": 22,
- "detail": "InlineValueOptions",
- "sortText": "7fffffff",
- "filterText": "InlineValueOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlineValueOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "nBY0aV/nhfFbNMKlV/ZgZZKcYSg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlineValueParams",
- "labelDetails": {
- "description": "InlineValueParams"
- },
- "kind": 22,
- "detail": "InlineValueParams",
- "sortText": "7fffffff",
- "filterText": "InlineValueParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlineValueParams"
- },
- "data": {
- "for_ref": false,
- "hash": "Z4UVEjgDtHzb2hGqTgysSPVONQM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlineValueRegistrationOptions",
- "labelDetails": {
- "description": "InlineValueRegistrationOptions"
- },
- "kind": 22,
- "detail": "InlineValueRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "InlineValueRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlineValueRegistrationOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "4Bff7MYbiEKGB6YWl2anP4v86rc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlineValueServerCapabilities",
- "labelDetails": {
- "description": "InlineValueServerCapabilities"
- },
- "kind": 13,
- "detail": "InlineValueServerCapabilities",
- "sortText": "7fffffff",
- "filterText": "InlineValueServerCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlineValueServerCapabilities"
- }
- },
- {
- "label": "InlineValueText",
- "labelDetails": {
- "description": "InlineValueText"
- },
- "kind": 22,
- "detail": "InlineValueText",
- "sortText": "7fffffff",
- "filterText": "InlineValueText",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlineValueText"
- },
- "data": {
- "for_ref": false,
- "hash": "78QNEwnw3FuzzXo2B14tNYV8L8E=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlineValueVariableLookup",
- "labelDetails": {
- "description": "InlineValueVariableLookup"
- },
- "kind": 22,
- "detail": "InlineValueVariableLookup",
- "sortText": "7fffffff",
- "filterText": "InlineValueVariableLookup",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlineValueVariableLookup"
- },
- "data": {
- "for_ref": false,
- "hash": "KnQIhx5Hfb9m+fK9axHvkiJl1yI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InlineValueWorkspaceClientCapabilities",
- "labelDetails": {
- "description": "InlineValueWorkspaceClientCapabilities"
- },
- "kind": 22,
- "detail": "InlineValueWorkspaceClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "InlineValueWorkspaceClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InlineValueWorkspaceClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "w9IXOwIyd4BgoMy3LP+ym8cDAZo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InputRequest",
- "labelDetails": {
- "description": "InputRequest"
- },
- "kind": 13,
- "detail": "InputRequest",
- "sortText": "7fffffff",
- "filterText": "InputRequest",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InputRequest"
- }
- },
- {
- "label": "Insert",
- "labelDetails": {
- "description": "Insert"
- },
- "kind": 20,
- "detail": "Insert",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Insert",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Insert$0"
- },
- "data": {
- "for_ref": false,
- "hash": "xRXRrKvnc6C0rwa46r3v/wrSqHU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InsertReplaceEdit",
- "labelDetails": {
- "description": "InsertReplaceEdit"
- },
- "kind": 22,
- "detail": "InsertReplaceEdit",
- "sortText": "7fffffff",
- "filterText": "InsertReplaceEdit",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InsertReplaceEdit"
- },
- "data": {
- "for_ref": false,
- "hash": "YUqSHlPIqqRrdkMbPRl1uKFqjjk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InsertTextFormat",
- "labelDetails": {
- "description": "InsertTextFormat"
- },
- "kind": 22,
- "detail": "InsertTextFormat",
- "sortText": "7fffffff",
- "filterText": "InsertTextFormat",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InsertTextFormat"
- },
- "data": {
- "for_ref": false,
- "hash": "jQ9SD3bxxjIXiFbdr6ASNVLjlpY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InsertTextMode",
- "labelDetails": {
- "description": "InsertTextMode"
- },
- "kind": 22,
- "detail": "InsertTextMode",
- "sortText": "7fffffff",
- "filterText": "InsertTextMode",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InsertTextMode"
- },
- "data": {
- "for_ref": false,
- "hash": "326jWJRbbfzLWzKz/3UHVISOfhE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InsertTextModeSupport",
- "labelDetails": {
- "description": "InsertTextModeSupport"
- },
- "kind": 22,
- "detail": "InsertTextModeSupport",
- "sortText": "7fffffff",
- "filterText": "InsertTextModeSupport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InsertTextModeSupport"
- }
- },
- {
- "label": "Instance",
- "labelDetails": {
- "description": "Instance<'_>"
- },
- "kind": 22,
- "detail": "Instance<'_>",
- "sortText": "7fffffff",
- "filterText": "Instance",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Instance"
- },
- "data": {
- "for_ref": false,
- "hash": "Utj8B78iRkA12/ypCwW/C45xwF8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Instant",
- "labelDetails": {
- "description": "Instant"
- },
- "kind": 22,
- "detail": "Instant",
- "sortText": "7fffffff",
- "filterText": "Instant",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Instant"
- },
- "data": {
- "for_ref": false,
- "hash": "BSxrIQ6lNo9xi2+dB0Ouh7SA+Qs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "InstantReplay",
- "labelDetails": {
- "description": "InstantReplay"
- },
- "kind": 20,
- "detail": "InstantReplay",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "InstantReplay",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "InstantReplay$0"
- },
- "data": {
- "for_ref": false,
- "hash": "1C/33aFbCYU2w+vdbTmdrP/WBxg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "JoinHandle",
- "labelDetails": {
- "description": "JoinHandle<{unknown}>"
- },
- "kind": 22,
- "detail": "JoinHandle<{unknown}>",
- "sortText": "7fffffff",
- "filterText": "JoinHandle",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "JoinHandle"
- },
- "data": {
- "for_ref": false,
- "hash": "c3e9Cy6SSWpUISqVz5h+Z9t+bIE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "JunjaMode",
- "labelDetails": {
- "description": "JunjaMode"
- },
- "kind": 20,
- "detail": "JunjaMode",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "JunjaMode",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "JunjaMode$0"
- }
- },
- {
- "label": "KanaMode",
- "labelDetails": {
- "description": "KanaMode"
- },
- "kind": 20,
- "detail": "KanaMode",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "KanaMode",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "KanaMode$0"
- },
- "data": {
- "for_ref": false,
- "hash": "KaH+Ufrz57kDzFLnTDz25m4WkE8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "KanjiMode",
- "labelDetails": {
- "description": "KanjiMode"
- },
- "kind": 20,
- "detail": "KanjiMode",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "KanjiMode",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "KanjiMode$0"
- },
- "data": {
- "for_ref": false,
- "hash": "6caKoehook8bGFynSGRPBEpBjd0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Katakana",
- "labelDetails": {
- "description": "Katakana"
- },
- "kind": 20,
- "detail": "Katakana",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Katakana",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Katakana$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Tn3HzfUVlDAjsHk009fZVx0N6Bk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Key",
- "labelDetails": {
- "description": "Key<{unknown}>"
- },
- "kind": 13,
- "detail": "Key<{unknown}>",
- "sortText": "7fffffff",
- "filterText": "Key",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Key"
- },
- "data": {
- "for_ref": false,
- "hash": "e44qMXeHxz/CkuoCNpmq6rKWURY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Key11",
- "labelDetails": {
- "description": "Key11"
- },
- "kind": 20,
- "detail": "Key11",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Key11",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Key11$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Wx8sJj2vnKuNkudDxPsM683lCqQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Key12",
- "labelDetails": {
- "description": "Key12"
- },
- "kind": 20,
- "detail": "Key12",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Key12",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Key12$0"
- },
- "data": {
- "for_ref": false,
- "hash": "wrxH5zz90j51Nmf5wVjkROuDPsI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LSPAny",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "LSPAny",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LSPAny"
- },
- "data": {
- "for_ref": false,
- "hash": "rnIBy9IWb+WCq8q58XAnMXJFCiY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LSPArray",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "LSPArray",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LSPArray"
- },
- "data": {
- "for_ref": false,
- "hash": "LmQwbjeL56C2dIHnypIi0/6lOKQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LSPObject",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "LSPObject",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LSPObject"
- },
- "data": {
- "for_ref": false,
- "hash": "HvPsilayOas79F5O15p+xn0eYEs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LanguageString",
- "labelDetails": {
- "description": "LanguageString"
- },
- "kind": 22,
- "detail": "LanguageString",
- "sortText": "7fffffff",
- "filterText": "LanguageString",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LanguageString"
- }
- },
- {
- "label": "LastNumberRedial",
- "labelDetails": {
- "description": "LastNumberRedial"
- },
- "kind": 20,
- "detail": "LastNumberRedial",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LastNumberRedial",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LastNumberRedial$0"
- }
- },
- {
- "label": "LaunchApplication1",
- "labelDetails": {
- "description": "LaunchApplication1"
- },
- "kind": 20,
- "detail": "LaunchApplication1",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchApplication1",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchApplication1$0"
- },
- "data": {
- "for_ref": false,
- "hash": "vQBOQCKMROHsqldduZ1+Z6oDvZM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LaunchApplication2",
- "labelDetails": {
- "description": "LaunchApplication2"
- },
- "kind": 20,
- "detail": "LaunchApplication2",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchApplication2",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchApplication2$0"
- },
- "data": {
- "for_ref": false,
- "hash": "KE99HYrnIsa50OALjx5AazSPhPU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LaunchCalendar",
- "labelDetails": {
- "description": "LaunchCalendar"
- },
- "kind": 20,
- "detail": "LaunchCalendar",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchCalendar",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchCalendar$0"
- },
- "data": {
- "for_ref": false,
- "hash": "UqB1SGejPHAt+fe+P065KiTIzS8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LaunchContacts",
- "labelDetails": {
- "description": "LaunchContacts"
- },
- "kind": 20,
- "detail": "LaunchContacts",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchContacts",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchContacts$0"
- },
- "data": {
- "for_ref": false,
- "hash": "I18g66FHkb1EUixYPACtgA02Ggc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LaunchMail",
- "labelDetails": {
- "description": "LaunchMail"
- },
- "kind": 20,
- "detail": "LaunchMail",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchMail",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchMail$0"
- },
- "data": {
- "for_ref": false,
- "hash": "zOrPPL4Gqi6QXLgIzEHGbjNhJBE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LaunchMediaPlayer",
- "labelDetails": {
- "description": "LaunchMediaPlayer"
- },
- "kind": 20,
- "detail": "LaunchMediaPlayer",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchMediaPlayer",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchMediaPlayer$0"
- },
- "data": {
- "for_ref": false,
- "hash": "wgOCn3g0CqluixJJUJqKd9cJSQ4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LaunchMusicPlayer",
- "labelDetails": {
- "description": "LaunchMusicPlayer"
- },
- "kind": 20,
- "detail": "LaunchMusicPlayer",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchMusicPlayer",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchMusicPlayer$0"
- }
- },
- {
- "label": "LaunchPhone",
- "labelDetails": {
- "description": "LaunchPhone"
- },
- "kind": 20,
- "detail": "LaunchPhone",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchPhone",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchPhone$0"
- }
- },
- {
- "label": "LaunchScreenSaver",
- "labelDetails": {
- "description": "LaunchScreenSaver"
- },
- "kind": 20,
- "detail": "LaunchScreenSaver",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchScreenSaver",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchScreenSaver$0"
- }
- },
- {
- "label": "LaunchSpreadsheet",
- "labelDetails": {
- "description": "LaunchSpreadsheet"
- },
- "kind": 20,
- "detail": "LaunchSpreadsheet",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchSpreadsheet",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchSpreadsheet$0"
- }
- },
- {
- "label": "LaunchWebBrowser",
- "labelDetails": {
- "description": "LaunchWebBrowser"
- },
- "kind": 20,
- "detail": "LaunchWebBrowser",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchWebBrowser",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchWebBrowser$0"
- }
- },
- {
- "label": "LaunchWebCam",
- "labelDetails": {
- "description": "LaunchWebCam"
- },
- "kind": 20,
- "detail": "LaunchWebCam",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchWebCam",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchWebCam$0"
- }
- },
- {
- "label": "LaunchWordProcessor",
- "labelDetails": {
- "description": "LaunchWordProcessor"
- },
- "kind": 20,
- "detail": "LaunchWordProcessor",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LaunchWordProcessor",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LaunchWordProcessor$0"
- }
- },
- {
- "label": "LazyLock",
- "labelDetails": {
- "description": "LazyLock<{unknown}, {unknown}>"
- },
- "kind": 22,
- "detail": "LazyLock<{unknown}, {unknown}>",
- "sortText": "7fffffff",
- "filterText": "LazyLock",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LazyLock"
- },
- "data": {
- "for_ref": false,
- "hash": "JRWMp2IwjFcsHU0y3e+jCoL8ASo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Link",
- "labelDetails": {
- "description": "Link"
- },
- "kind": 20,
- "detail": "Link",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Link",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Link$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ta53ZGdlEwUu59+DiPft0XS7xQg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LinkedEditingRangeClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "LinkedEditingRangeClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LinkedEditingRangeClientCapabilities"
- }
- },
- {
- "label": "LinkedEditingRangeOptions",
- "labelDetails": {
- "description": "LinkedEditingRangeOptions"
- },
- "kind": 22,
- "detail": "LinkedEditingRangeOptions",
- "sortText": "7fffffff",
- "filterText": "LinkedEditingRangeOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LinkedEditingRangeOptions"
- }
- },
- {
- "label": "LinkedEditingRangeParams",
- "labelDetails": {
- "description": "LinkedEditingRangeParams"
- },
- "kind": 22,
- "detail": "LinkedEditingRangeParams",
- "sortText": "7fffffff",
- "filterText": "LinkedEditingRangeParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LinkedEditingRangeParams"
- }
- },
- {
- "label": "LinkedEditingRangeRegistrationOptions",
- "labelDetails": {
- "description": "LinkedEditingRangeRegistrationOptions"
- },
- "kind": 22,
- "detail": "LinkedEditingRangeRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "LinkedEditingRangeRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LinkedEditingRangeRegistrationOptions"
- }
- },
- {
- "label": "LinkedEditingRangeServerCapabilities",
- "labelDetails": {
- "description": "LinkedEditingRangeServerCapabilities"
- },
- "kind": 13,
- "detail": "LinkedEditingRangeServerCapabilities",
- "sortText": "7fffffff",
- "filterText": "LinkedEditingRangeServerCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LinkedEditingRangeServerCapabilities"
- }
- },
- {
- "label": "LinkedEditingRanges",
- "labelDetails": {
- "description": "LinkedEditingRanges"
- },
- "kind": 22,
- "detail": "LinkedEditingRanges",
- "sortText": "7fffffff",
- "filterText": "LinkedEditingRanges",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LinkedEditingRanges"
- }
- },
- {
- "label": "ListProgram",
- "labelDetails": {
- "description": "ListProgram"
- },
- "kind": 20,
- "detail": "ListProgram",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ListProgram",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ListProgram$0"
- },
- "data": {
- "for_ref": false,
- "hash": "9UfGkUmISvEvQ8rvFM1sfvZDMIo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LiveContent",
- "labelDetails": {
- "description": "LiveContent"
- },
- "kind": 20,
- "detail": "LiveContent",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LiveContent",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LiveContent$0"
- },
- "data": {
- "for_ref": false,
- "hash": "MgVTauOAY5GQxVUR3Yqi6H18FLk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Location",
- "labelDetails": {
- "description": "Location"
- },
- "kind": 22,
- "detail": "Location",
- "sortText": "7fffffff",
- "filterText": "Location",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Location"
- },
- "data": {
- "for_ref": false,
- "hash": "GLq4PA3duwsR2O+vE/O9KwL3M70=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LocationLink",
- "labelDetails": {
- "description": "LocationLink"
- },
- "kind": 22,
- "detail": "LocationLink",
- "sortText": "7fffffff",
- "filterText": "LocationLink",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LocationLink"
- },
- "data": {
- "for_ref": false,
- "hash": "eMuhGbp6r4XkBmeAu6HnYdT6ZjA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Lock",
- "labelDetails": {
- "description": "Lock"
- },
- "kind": 20,
- "detail": "Lock",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Lock",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Lock$0"
- },
- "data": {
- "for_ref": false,
- "hash": "lNQ8Ydeb8kWAcn9M2CWjPQ3u8yo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "LogMessageParams",
- "labelDetails": {
- "description": "LogMessageParams"
- },
- "kind": 22,
- "detail": "LogMessageParams",
- "sortText": "7fffffff",
- "filterText": "LogMessageParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LogMessageParams"
- }
- },
- {
- "label": "LogOff",
- "labelDetails": {
- "description": "LogOff"
- },
- "kind": 20,
- "detail": "LogOff",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "LogOff",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LogOff$0"
- }
- },
- {
- "label": "LogTraceParams",
- "labelDetails": {
- "description": "LogTraceParams"
- },
- "kind": 22,
- "detail": "LogTraceParams",
- "sortText": "7fffffff",
- "filterText": "LogTraceParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "LogTraceParams"
- }
- },
- {
- "label": "M",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "M",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "M"
- }
- },
- {
- "label": "MODIFIERS",
- "labelDetails": {
- "description": "ModifiersState"
- },
- "kind": 12,
- "detail": "ModifiersState",
- "sortText": "7fffffff",
- "filterText": "MODIFIERS",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MODIFIERS"
- }
- },
- {
- "label": "MailForward",
- "labelDetails": {
- "description": "MailForward"
- },
- "kind": 20,
- "detail": "MailForward",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MailForward",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MailForward$0"
- },
- "data": {
- "for_ref": false,
- "hash": "2yVm8c2MWa8WKsKzSMCHPsfC0eA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MailReply",
- "labelDetails": {
- "description": "MailReply"
- },
- "kind": 20,
- "detail": "MailReply",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MailReply",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MailReply$0"
- },
- "data": {
- "for_ref": false,
- "hash": "mj8zE/XxsYOs7VbBkZ+NB2iB/sk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MailSend",
- "labelDetails": {
- "description": "MailSend"
- },
- "kind": 20,
- "detail": "MailSend",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MailSend",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MailSend$0"
- },
- "data": {
- "for_ref": false,
- "hash": "U16me9nUfZgm7hEi5IDMo9/zwYw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MannerMode",
- "labelDetails": {
- "description": "MannerMode"
- },
- "kind": 20,
- "detail": "MannerMode",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MannerMode",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MannerMode$0"
- },
- "data": {
- "for_ref": false,
- "hash": "0FWRAXJ864oxJeAhH36QSLO3fF8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MarkdownClientCapabilities",
- "labelDetails": {
- "description": "MarkdownClientCapabilities"
- },
- "kind": 22,
- "detail": "MarkdownClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "MarkdownClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MarkdownClientCapabilities"
- }
- },
- {
- "label": "MarkedString",
- "labelDetails": {
- "description": "MarkedString"
- },
- "kind": 13,
- "detail": "MarkedString",
- "sortText": "7fffffff",
- "filterText": "MarkedString",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MarkedString"
- },
- "data": {
- "for_ref": false,
- "hash": "CuXpf9f/rYGXxZmaNISc74Fb+sM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MarkupContent",
- "labelDetails": {
- "description": "MarkupContent"
- },
- "kind": 22,
- "detail": "MarkupContent",
- "sortText": "7fffffff",
- "filterText": "MarkupContent",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MarkupContent"
- },
- "data": {
- "for_ref": false,
- "hash": "m/jD3oHFEBFn3/Yed/nTx/3MNhM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MarkupKind",
- "labelDetails": {
- "description": "MarkupKind"
- },
- "kind": 13,
- "detail": "MarkupKind",
- "sortText": "7fffffff",
- "filterText": "MarkupKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MarkupKind"
- },
- "data": {
- "for_ref": false,
- "hash": "+01gsylFfFqkS4doiJZ+wbyBYkU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaApps",
- "labelDetails": {
- "description": "MediaApps"
- },
- "kind": 20,
- "detail": "MediaApps",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaApps",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaApps$0"
- },
- "data": {
- "for_ref": false,
- "hash": "qDJ18q7QyoD3Il7d2pibRx7gfIw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaAudioTrack",
- "labelDetails": {
- "description": "MediaAudioTrack"
- },
- "kind": 20,
- "detail": "MediaAudioTrack",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaAudioTrack",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaAudioTrack$0"
- },
- "data": {
- "for_ref": false,
- "hash": "FGXFgysTM2QVao8ISrB1q4XbS/4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaClose",
- "labelDetails": {
- "description": "MediaClose"
- },
- "kind": 20,
- "detail": "MediaClose",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaClose",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaClose$0"
- },
- "data": {
- "for_ref": false,
- "hash": "9UTSYjxO+hEhPwJImiVFMT8AXRo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaFastForward",
- "labelDetails": {
- "description": "MediaFastForward"
- },
- "kind": 20,
- "detail": "MediaFastForward",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaFastForward",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaFastForward$0"
- },
- "data": {
- "for_ref": false,
- "hash": "RPas21Lhkdb/su0dZE9v9Eibm3g=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaLast",
- "labelDetails": {
- "description": "MediaLast"
- },
- "kind": 20,
- "detail": "MediaLast",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaLast",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaLast$0"
- },
- "data": {
- "for_ref": false,
- "hash": "wWVuR5ODOzDWQ45is9esQBJLzZ8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaPause",
- "labelDetails": {
- "description": "MediaPause"
- },
- "kind": 20,
- "detail": "MediaPause",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaPause",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaPause$0"
- },
- "data": {
- "for_ref": false,
- "hash": "R7MTCS6uBkLczPsSU38pHjvYz5k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaPlay",
- "labelDetails": {
- "description": "MediaPlay"
- },
- "kind": 20,
- "detail": "MediaPlay",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaPlay",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaPlay$0"
- },
- "data": {
- "for_ref": false,
- "hash": "wMsfSqNPvgMD+9Xf9nTec9ZtDWY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaPlayPause",
- "labelDetails": {
- "description": "MediaPlayPause"
- },
- "kind": 20,
- "detail": "MediaPlayPause",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaPlayPause",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaPlayPause$0"
- },
- "data": {
- "for_ref": false,
- "hash": "kce2YthodHcilBFokoYf7Lc764E=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaRecord",
- "labelDetails": {
- "description": "MediaRecord"
- },
- "kind": 20,
- "detail": "MediaRecord",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaRecord",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaRecord$0"
- },
- "data": {
- "for_ref": false,
- "hash": "rrMFqYKUNE8b+4F/lc/ORk122os=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaRewind",
- "labelDetails": {
- "description": "MediaRewind"
- },
- "kind": 20,
- "detail": "MediaRewind",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaRewind",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaRewind$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ViUigMosAc0KVGFyAFh5woQGi2U=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaSkipBackward",
- "labelDetails": {
- "description": "MediaSkipBackward"
- },
- "kind": 20,
- "detail": "MediaSkipBackward",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaSkipBackward",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaSkipBackward$0"
- },
- "data": {
- "for_ref": false,
- "hash": "BFyfdSBcRQN2BON9S8ePWqURBUQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaSkipForward",
- "labelDetails": {
- "description": "MediaSkipForward"
- },
- "kind": 20,
- "detail": "MediaSkipForward",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaSkipForward",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaSkipForward$0"
- },
- "data": {
- "for_ref": false,
- "hash": "nFk0bXswLN4jvlMW/9yMgrFk/r8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaStepBackward",
- "labelDetails": {
- "description": "MediaStepBackward"
- },
- "kind": 20,
- "detail": "MediaStepBackward",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaStepBackward",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaStepBackward$0"
- },
- "data": {
- "for_ref": false,
- "hash": "3Dm+CA0DdU7mV25zCLoqeW++z9I=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaStepForward",
- "labelDetails": {
- "description": "MediaStepForward"
- },
- "kind": 20,
- "detail": "MediaStepForward",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaStepForward",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaStepForward$0"
- },
- "data": {
- "for_ref": false,
- "hash": "7QG1c8duslapMiQYDhjQkkZpKkg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaStop",
- "labelDetails": {
- "description": "MediaStop"
- },
- "kind": 20,
- "detail": "MediaStop",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaStop",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaStop$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Jblf3PI+JAHM1vCU8FX1i4rIqhw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaTopMenu",
- "labelDetails": {
- "description": "MediaTopMenu"
- },
- "kind": 20,
- "detail": "MediaTopMenu",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaTopMenu",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaTopMenu$0"
- },
- "data": {
- "for_ref": false,
- "hash": "/UdhLhwT/ihx4tKrKcc29Ek5o6g=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaTrackNext",
- "labelDetails": {
- "description": "MediaTrackNext"
- },
- "kind": 20,
- "detail": "MediaTrackNext",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaTrackNext",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaTrackNext$0"
- },
- "data": {
- "for_ref": false,
- "hash": "hAm8wuBORi8aG+LdhMz7GZf53Lg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MediaTrackPrevious",
- "labelDetails": {
- "description": "MediaTrackPrevious"
- },
- "kind": 20,
- "detail": "MediaTrackPrevious",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MediaTrackPrevious",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MediaTrackPrevious$0"
- },
- "data": {
- "for_ref": false,
- "hash": "9mrd1B8sQUbsGaXQeItmPDPBKtQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MessageActionItem",
- "labelDetails": {
- "description": "MessageActionItem"
- },
- "kind": 22,
- "detail": "MessageActionItem",
- "sortText": "7fffffff",
- "filterText": "MessageActionItem",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MessageActionItem"
- }
- },
- {
- "label": "MessageActionItemCapabilities",
- "labelDetails": {
- "description": "MessageActionItemCapabilities"
- },
- "kind": 22,
- "detail": "MessageActionItemCapabilities",
- "sortText": "7fffffff",
- "filterText": "MessageActionItemCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MessageActionItemCapabilities"
- }
- },
- {
- "label": "MessageActionItemProperty",
- "labelDetails": {
- "description": "MessageActionItemProperty"
- },
- "kind": 13,
- "detail": "MessageActionItemProperty",
- "sortText": "7fffffff",
- "filterText": "MessageActionItemProperty",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MessageActionItemProperty"
- }
- },
- {
- "label": "MessageType",
- "labelDetails": {
- "description": "MessageType"
- },
- "kind": 22,
- "detail": "MessageType",
- "sortText": "7fffffff",
- "filterText": "MessageType",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MessageType"
- }
- },
- {
- "label": "Meta",
- "labelDetails": {
- "description": "Meta"
- },
- "kind": 20,
- "detail": "Meta",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Meta",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Meta$0"
- }
- },
- {
- "label": "MicrophoneToggle",
- "labelDetails": {
- "description": "MicrophoneToggle"
- },
- "kind": 20,
- "detail": "MicrophoneToggle",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MicrophoneToggle",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MicrophoneToggle$0"
- },
- "data": {
- "for_ref": false,
- "hash": "UFG7ih2UC8qtIQFVF8w9mWHonvg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MicrophoneVolumeDown",
- "labelDetails": {
- "description": "MicrophoneVolumeDown"
- },
- "kind": 20,
- "detail": "MicrophoneVolumeDown",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MicrophoneVolumeDown",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MicrophoneVolumeDown$0"
- },
- "data": {
- "for_ref": false,
- "hash": "MyQQShL3xJTku08PcrWCxAE/3J8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MicrophoneVolumeMute",
- "labelDetails": {
- "description": "MicrophoneVolumeMute"
- },
- "kind": 20,
- "detail": "MicrophoneVolumeMute",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MicrophoneVolumeMute",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MicrophoneVolumeMute$0"
- },
- "data": {
- "for_ref": false,
- "hash": "MyNmbjh69/Pxo2NC3xqsMObbnYs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MicrophoneVolumeUp",
- "labelDetails": {
- "description": "MicrophoneVolumeUp"
- },
- "kind": 20,
- "detail": "MicrophoneVolumeUp",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "MicrophoneVolumeUp",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MicrophoneVolumeUp$0"
- },
- "data": {
- "for_ref": false,
- "hash": "p3sWX+7vfIKv4hXu0jSpq+bBnp0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ModeChange",
- "labelDetails": {
- "description": "ModeChange"
- },
- "kind": 20,
- "detail": "ModeChange",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ModeChange",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ModeChange$0"
- },
- "data": {
- "for_ref": false,
- "hash": "eib+ubNI1ZzP8QXdBqtbDlEw3rk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ModifiersState",
- "labelDetails": {
- "description": "ModifiersState"
- },
- "kind": 22,
- "detail": "ModifiersState",
- "sortText": "7fffffff",
- "filterText": "ModifiersState",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ModifiersState"
- },
- "data": {
- "for_ref": false,
- "hash": "1t3II9Il2FT1MsEHCb3g/9a2fRk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Moniker",
- "labelDetails": {
- "description": "Moniker"
- },
- "kind": 22,
- "detail": "Moniker",
- "sortText": "7fffffff",
- "filterText": "Moniker",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Moniker"
- },
- "data": {
- "for_ref": false,
- "hash": "9IMDnSNsHZI+0P73+uuocbd/Wwc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MonikerClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "MonikerClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MonikerClientCapabilities"
- }
- },
- {
- "label": "MonikerKind",
- "labelDetails": {
- "description": "MonikerKind"
- },
- "kind": 13,
- "detail": "MonikerKind",
- "sortText": "7fffffff",
- "filterText": "MonikerKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MonikerKind"
- },
- "data": {
- "for_ref": false,
- "hash": "n5t8Lv2hKDNSoSwSDoQsSbBHAoE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MonikerOptions",
- "labelDetails": {
- "description": "MonikerOptions"
- },
- "kind": 22,
- "detail": "MonikerOptions",
- "sortText": "7fffffff",
- "filterText": "MonikerOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MonikerOptions"
- }
- },
- {
- "label": "MonikerParams",
- "labelDetails": {
- "description": "MonikerParams"
- },
- "kind": 22,
- "detail": "MonikerParams",
- "sortText": "7fffffff",
- "filterText": "MonikerParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MonikerParams"
- }
- },
- {
- "label": "MonikerRegistrationOptions",
- "labelDetails": {
- "description": "MonikerRegistrationOptions"
- },
- "kind": 22,
- "detail": "MonikerRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "MonikerRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MonikerRegistrationOptions"
- }
- },
- {
- "label": "MonikerServerCapabilities",
- "labelDetails": {
- "description": "MonikerServerCapabilities"
- },
- "kind": 13,
- "detail": "MonikerServerCapabilities",
- "sortText": "7fffffff",
- "filterText": "MonikerServerCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MonikerServerCapabilities"
- }
- },
- {
- "label": "MouseButton",
- "labelDetails": {
- "description": "MouseButton"
- },
- "kind": 13,
- "detail": "MouseButton",
- "sortText": "7fffffff",
- "filterText": "MouseButton",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MouseButton"
- },
- "data": {
- "for_ref": false,
- "hash": "kNX4nZmU1OLQdZJHhRQGJ6LzqZY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "MouseScrollDelta",
- "labelDetails": {
- "description": "MouseScrollDelta"
- },
- "kind": 13,
- "detail": "MouseScrollDelta",
- "sortText": "7fffffff",
- "filterText": "MouseScrollDelta",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "MouseScrollDelta"
- },
- "data": {
- "for_ref": false,
- "hash": "n7mE92de1xXlk/gY9fzEo/1k0OA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Mutex",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "Mutex",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Mutex"
- },
- "data": {
- "for_ref": false,
- "hash": "3FSlBdZoYiYzlzpFascFyCTEiGc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "NamedKey",
- "labelDetails": {
- "description": "NamedKey"
- },
- "kind": 13,
- "detail": "NamedKey",
- "sortText": "7fffffff",
- "filterText": "NamedKey",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "NamedKey"
- },
- "data": {
- "for_ref": false,
- "hash": "9B/4KH4kY2PzWuJPLQ3kxvEKLtA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "NavigateIn",
- "labelDetails": {
- "description": "NavigateIn"
- },
- "kind": 20,
- "detail": "NavigateIn",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "NavigateIn",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "NavigateIn$0"
- },
- "data": {
- "for_ref": false,
- "hash": "XfOMKaJOwDP774RqhQIR2liQZPI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "NavigateNext",
- "labelDetails": {
- "description": "NavigateNext"
- },
- "kind": 20,
- "detail": "NavigateNext",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "NavigateNext",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "NavigateNext$0"
- },
- "data": {
- "for_ref": false,
- "hash": "b9SujmpQjt91m2Sye/4gdSJVEHw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "NavigateOut",
- "labelDetails": {
- "description": "NavigateOut"
- },
- "kind": 20,
- "detail": "NavigateOut",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "NavigateOut",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "NavigateOut$0"
- },
- "data": {
- "for_ref": false,
- "hash": "fX35R/tJz6UPWJQLztqvnX1RCfI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "NavigatePrevious",
- "labelDetails": {
- "description": "NavigatePrevious"
- },
- "kind": 20,
- "detail": "NavigatePrevious",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "NavigatePrevious",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "NavigatePrevious$0"
- },
- "data": {
- "for_ref": false,
- "hash": "mLccepQ65qG/BIHV0eFW6TkMDb8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "New",
- "labelDetails": {
- "description": "New"
- },
- "kind": 20,
- "detail": "New",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "New",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "New$0"
- },
- "data": {
- "for_ref": false,
- "hash": "/coEGgnQKHsuTp9jWhWOMRFjXO4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "NextCandidate",
- "labelDetails": {
- "description": "NextCandidate"
- },
- "kind": 20,
- "detail": "NextCandidate",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "NextCandidate",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "NextCandidate$0"
- }
- },
- {
- "label": "NextFavoriteChannel",
- "labelDetails": {
- "description": "NextFavoriteChannel"
- },
- "kind": 20,
- "detail": "NextFavoriteChannel",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "NextFavoriteChannel",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "NextFavoriteChannel$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Ra00zp9CNIIfCUxzcj40QZke00c=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "NextUserProfile",
- "labelDetails": {
- "description": "NextUserProfile"
- },
- "kind": 20,
- "detail": "NextUserProfile",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "NextUserProfile",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "NextUserProfile$0"
- },
- "data": {
- "for_ref": false,
- "hash": "BhIwfIUQvnkLsayeMWBBHOufLM8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "NonConvert",
- "labelDetails": {
- "description": "NonConvert"
- },
- "kind": 20,
- "detail": "NonConvert",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "NonConvert",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "NonConvert$0"
- },
- "data": {
- "for_ref": false,
- "hash": "B8IOHvTPONQhsUSVoULtxbODslE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "NonZeroU32",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "NonZeroU32",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "NonZeroU32"
- },
- "data": {
- "for_ref": false,
- "hash": "MQxTCLhVbcsRkVSixjNlo5FOhkY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Not",
- "labelDetails": {
- "detail": "(alias !)"
- },
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "Not",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Not"
- },
- "data": {
- "for_ref": false,
- "hash": "ICezEzBTBhRFCYGmEw4+/9xqksg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Notification",
- "labelDetails": {
- "description": "Notification"
- },
- "kind": 20,
- "detail": "Notification",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Notification",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Notification$0"
- },
- "data": {
- "for_ref": false,
- "hash": "zLMFYcewBFiDY7VpLbZE2+FW/sU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "NumLock",
- "labelDetails": {
- "description": "NumLock"
- },
- "kind": 20,
- "detail": "NumLock",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "NumLock",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "NumLock$0"
- },
- "data": {
- "for_ref": false,
- "hash": "WnDpcDOwF/kknbE0W+RTE3iBFpc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "NumberOrString",
- "labelDetails": {
- "description": "NumberOrString"
- },
- "kind": 13,
- "detail": "NumberOrString",
- "sortText": "7fffffff",
- "filterText": "NumberOrString",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "NumberOrString"
- }
- },
- {
- "label": "OnDemand",
- "labelDetails": {
- "description": "OnDemand"
- },
- "kind": 20,
- "detail": "OnDemand",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "OnDemand",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "OnDemand$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Q06XU++BwCN23WKjvPhNMaFuyYE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "OnceLock",
- "labelDetails": {
- "description": "OnceLock<{unknown}>"
- },
- "kind": 22,
- "detail": "OnceLock<{unknown}>",
- "sortText": "7fffffff",
- "filterText": "OnceLock",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "OnceLock"
- },
- "data": {
- "for_ref": false,
- "hash": "C1MBv0rr1sZPxpmT1KGJDqOo0qI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "OneOf",
- "labelDetails": {
- "description": "OneOf<{unknown}, {unknown}>"
- },
- "kind": 13,
- "detail": "OneOf<{unknown}, {unknown}>",
- "sortText": "7fffffff",
- "filterText": "OneOf",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "OneOf"
- }
- },
- {
- "label": "Open",
- "labelDetails": {
- "description": "Open"
- },
- "kind": 20,
- "detail": "Open",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Open",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Open$0"
- },
- "data": {
- "for_ref": false,
- "hash": "7SZB+SvyhwB4fI3dQB4z+r/HQrc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "OptionalVersionedTextDocumentIdentifier",
- "labelDetails": {
- "description": "OptionalVersionedTextDocumentIdentifier"
- },
- "kind": 22,
- "detail": "OptionalVersionedTextDocumentIdentifier",
- "sortText": "7fffffff",
- "filterText": "OptionalVersionedTextDocumentIdentifier",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "OptionalVersionedTextDocumentIdentifier"
- },
- "data": {
- "for_ref": false,
- "hash": "9nTG8v4sEdgfTovrziDVCzVNcgM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "OverlayAt",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "OverlayAt",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "OverlayAt"
- },
- "data": {
- "for_ref": false,
- "hash": "wJfhCS2UpEABp3cLx+zZ35k9QTw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PageDown",
- "labelDetails": {
- "description": "PageDown"
- },
- "kind": 20,
- "detail": "PageDown",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "PageDown",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PageDown$0"
- },
- "data": {
- "for_ref": false,
- "hash": "L24t7N1ldY99XWtCpg4oUfa2zrs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PageUp",
- "labelDetails": {
- "description": "PageUp"
- },
- "kind": 20,
- "detail": "PageUp",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "PageUp",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PageUp$0"
- },
- "data": {
- "for_ref": false,
- "hash": "bstwPxy9epCIVRLRkhuvRkXPT+k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Pairing",
- "labelDetails": {
- "description": "Pairing"
- },
- "kind": 20,
- "detail": "Pairing",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Pairing",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Pairing$0"
- },
- "data": {
- "for_ref": false,
- "hash": "337lcO7FBtxwKO3PRn5jPJV854o=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ParameterInformation",
- "labelDetails": {
- "description": "ParameterInformation"
- },
- "kind": 22,
- "detail": "ParameterInformation",
- "sortText": "7fffffff",
- "filterText": "ParameterInformation",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ParameterInformation"
- },
- "data": {
- "for_ref": false,
- "hash": "6rX+E5nnGZ7cbFDJ3qibpuB9lNc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ParameterInformationSettings",
- "labelDetails": {
- "description": "ParameterInformationSettings"
- },
- "kind": 22,
- "detail": "ParameterInformationSettings",
- "sortText": "7fffffff",
- "filterText": "ParameterInformationSettings",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ParameterInformationSettings"
- }
- },
- {
- "label": "ParameterLabel",
- "labelDetails": {
- "description": "ParameterLabel"
- },
- "kind": 13,
- "detail": "ParameterLabel",
- "sortText": "7fffffff",
- "filterText": "ParameterLabel",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ParameterLabel"
- }
- },
- {
- "label": "PartialResultParams",
- "labelDetails": {
- "description": "PartialResultParams"
- },
- "kind": 22,
- "detail": "PartialResultParams",
- "sortText": "7fffffff",
- "filterText": "PartialResultParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PartialResultParams"
- },
- "data": {
- "for_ref": false,
- "hash": "xUIGzS/Pw+bL0vLuXrMuu0EAP48=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Paste",
- "labelDetails": {
- "description": "Paste"
- },
- "kind": 20,
- "detail": "Paste",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Paste",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Paste$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Fy8jFwWew1jHvaOkbRXMTfbPRh4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PatchInput",
- "labelDetails": {
- "description": "PatchInput<'_, {unknown}>"
- },
- "kind": 13,
- "detail": "PatchInput<'_, {unknown}>",
- "sortText": "7fffffff",
- "filterText": "PatchInput",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PatchInput"
- }
- },
- {
- "label": "Path",
- "labelDetails": {
- "description": "Path"
- },
- "kind": 22,
- "detail": "Path",
- "sortText": "7fffffff",
- "filterText": "Path",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Path"
- },
- "data": {
- "for_ref": false,
- "hash": "gmDNJobtiRwWwTyM5a+w4/uw9BU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PathBuf",
- "labelDetails": {
- "description": "PathBuf"
- },
- "kind": 22,
- "detail": "PathBuf",
- "sortText": "7fffffff",
- "filterText": "PathBuf",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PathBuf"
- },
- "data": {
- "for_ref": false,
- "hash": "1+/ej9XiWsSLtuG2GPdflZJExow=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Pattern",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "Pattern",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Pattern"
- },
- "data": {
- "for_ref": false,
- "hash": "HGT83/669uYK7vD8D1auE/51Iis=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Pause",
- "labelDetails": {
- "description": "Pause"
- },
- "kind": 20,
- "detail": "Pause",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Pause",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Pause$0"
- },
- "data": {
- "for_ref": false,
- "hash": "dfxchcOuBlhaM4fmUnIczPEGrYI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Pin",
- "labelDetails": {
- "description": "Pin<{unknown}>"
- },
- "kind": 22,
- "detail": "Pin<{unknown}>",
- "sortText": "7fffffff",
- "filterText": "Pin",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Pin"
- },
- "data": {
- "for_ref": false,
- "hash": "fFbod1iD2O4JaEEqce/7+jhWiTg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PinPDown",
- "labelDetails": {
- "description": "PinPDown"
- },
- "kind": 20,
- "detail": "PinPDown",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "PinPDown",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PinPDown$0"
- },
- "data": {
- "for_ref": false,
- "hash": "IQpG4MvXxhN2OuHJdQQv976G3lU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PinPMove",
- "labelDetails": {
- "description": "PinPMove"
- },
- "kind": 20,
- "detail": "PinPMove",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "PinPMove",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PinPMove$0"
- },
- "data": {
- "for_ref": false,
- "hash": "d1PViJshVbAVpEdBGhc+hPu9/NU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PinPToggle",
- "labelDetails": {
- "description": "PinPToggle"
- },
- "kind": 20,
- "detail": "PinPToggle",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "PinPToggle",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PinPToggle$0"
- },
- "data": {
- "for_ref": false,
- "hash": "+gMYJMO+muRQ8T1C6B6g1KEkSj8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PinPUp",
- "labelDetails": {
- "description": "PinPUp"
- },
- "kind": 20,
- "detail": "PinPUp",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "PinPUp",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PinPUp$0"
- },
- "data": {
- "for_ref": false,
- "hash": "EkbEKC0micT+cJURT6Pyy1UPy7M=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Play",
- "labelDetails": {
- "description": "Play"
- },
- "kind": 20,
- "detail": "Play",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Play",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Play$0"
- },
- "data": {
- "for_ref": false,
- "hash": "epqdY89RJPENnEo2WaLzimdHzAw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PlaySpeedDown",
- "labelDetails": {
- "description": "PlaySpeedDown"
- },
- "kind": 20,
- "detail": "PlaySpeedDown",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "PlaySpeedDown",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PlaySpeedDown$0"
- },
- "data": {
- "for_ref": false,
- "hash": "VUf/LW/0Px97klVyVGUs3WMbQVo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PlaySpeedReset",
- "labelDetails": {
- "description": "PlaySpeedReset"
- },
- "kind": 20,
- "detail": "PlaySpeedReset",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "PlaySpeedReset",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PlaySpeedReset$0"
- },
- "data": {
- "for_ref": false,
- "hash": "2BzKjIEjCZgl+NofWq2lDU5Xrpg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PlaySpeedUp",
- "labelDetails": {
- "description": "PlaySpeedUp"
- },
- "kind": 20,
- "detail": "PlaySpeedUp",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "PlaySpeedUp",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PlaySpeedUp$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ZgOSZ4MkIHMh8koixGZ6aJthucc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Position",
- "labelDetails": {
- "description": "Position"
- },
- "kind": 22,
- "detail": "Position",
- "sortText": "7fffffff",
- "filterText": "Position",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Position"
- },
- "data": {
- "for_ref": false,
- "hash": "x7dazCuJRU5mKJJucy3o7dQUC8k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PositionEncodingKind",
- "labelDetails": {
- "description": "PositionEncodingKind"
- },
- "kind": 22,
- "detail": "PositionEncodingKind",
- "sortText": "7fffffff",
- "filterText": "PositionEncodingKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PositionEncodingKind"
- },
- "data": {
- "for_ref": false,
- "hash": "bl22OY3Kt6FLEtpxyOJIvTfGeZg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Power",
- "labelDetails": {
- "description": "Power"
- },
- "kind": 20,
- "detail": "Power",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Power",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Power$0"
- },
- "data": {
- "for_ref": false,
- "hash": "5Ygvf5/d+zrb34HGQgjMG9XGIIg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PowerOff",
- "labelDetails": {
- "description": "PowerOff"
- },
- "kind": 20,
- "detail": "PowerOff",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "PowerOff",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PowerOff$0"
- },
- "data": {
- "for_ref": false,
- "hash": "K4QQ/okCRTKNcgMLPTZGtTk101k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PrepareRenameResponse",
- "labelDetails": {
- "description": "PrepareRenameResponse"
- },
- "kind": 13,
- "detail": "PrepareRenameResponse",
- "sortText": "7fffffff",
- "filterText": "PrepareRenameResponse",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PrepareRenameResponse"
- }
- },
- {
- "label": "PrepareSupportDefaultBehavior",
- "labelDetails": {
- "description": "PrepareSupportDefaultBehavior"
- },
- "kind": 22,
- "detail": "PrepareSupportDefaultBehavior",
- "sortText": "7fffffff",
- "filterText": "PrepareSupportDefaultBehavior",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PrepareSupportDefaultBehavior"
- }
- },
- {
- "label": "PreviousCandidate",
- "labelDetails": {
- "description": "PreviousCandidate"
- },
- "kind": 20,
- "detail": "PreviousCandidate",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "PreviousCandidate",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PreviousCandidate$0"
- }
- },
- {
- "label": "PreviousResultId",
- "labelDetails": {
- "description": "PreviousResultId"
- },
- "kind": 22,
- "detail": "PreviousResultId",
- "sortText": "7fffffff",
- "filterText": "PreviousResultId",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PreviousResultId"
- },
- "data": {
- "for_ref": false,
- "hash": "eHhlBgvpHB3NXnrVshfpNhoeOy0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Print",
- "labelDetails": {
- "description": "Print"
- },
- "kind": 20,
- "detail": "Print",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Print",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Print$0"
- },
- "data": {
- "for_ref": false,
- "hash": "FDwYtFlroluoGCS0FxMFXvzVdI8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PrintScreen",
- "labelDetails": {
- "description": "PrintScreen"
- },
- "kind": 20,
- "detail": "PrintScreen",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "PrintScreen",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PrintScreen$0"
- },
- "data": {
- "for_ref": false,
- "hash": "BVRIwYDlyuh/BUjJqfLgvX3qDKo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Process",
- "labelDetails": {
- "description": "Process"
- },
- "kind": 20,
- "detail": "Process",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Process",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Process$0"
- }
- },
- {
- "label": "ProgressParams",
- "labelDetails": {
- "description": "ProgressParams"
- },
- "kind": 22,
- "detail": "ProgressParams",
- "sortText": "7fffffff",
- "filterText": "ProgressParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ProgressParams"
- },
- "data": {
- "for_ref": false,
- "hash": "cUj/+wBEp+FY2VJOuaVKLAbjQIM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ProgressParamsValue",
- "labelDetails": {
- "description": "ProgressParamsValue"
- },
- "kind": 13,
- "detail": "ProgressParamsValue",
- "sortText": "7fffffff",
- "filterText": "ProgressParamsValue",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ProgressParamsValue"
- }
- },
- {
- "label": "ProgressToken",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "ProgressToken",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ProgressToken"
- }
- },
- {
- "label": "Props",
- "labelDetails": {
- "description": "Props"
- },
- "kind": 20,
- "detail": "Props",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Props",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Props$0"
- },
- "data": {
- "for_ref": false,
- "hash": "5JcRmskB81L9+Q7VpKNcwum9/7Y=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PublishDiagnosticsClientCapabilities",
- "labelDetails": {
- "description": "PublishDiagnosticsClientCapabilities"
- },
- "kind": 22,
- "detail": "PublishDiagnosticsClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "PublishDiagnosticsClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PublishDiagnosticsClientCapabilities"
- }
- },
- {
- "label": "PublishDiagnosticsParams",
- "labelDetails": {
- "description": "PublishDiagnosticsParams"
- },
- "kind": 22,
- "detail": "PublishDiagnosticsParams",
- "sortText": "7fffffff",
- "filterText": "PublishDiagnosticsParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PublishDiagnosticsParams"
- }
- },
- {
- "label": "RandomToggle",
- "labelDetails": {
- "description": "RandomToggle"
- },
- "kind": 20,
- "detail": "RandomToggle",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "RandomToggle",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RandomToggle$0"
- },
- "data": {
- "for_ref": false,
- "hash": "GzCTP+/yHf8n2qRGVEMhWH49+js=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Range",
- "labelDetails": {
- "detail": "(alias ..)",
- "description": "Range<{unknown}>"
- },
- "kind": 22,
- "detail": "Range<{unknown}>",
- "sortText": "7fffffff",
- "filterText": "Range",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Range"
- },
- "data": {
- "for_ref": false,
- "hash": "3IC3fE57ft35pfot2lxrlZvAT8o=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "RcLowBattery",
- "labelDetails": {
- "description": "RcLowBattery"
- },
- "kind": 20,
- "detail": "RcLowBattery",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "RcLowBattery",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RcLowBattery$0"
- },
- "data": {
- "for_ref": false,
- "hash": "o0Iv+mXi6fofItohyldxFm/5wxM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "RecordSpeedNext",
- "labelDetails": {
- "description": "RecordSpeedNext"
- },
- "kind": 20,
- "detail": "RecordSpeedNext",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "RecordSpeedNext",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RecordSpeedNext$0"
- },
- "data": {
- "for_ref": false,
- "hash": "XwUTr+5otMfTQbJenqI8KYTk4BU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Redo",
- "labelDetails": {
- "description": "Redo"
- },
- "kind": 20,
- "detail": "Redo",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Redo",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Redo$0"
- },
- "data": {
- "for_ref": false,
- "hash": "TffUZok1/uHeckSg1xjUjABy++A=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ReferenceClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "ReferenceClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ReferenceClientCapabilities"
- }
- },
- {
- "label": "ReferenceContext",
- "labelDetails": {
- "description": "ReferenceContext"
- },
- "kind": 22,
- "detail": "ReferenceContext",
- "sortText": "7fffffff",
- "filterText": "ReferenceContext",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ReferenceContext"
- }
- },
- {
- "label": "ReferenceParams",
- "labelDetails": {
- "description": "ReferenceParams"
- },
- "kind": 22,
- "detail": "ReferenceParams",
- "sortText": "7fffffff",
- "filterText": "ReferenceParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ReferenceParams"
- }
- },
- {
- "label": "ReferencesOptions",
- "labelDetails": {
- "description": "ReferencesOptions"
- },
- "kind": 22,
- "detail": "ReferencesOptions",
- "sortText": "7fffffff",
- "filterText": "ReferencesOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ReferencesOptions"
- }
- },
- {
- "label": "Regex",
- "labelDetails": {
- "description": "Regex"
- },
- "kind": 22,
- "detail": "Regex",
- "sortText": "7fffffff",
- "filterText": "Regex",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Regex"
- },
- "data": {
- "for_ref": false,
- "hash": "Zc2zQwfFDyv5BUX8w8ovZXWQRTI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Registration",
- "labelDetails": {
- "description": "Registration"
- },
- "kind": 22,
- "detail": "Registration",
- "sortText": "7fffffff",
- "filterText": "Registration",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Registration"
- },
- "data": {
- "for_ref": false,
- "hash": "Lj/DeLZdo9A8CpzHb3NPNn9kvx0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "RegistrationParams",
- "labelDetails": {
- "description": "RegistrationParams"
- },
- "kind": 22,
- "detail": "RegistrationParams",
- "sortText": "7fffffff",
- "filterText": "RegistrationParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RegistrationParams"
- }
- },
- {
- "label": "RegularExpressionsClientCapabilities",
- "labelDetails": {
- "description": "RegularExpressionsClientCapabilities"
- },
- "kind": 22,
- "detail": "RegularExpressionsClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "RegularExpressionsClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RegularExpressionsClientCapabilities"
- }
- },
- {
- "label": "RelatedFullDocumentDiagnosticReport",
- "labelDetails": {
- "description": "RelatedFullDocumentDiagnosticReport"
- },
- "kind": 22,
- "detail": "RelatedFullDocumentDiagnosticReport",
- "sortText": "7fffffff",
- "filterText": "RelatedFullDocumentDiagnosticReport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RelatedFullDocumentDiagnosticReport"
- },
- "data": {
- "for_ref": false,
- "hash": "3jPkblVqp8U/THxdS2HRfYgvE28=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "RelatedUnchangedDocumentDiagnosticReport",
- "labelDetails": {
- "description": "RelatedUnchangedDocumentDiagnosticReport"
- },
- "kind": 22,
- "detail": "RelatedUnchangedDocumentDiagnosticReport",
- "sortText": "7fffffff",
- "filterText": "RelatedUnchangedDocumentDiagnosticReport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RelatedUnchangedDocumentDiagnosticReport"
- },
- "data": {
- "for_ref": false,
- "hash": "PB7H556abK8ns9y9VW4aYEl7oSQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "RelativePattern",
- "labelDetails": {
- "description": "RelativePattern"
- },
- "kind": 22,
- "detail": "RelativePattern",
- "sortText": "7fffffff",
- "filterText": "RelativePattern",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RelativePattern"
- },
- "data": {
- "for_ref": false,
- "hash": "J/bcCotAcIjzj07YNLe1x75YIfM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "RenameClientCapabilities",
- "labelDetails": {
- "description": "RenameClientCapabilities"
- },
- "kind": 22,
- "detail": "RenameClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "RenameClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RenameClientCapabilities"
- }
- },
- {
- "label": "RenameFile",
- "labelDetails": {
- "description": "RenameFile"
- },
- "kind": 22,
- "detail": "RenameFile",
- "sortText": "7fffffff",
- "filterText": "RenameFile",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RenameFile"
- },
- "data": {
- "for_ref": false,
- "hash": "uJnhzNiZgm7YdPSB9JUvdrcQPBU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "RenameFileOptions",
- "labelDetails": {
- "description": "RenameFileOptions"
- },
- "kind": 22,
- "detail": "RenameFileOptions",
- "sortText": "7fffffff",
- "filterText": "RenameFileOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RenameFileOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "ZzZiAWdM+yfd4oQGt6LS0oj80Gc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "RenameFilesParams",
- "labelDetails": {
- "description": "RenameFilesParams"
- },
- "kind": 22,
- "detail": "RenameFilesParams",
- "sortText": "7fffffff",
- "filterText": "RenameFilesParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RenameFilesParams"
- },
- "data": {
- "for_ref": false,
- "hash": "c/BlOel5GKLq8WKLdqw3pr7bK/k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "RenameOptions",
- "labelDetails": {
- "description": "RenameOptions"
- },
- "kind": 22,
- "detail": "RenameOptions",
- "sortText": "7fffffff",
- "filterText": "RenameOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RenameOptions"
- }
- },
- {
- "label": "RenameParams",
- "labelDetails": {
- "description": "RenameParams"
- },
- "kind": 22,
- "detail": "RenameParams",
- "sortText": "7fffffff",
- "filterText": "RenameParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RenameParams"
- }
- },
- {
- "label": "ResourceOp",
- "labelDetails": {
- "description": "ResourceOp"
- },
- "kind": 13,
- "detail": "ResourceOp",
- "sortText": "7fffffff",
- "filterText": "ResourceOp",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ResourceOp"
- }
- },
- {
- "label": "ResourceOperationKind",
- "labelDetails": {
- "description": "ResourceOperationKind"
- },
- "kind": 13,
- "detail": "ResourceOperationKind",
- "sortText": "7fffffff",
- "filterText": "ResourceOperationKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ResourceOperationKind"
- }
- },
- {
- "label": "RfBypass",
- "labelDetails": {
- "description": "RfBypass"
- },
- "kind": 20,
- "detail": "RfBypass",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "RfBypass",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "RfBypass$0"
- },
- "data": {
- "for_ref": false,
- "hash": "a4BCzo0Y/syAloQkKZEBFXAZ0ds=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Romaji",
- "labelDetails": {
- "description": "Romaji"
- },
- "kind": 20,
- "detail": "Romaji",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Romaji",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Romaji$0"
- },
- "data": {
- "for_ref": false,
- "hash": "OjBLljFKuJzREjTpYNBuGaGF5EU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Rope",
- "labelDetails": {
- "description": "Rope"
- },
- "kind": 22,
- "detail": "Rope",
- "sortText": "7fffffff",
- "filterText": "Rope",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Rope"
- },
- "data": {
- "for_ref": false,
- "hash": "RcQ6LposqV6a7X4Xq+fDvmKL6Q4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "STBInput",
- "labelDetails": {
- "description": "STBInput"
- },
- "kind": 20,
- "detail": "STBInput",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "STBInput",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "STBInput$0"
- },
- "data": {
- "for_ref": false,
- "hash": "3uVsIbodfxgnbKq5jalagV9m2VY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "STBPower",
- "labelDetails": {
- "description": "STBPower"
- },
- "kind": 20,
- "detail": "STBPower",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "STBPower",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "STBPower$0"
- },
- "data": {
- "for_ref": false,
- "hash": "3sBZrWmWjet2BI33sMc79svTS9Q=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Save",
- "labelDetails": {
- "description": "Save"
- },
- "kind": 20,
- "detail": "Save",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Save",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Save$0"
- },
- "data": {
- "for_ref": false,
- "hash": "tFzAp6mZzls21RPugABrFRcYIc8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SaveOptions",
- "labelDetails": {
- "description": "SaveOptions"
- },
- "kind": 22,
- "detail": "SaveOptions",
- "sortText": "7fffffff",
- "filterText": "SaveOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SaveOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "+kqbJWGRwxRUyZF9UtcvK3QACs4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ScanChannelsToggle",
- "labelDetails": {
- "description": "ScanChannelsToggle"
- },
- "kind": 20,
- "detail": "ScanChannelsToggle",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ScanChannelsToggle",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ScanChannelsToggle$0"
- },
- "data": {
- "for_ref": false,
- "hash": "9tkmrfD8U3On4JFITGO9zK8MCrI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ScreenModeNext",
- "labelDetails": {
- "description": "ScreenModeNext"
- },
- "kind": 20,
- "detail": "ScreenModeNext",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ScreenModeNext",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ScreenModeNext$0"
- },
- "data": {
- "for_ref": false,
- "hash": "LM98Bml5H9/mE8ch6crhvw5yVww=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ScrollLock",
- "labelDetails": {
- "description": "ScrollLock"
- },
- "kind": 20,
- "detail": "ScrollLock",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ScrollLock",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ScrollLock$0"
- },
- "data": {
- "for_ref": false,
- "hash": "+C9+QP8pMNwwr2rkwu/NP8LOpCY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Select",
- "labelDetails": {
- "description": "Select"
- },
- "kind": 20,
- "detail": "Select",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Select",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Select$0"
- }
- },
- {
- "label": "SelectionRange",
- "labelDetails": {
- "description": "SelectionRange"
- },
- "kind": 22,
- "detail": "SelectionRange",
- "sortText": "7fffffff",
- "filterText": "SelectionRange",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SelectionRange"
- },
- "data": {
- "for_ref": false,
- "hash": "w/2w09tJKkGvEdi6xl3OuPfmCY4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SelectionRangeClientCapabilities",
- "labelDetails": {
- "description": "SelectionRangeClientCapabilities"
- },
- "kind": 22,
- "detail": "SelectionRangeClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "SelectionRangeClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SelectionRangeClientCapabilities"
- }
- },
- {
- "label": "SelectionRangeOptions",
- "labelDetails": {
- "description": "SelectionRangeOptions"
- },
- "kind": 22,
- "detail": "SelectionRangeOptions",
- "sortText": "7fffffff",
- "filterText": "SelectionRangeOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SelectionRangeOptions"
- }
- },
- {
- "label": "SelectionRangeParams",
- "labelDetails": {
- "description": "SelectionRangeParams"
- },
- "kind": 22,
- "detail": "SelectionRangeParams",
- "sortText": "7fffffff",
- "filterText": "SelectionRangeParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SelectionRangeParams"
- },
- "data": {
- "for_ref": false,
- "hash": "xTXBQ9vzn4+G+LC2wdLw7/SlEeQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SelectionRangeProviderCapability",
- "labelDetails": {
- "description": "SelectionRangeProviderCapability"
- },
- "kind": 13,
- "detail": "SelectionRangeProviderCapability",
- "sortText": "7fffffff",
- "filterText": "SelectionRangeProviderCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SelectionRangeProviderCapability"
- }
- },
- {
- "label": "SelectionRangeRegistrationOptions",
- "labelDetails": {
- "description": "SelectionRangeRegistrationOptions"
- },
- "kind": 22,
- "detail": "SelectionRangeRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "SelectionRangeRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SelectionRangeRegistrationOptions"
- }
- },
- {
- "label": "SemanticToken",
- "labelDetails": {
- "description": "SemanticToken"
- },
- "kind": 22,
- "detail": "SemanticToken",
- "sortText": "7fffffff",
- "filterText": "SemanticToken",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticToken"
- },
- "data": {
- "for_ref": false,
- "hash": "prpl7zUu11Y1x2zHGZXjkURK2C4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SemanticTokenModifier",
- "labelDetails": {
- "description": "SemanticTokenModifier"
- },
- "kind": 22,
- "detail": "SemanticTokenModifier",
- "sortText": "7fffffff",
- "filterText": "SemanticTokenModifier",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokenModifier"
- },
- "data": {
- "for_ref": false,
- "hash": "obhR6HT+F3D4lQKWKjC7nRJx/Ng=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SemanticTokenType",
- "labelDetails": {
- "description": "SemanticTokenType"
- },
- "kind": 22,
- "detail": "SemanticTokenType",
- "sortText": "7fffffff",
- "filterText": "SemanticTokenType",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokenType"
- },
- "data": {
- "for_ref": false,
- "hash": "GaoQBieWJwTr3FYFI3i9ywQUOhg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SemanticTokens",
- "labelDetails": {
- "description": "SemanticTokens"
- },
- "kind": 22,
- "detail": "SemanticTokens",
- "sortText": "7fffffff",
- "filterText": "SemanticTokens",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokens"
- },
- "data": {
- "for_ref": false,
- "hash": "/NWO6BrKMFOzi89ENfGdThzV4RE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SemanticTokensClientCapabilities",
- "labelDetails": {
- "description": "SemanticTokensClientCapabilities"
- },
- "kind": 22,
- "detail": "SemanticTokensClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "f9YG6xLDQzmM84USLIKchOIcsoQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SemanticTokensClientCapabilitiesRequests",
- "labelDetails": {
- "description": "SemanticTokensClientCapabilitiesRequests"
- },
- "kind": 22,
- "detail": "SemanticTokensClientCapabilitiesRequests",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensClientCapabilitiesRequests",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensClientCapabilitiesRequests"
- }
- },
- {
- "label": "SemanticTokensDelta",
- "labelDetails": {
- "description": "SemanticTokensDelta"
- },
- "kind": 22,
- "detail": "SemanticTokensDelta",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensDelta",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensDelta"
- },
- "data": {
- "for_ref": false,
- "hash": "p2b1wuli6KX5qqZdHL9AGie6P9E=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SemanticTokensDeltaParams",
- "labelDetails": {
- "description": "SemanticTokensDeltaParams"
- },
- "kind": 22,
- "detail": "SemanticTokensDeltaParams",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensDeltaParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensDeltaParams"
- }
- },
- {
- "label": "SemanticTokensEdit",
- "labelDetails": {
- "description": "SemanticTokensEdit"
- },
- "kind": 22,
- "detail": "SemanticTokensEdit",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensEdit",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensEdit"
- },
- "data": {
- "for_ref": false,
- "hash": "f9w0CbF9ugWXrGcffcPM9g+1wRw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SemanticTokensFullDeltaResult",
- "labelDetails": {
- "description": "SemanticTokensFullDeltaResult"
- },
- "kind": 13,
- "detail": "SemanticTokensFullDeltaResult",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensFullDeltaResult",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensFullDeltaResult"
- }
- },
- {
- "label": "SemanticTokensFullOptions",
- "labelDetails": {
- "description": "SemanticTokensFullOptions"
- },
- "kind": 13,
- "detail": "SemanticTokensFullOptions",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensFullOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensFullOptions"
- }
- },
- {
- "label": "SemanticTokensLegend",
- "labelDetails": {
- "description": "SemanticTokensLegend"
- },
- "kind": 22,
- "detail": "SemanticTokensLegend",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensLegend",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensLegend"
- },
- "data": {
- "for_ref": false,
- "hash": "QL2CQNKswi+jHWNyNcZeEmoSkqk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SemanticTokensOptions",
- "labelDetails": {
- "description": "SemanticTokensOptions"
- },
- "kind": 22,
- "detail": "SemanticTokensOptions",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "7fyEcSarFrNNTdbJ6Wr4DFhkRj8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SemanticTokensParams",
- "labelDetails": {
- "description": "SemanticTokensParams"
- },
- "kind": 22,
- "detail": "SemanticTokensParams",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensParams"
- }
- },
- {
- "label": "SemanticTokensPartialResult",
- "labelDetails": {
- "description": "SemanticTokensPartialResult"
- },
- "kind": 22,
- "detail": "SemanticTokensPartialResult",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensPartialResult",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensPartialResult"
- },
- "data": {
- "for_ref": false,
- "hash": "/+Q+lYAdKhBXjQdEbfsTfbAY6kg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SemanticTokensRangeParams",
- "labelDetails": {
- "description": "SemanticTokensRangeParams"
- },
- "kind": 22,
- "detail": "SemanticTokensRangeParams",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensRangeParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensRangeParams"
- }
- },
- {
- "label": "SemanticTokensRangeResult",
- "labelDetails": {
- "description": "SemanticTokensRangeResult"
- },
- "kind": 13,
- "detail": "SemanticTokensRangeResult",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensRangeResult",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensRangeResult"
- }
- },
- {
- "label": "SemanticTokensRegistrationOptions",
- "labelDetails": {
- "description": "SemanticTokensRegistrationOptions"
- },
- "kind": 22,
- "detail": "SemanticTokensRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensRegistrationOptions"
- }
- },
- {
- "label": "SemanticTokensResult",
- "labelDetails": {
- "description": "SemanticTokensResult"
- },
- "kind": 13,
- "detail": "SemanticTokensResult",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensResult",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensResult"
- }
- },
- {
- "label": "SemanticTokensServerCapabilities",
- "labelDetails": {
- "description": "SemanticTokensServerCapabilities"
- },
- "kind": 13,
- "detail": "SemanticTokensServerCapabilities",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensServerCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensServerCapabilities"
- }
- },
- {
- "label": "SemanticTokensWorkspaceClientCapabilities",
- "labelDetails": {
- "description": "SemanticTokensWorkspaceClientCapabilities"
- },
- "kind": 22,
- "detail": "SemanticTokensWorkspaceClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "SemanticTokensWorkspaceClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SemanticTokensWorkspaceClientCapabilities"
- }
- },
- {
- "label": "ServerCapabilities",
- "labelDetails": {
- "description": "ServerCapabilities"
- },
- "kind": 22,
- "detail": "ServerCapabilities",
- "sortText": "7fffffff",
- "filterText": "ServerCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ServerCapabilities"
- }
- },
- {
- "label": "ServerInfo",
- "labelDetails": {
- "description": "ServerInfo"
- },
- "kind": 22,
- "detail": "ServerInfo",
- "sortText": "7fffffff",
- "filterText": "ServerInfo",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ServerInfo"
- }
- },
- {
- "label": "SetTraceParams",
- "labelDetails": {
- "description": "SetTraceParams"
- },
- "kind": 22,
- "detail": "SetTraceParams",
- "sortText": "7fffffff",
- "filterText": "SetTraceParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SetTraceParams"
- }
- },
- {
- "label": "Settings",
- "labelDetails": {
- "description": "Settings"
- },
- "kind": 20,
- "detail": "Settings",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Settings",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Settings$0"
- },
- "data": {
- "for_ref": false,
- "hash": "8yMtQgzT0Wni0UBM3OLyrqz559s=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Shift",
- "labelDetails": {
- "description": "Shift"
- },
- "kind": 20,
- "detail": "Shift",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Shift",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Shift$0"
- },
- "data": {
- "for_ref": false,
- "hash": "TC6fni9ow+ZrQ/6dimG4O6ze8eY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ShowDocumentClientCapabilities",
- "labelDetails": {
- "description": "ShowDocumentClientCapabilities"
- },
- "kind": 22,
- "detail": "ShowDocumentClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "ShowDocumentClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ShowDocumentClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "2IbqGJ053n+b3C3YOkKzvGMT0Qo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ShowDocumentParams",
- "labelDetails": {
- "description": "ShowDocumentParams"
- },
- "kind": 22,
- "detail": "ShowDocumentParams",
- "sortText": "7fffffff",
- "filterText": "ShowDocumentParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ShowDocumentParams"
- },
- "data": {
- "for_ref": false,
- "hash": "tn7itF++xplNLOjBnoJovbMtlKM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ShowDocumentResult",
- "labelDetails": {
- "description": "ShowDocumentResult"
- },
- "kind": 22,
- "detail": "ShowDocumentResult",
- "sortText": "7fffffff",
- "filterText": "ShowDocumentResult",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ShowDocumentResult"
- },
- "data": {
- "for_ref": false,
- "hash": "joXJfhnwtevFsbBtC63FKtBixzM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ShowMessageParams",
- "labelDetails": {
- "description": "ShowMessageParams"
- },
- "kind": 22,
- "detail": "ShowMessageParams",
- "sortText": "7fffffff",
- "filterText": "ShowMessageParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ShowMessageParams"
- }
- },
- {
- "label": "ShowMessageRequestClientCapabilities",
- "labelDetails": {
- "description": "ShowMessageRequestClientCapabilities"
- },
- "kind": 22,
- "detail": "ShowMessageRequestClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "ShowMessageRequestClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ShowMessageRequestClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "1ffdMY1jhYyzR2AZ4o4iU7bC37w=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ShowMessageRequestParams",
- "labelDetails": {
- "description": "ShowMessageRequestParams"
- },
- "kind": 22,
- "detail": "ShowMessageRequestParams",
- "sortText": "7fffffff",
- "filterText": "ShowMessageRequestParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ShowMessageRequestParams"
- }
- },
- {
- "label": "SignatureHelp",
- "labelDetails": {
- "description": "SignatureHelp"
- },
- "kind": 22,
- "detail": "SignatureHelp",
- "sortText": "7fffffff",
- "filterText": "SignatureHelp",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SignatureHelp"
- },
- "data": {
- "for_ref": false,
- "hash": "PpFAAZwmNwyhOqeYeLNN4QiZOng=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SignatureHelpClientCapabilities",
- "labelDetails": {
- "description": "SignatureHelpClientCapabilities"
- },
- "kind": 22,
- "detail": "SignatureHelpClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "SignatureHelpClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SignatureHelpClientCapabilities"
- }
- },
- {
- "label": "SignatureHelpContext",
- "labelDetails": {
- "description": "SignatureHelpContext"
- },
- "kind": 22,
- "detail": "SignatureHelpContext",
- "sortText": "7fffffff",
- "filterText": "SignatureHelpContext",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SignatureHelpContext"
- }
- },
- {
- "label": "SignatureHelpOptions",
- "labelDetails": {
- "description": "SignatureHelpOptions"
- },
- "kind": 22,
- "detail": "SignatureHelpOptions",
- "sortText": "7fffffff",
- "filterText": "SignatureHelpOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SignatureHelpOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "w3yPzhzQ7t4PIvdB0KBkv9awA1o=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SignatureHelpParams",
- "labelDetails": {
- "description": "SignatureHelpParams"
- },
- "kind": 22,
- "detail": "SignatureHelpParams",
- "sortText": "7fffffff",
- "filterText": "SignatureHelpParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SignatureHelpParams"
- }
- },
- {
- "label": "SignatureHelpRegistrationOptions",
- "labelDetails": {
- "description": "SignatureHelpRegistrationOptions"
- },
- "kind": 22,
- "detail": "SignatureHelpRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "SignatureHelpRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SignatureHelpRegistrationOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "UKMo3HRnulEtOgzCfRUvWGHiabU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SignatureHelpTriggerKind",
- "labelDetails": {
- "description": "SignatureHelpTriggerKind"
- },
- "kind": 22,
- "detail": "SignatureHelpTriggerKind",
- "sortText": "7fffffff",
- "filterText": "SignatureHelpTriggerKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SignatureHelpTriggerKind"
- },
- "data": {
- "for_ref": false,
- "hash": "bp5dlteLlkJ9nkRYAIdni+3a3aA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SignatureInformation",
- "labelDetails": {
- "description": "SignatureInformation"
- },
- "kind": 22,
- "detail": "SignatureInformation",
- "sortText": "7fffffff",
- "filterText": "SignatureInformation",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SignatureInformation"
- },
- "data": {
- "for_ref": false,
- "hash": "fkquRhihaWjyGYfZ7YYvCViIq3o=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SignatureInformationSettings",
- "labelDetails": {
- "description": "SignatureInformationSettings"
- },
- "kind": 22,
- "detail": "SignatureInformationSettings",
- "sortText": "7fffffff",
- "filterText": "SignatureInformationSettings",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SignatureInformationSettings"
- }
- },
- {
- "label": "SingleCandidate",
- "labelDetails": {
- "description": "SingleCandidate"
- },
- "kind": 20,
- "detail": "SingleCandidate",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "SingleCandidate",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SingleCandidate$0"
- }
- },
- {
- "label": "SmolStr",
- "labelDetails": {
- "description": "SmolStr"
- },
- "kind": 22,
- "detail": "SmolStr",
- "sortText": "7fffffff",
- "filterText": "SmolStr",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SmolStr"
- },
- "data": {
- "for_ref": false,
- "hash": "Yt3cR5OOpU5fT+Jl4wlNNhd/dvQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Soft1",
- "labelDetails": {
- "description": "Soft1"
- },
- "kind": 20,
- "detail": "Soft1",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Soft1",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Soft1$0"
- },
- "data": {
- "for_ref": false,
- "hash": "us5yrmOt27OvguAGLwrSVso37fU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Soft2",
- "labelDetails": {
- "description": "Soft2"
- },
- "kind": 20,
- "detail": "Soft2",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Soft2",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Soft2$0"
- },
- "data": {
- "for_ref": false,
- "hash": "PN18MfBe2rXOQXKy++OteGgki7s=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Soft3",
- "labelDetails": {
- "description": "Soft3"
- },
- "kind": 20,
- "detail": "Soft3",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Soft3",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Soft3$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ZAJ49sKX5GdUu178nrMzU9Dw6c4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Soft4",
- "labelDetails": {
- "description": "Soft4"
- },
- "kind": 20,
- "detail": "Soft4",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Soft4",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Soft4$0"
- },
- "data": {
- "for_ref": false,
- "hash": "lLErJRqReVNvopMffgtimcBhLvU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Space",
- "labelDetails": {
- "description": "Space"
- },
- "kind": 20,
- "detail": "Space",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Space",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Space$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ZspnuxQHnk6kTU7dtd+pwOZE2z4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SpeechCorrectionList",
- "labelDetails": {
- "description": "SpeechCorrectionList"
- },
- "kind": 20,
- "detail": "SpeechCorrectionList",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "SpeechCorrectionList",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SpeechCorrectionList$0"
- },
- "data": {
- "for_ref": false,
- "hash": "FH72nXNU850xP+cYpiMDsH4co6Q=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SpeechInputToggle",
- "labelDetails": {
- "description": "SpeechInputToggle"
- },
- "kind": 20,
- "detail": "SpeechInputToggle",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "SpeechInputToggle",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SpeechInputToggle$0"
- },
- "data": {
- "for_ref": false,
- "hash": "xNK/aEJAORjPeosVoaDf4eXt9aw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SpellCheck",
- "labelDetails": {
- "description": "SpellCheck"
- },
- "kind": 20,
- "detail": "SpellCheck",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "SpellCheck",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SpellCheck$0"
- },
- "data": {
- "for_ref": false,
- "hash": "tfijayaRDaedmAy5hRyQp6Nx2t4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SplitScreenToggle",
- "labelDetails": {
- "description": "SplitScreenToggle"
- },
- "kind": 20,
- "detail": "SplitScreenToggle",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "SplitScreenToggle",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SplitScreenToggle$0"
- },
- "data": {
- "for_ref": false,
- "hash": "cGzpP5Ca8wxbEyvosrPxvTbFtSY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "StaleRequestSupportClientCapabilities",
- "labelDetails": {
- "description": "StaleRequestSupportClientCapabilities"
- },
- "kind": 22,
- "detail": "StaleRequestSupportClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "StaleRequestSupportClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "StaleRequestSupportClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "nlCvUKBT8rsXaE/I06HCcrZbJTU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Standby",
- "labelDetails": {
- "description": "Standby"
- },
- "kind": 20,
- "detail": "Standby",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Standby",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Standby$0"
- },
- "data": {
- "for_ref": false,
- "hash": "qHWdX3DvhTtSJNE9WdfN0TgYkHA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "State",
- "labelDetails": {
- "description": "State"
- },
- "kind": 13,
- "detail": "State",
- "sortText": "7fffffff",
- "filterText": "State",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "State"
- },
- "data": {
- "for_ref": false,
- "hash": "Ktm8VtJXJ0E+9QQEpnsoFPuPJDQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "StateMachine",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "StateMachine",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "StateMachine"
- },
- "data": {
- "for_ref": false,
- "hash": "zv8kzEJKhGOzLATheAHTc6Y7YFY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "StaticRegistrationOptions",
- "labelDetails": {
- "description": "StaticRegistrationOptions"
- },
- "kind": 22,
- "detail": "StaticRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "StaticRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "StaticRegistrationOptions"
- }
- },
- {
- "label": "StaticTextDocumentColorProviderOptions",
- "labelDetails": {
- "description": "StaticTextDocumentColorProviderOptions"
- },
- "kind": 22,
- "detail": "StaticTextDocumentColorProviderOptions",
- "sortText": "7fffffff",
- "filterText": "StaticTextDocumentColorProviderOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "StaticTextDocumentColorProviderOptions"
- }
- },
- {
- "label": "StaticTextDocumentRegistrationOptions",
- "labelDetails": {
- "description": "StaticTextDocumentRegistrationOptions"
- },
- "kind": 22,
- "detail": "StaticTextDocumentRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "StaticTextDocumentRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "StaticTextDocumentRegistrationOptions"
- }
- },
- {
- "label": "Stdio",
- "labelDetails": {
- "description": "Stdio"
- },
- "kind": 22,
- "detail": "Stdio",
- "sortText": "7fffffff",
- "filterText": "Stdio",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Stdio"
- },
- "data": {
- "for_ref": false,
- "hash": "3/v1JkJKqjd5QrB9YoJ3GMyK26I=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Style",
- "labelDetails": {
- "description": "Style"
- },
- "kind": 22,
- "detail": "Style",
- "sortText": "7fffffff",
- "filterText": "Style",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Style"
- }
- },
- {
- "label": "Subtitle",
- "labelDetails": {
- "description": "Subtitle"
- },
- "kind": 20,
- "detail": "Subtitle",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Subtitle",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Subtitle$0"
- },
- "data": {
- "for_ref": false,
- "hash": "PbdH0Xyae3pGKE36mQ0qQsvFcJc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Super",
- "labelDetails": {
- "description": "Super"
- },
- "kind": 20,
- "detail": "Super",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Super",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Super$0"
- },
- "data": {
- "for_ref": false,
- "hash": "3vFtgWjaPpN923tIGgnbnFsPH/0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Symbol",
- "labelDetails": {
- "description": "Symbol"
- },
- "kind": 20,
- "detail": "Symbol",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Symbol",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Symbol$0"
- },
- "data": {
- "for_ref": false,
- "hash": "N5ZlxFdyUgWWMAyGrvk5v7D6VVA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SymbolInformation",
- "labelDetails": {
- "description": "SymbolInformation"
- },
- "kind": 22,
- "detail": "SymbolInformation",
- "sortText": "7fffffff",
- "filterText": "SymbolInformation",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SymbolInformation"
- },
- "data": {
- "for_ref": false,
- "hash": "90QvTMKifc8QHzJUhbqVu+fCD/Q=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SymbolKind",
- "labelDetails": {
- "description": "SymbolKind"
- },
- "kind": 22,
- "detail": "SymbolKind",
- "sortText": "7fffffff",
- "filterText": "SymbolKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SymbolKind"
- },
- "data": {
- "for_ref": false,
- "hash": "mP+eIE1Z1N14Bqa+UUBOY6v0IIk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SymbolKindCapability",
- "labelDetails": {
- "description": "SymbolKindCapability"
- },
- "kind": 22,
- "detail": "SymbolKindCapability",
- "sortText": "7fffffff",
- "filterText": "SymbolKindCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SymbolKindCapability"
- },
- "data": {
- "for_ref": false,
- "hash": "oqJDNo1K/+XjT/S02RAWhQ6xUlc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "SymbolLock",
- "labelDetails": {
- "description": "SymbolLock"
- },
- "kind": 20,
- "detail": "SymbolLock",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "SymbolLock",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SymbolLock$0"
- }
- },
- {
- "label": "SymbolTag",
- "labelDetails": {
- "description": "SymbolTag"
- },
- "kind": 22,
- "detail": "SymbolTag",
- "sortText": "7fffffff",
- "filterText": "SymbolTag",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "SymbolTag"
- },
- "data": {
- "for_ref": false,
- "hash": "mMQe/rmEJ5vZ3W01IuT7J85UF24=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TV",
- "labelDetails": {
- "description": "TV"
- },
- "kind": 20,
- "detail": "TV",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TV",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TV$0"
- },
- "data": {
- "for_ref": false,
- "hash": "Yx3UFSGkGVS9Z+VvoENzXDKW/ow=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TV3DMode",
- "labelDetails": {
- "description": "TV3DMode"
- },
- "kind": 20,
- "detail": "TV3DMode",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TV3DMode",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TV3DMode$0"
- },
- "data": {
- "for_ref": false,
- "hash": "27wukDE7oQd/SaK9RqDSwgPyB6c=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVAntennaCable",
- "labelDetails": {
- "description": "TVAntennaCable"
- },
- "kind": 20,
- "detail": "TVAntennaCable",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVAntennaCable",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVAntennaCable$0"
- },
- "data": {
- "for_ref": false,
- "hash": "KTJmqUE6U7Q95ckm3KLe+5hiZlc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVAudioDescription",
- "labelDetails": {
- "description": "TVAudioDescription"
- },
- "kind": 20,
- "detail": "TVAudioDescription",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVAudioDescription",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVAudioDescription$0"
- },
- "data": {
- "for_ref": false,
- "hash": "3+wmYsUJ3saN/q69Ml9UhJiPnRI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVAudioDescriptionMixDown",
- "labelDetails": {
- "description": "TVAudioDescriptionMixDown"
- },
- "kind": 20,
- "detail": "TVAudioDescriptionMixDown",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVAudioDescriptionMixDown",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVAudioDescriptionMixDown$0"
- },
- "data": {
- "for_ref": false,
- "hash": "6VHMRO7FWamm89Ctp018GkKWmBM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVAudioDescriptionMixUp",
- "labelDetails": {
- "description": "TVAudioDescriptionMixUp"
- },
- "kind": 20,
- "detail": "TVAudioDescriptionMixUp",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVAudioDescriptionMixUp",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVAudioDescriptionMixUp$0"
- },
- "data": {
- "for_ref": false,
- "hash": "SyXMLvBySuM6rY7osagpm8Grby4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVContentsMenu",
- "labelDetails": {
- "description": "TVContentsMenu"
- },
- "kind": 20,
- "detail": "TVContentsMenu",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVContentsMenu",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVContentsMenu$0"
- },
- "data": {
- "for_ref": false,
- "hash": "CteniSDCwGdWbP1WgdYBRiE7jQU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVDataService",
- "labelDetails": {
- "description": "TVDataService"
- },
- "kind": 20,
- "detail": "TVDataService",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVDataService",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVDataService$0"
- },
- "data": {
- "for_ref": false,
- "hash": "IJaZp7dgzM9CWc7OBFFhCTu5cOY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVInput",
- "labelDetails": {
- "description": "TVInput"
- },
- "kind": 20,
- "detail": "TVInput",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVInput",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVInput$0"
- },
- "data": {
- "for_ref": false,
- "hash": "y6KJHPnLctDRrCKeLZ0vTfqKaWY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVInputComponent1",
- "labelDetails": {
- "description": "TVInputComponent1"
- },
- "kind": 20,
- "detail": "TVInputComponent1",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVInputComponent1",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVInputComponent1$0"
- },
- "data": {
- "for_ref": false,
- "hash": "YsNqxZADF/AmA/eGneltAeUdIiQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVInputComponent2",
- "labelDetails": {
- "description": "TVInputComponent2"
- },
- "kind": 20,
- "detail": "TVInputComponent2",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVInputComponent2",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVInputComponent2$0"
- },
- "data": {
- "for_ref": false,
- "hash": "prt7qU01B3C85FnN7842/eiGvDA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVInputComposite1",
- "labelDetails": {
- "description": "TVInputComposite1"
- },
- "kind": 20,
- "detail": "TVInputComposite1",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVInputComposite1",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVInputComposite1$0"
- },
- "data": {
- "for_ref": false,
- "hash": "u1ly9G0S4ylJ507+8P+yU4k70Q4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVInputComposite2",
- "labelDetails": {
- "description": "TVInputComposite2"
- },
- "kind": 20,
- "detail": "TVInputComposite2",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVInputComposite2",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVInputComposite2$0"
- },
- "data": {
- "for_ref": false,
- "hash": "0aZO8di2UB1+ToNeUpGgyhTitwg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVInputHDMI1",
- "labelDetails": {
- "description": "TVInputHDMI1"
- },
- "kind": 20,
- "detail": "TVInputHDMI1",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVInputHDMI1",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVInputHDMI1$0"
- },
- "data": {
- "for_ref": false,
- "hash": "v1JlKFDRJvlZopE/Qhlk2QZhls0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVInputHDMI2",
- "labelDetails": {
- "description": "TVInputHDMI2"
- },
- "kind": 20,
- "detail": "TVInputHDMI2",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVInputHDMI2",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVInputHDMI2$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ebcm037t1OR0UO7/evx1oJfBoC8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVInputHDMI3",
- "labelDetails": {
- "description": "TVInputHDMI3"
- },
- "kind": 20,
- "detail": "TVInputHDMI3",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVInputHDMI3",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVInputHDMI3$0"
- },
- "data": {
- "for_ref": false,
- "hash": "itXNKUgMBezRvihI+pRbIIVabGE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVInputHDMI4",
- "labelDetails": {
- "description": "TVInputHDMI4"
- },
- "kind": 20,
- "detail": "TVInputHDMI4",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVInputHDMI4",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVInputHDMI4$0"
- },
- "data": {
- "for_ref": false,
- "hash": "d1f3LWA8nUNZugUhG4qxmCJRtXo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVInputVGA1",
- "labelDetails": {
- "description": "TVInputVGA1"
- },
- "kind": 20,
- "detail": "TVInputVGA1",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVInputVGA1",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVInputVGA1$0"
- },
- "data": {
- "for_ref": false,
- "hash": "o+zASGgw2b3jMgv8M70uigEug4U=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVMediaContext",
- "labelDetails": {
- "description": "TVMediaContext"
- },
- "kind": 20,
- "detail": "TVMediaContext",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVMediaContext",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVMediaContext$0"
- },
- "data": {
- "for_ref": false,
- "hash": "aWjfVWvhH27csWYSVX1raD7IRI8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVNetwork",
- "labelDetails": {
- "description": "TVNetwork"
- },
- "kind": 20,
- "detail": "TVNetwork",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVNetwork",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVNetwork$0"
- },
- "data": {
- "for_ref": false,
- "hash": "779EiLWCFWrNcD918beFCXjFxGI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVNumberEntry",
- "labelDetails": {
- "description": "TVNumberEntry"
- },
- "kind": 20,
- "detail": "TVNumberEntry",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVNumberEntry",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVNumberEntry$0"
- },
- "data": {
- "for_ref": false,
- "hash": "yK/AouwM0NcLyT7PwsCmCVEs6rY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVPower",
- "labelDetails": {
- "description": "TVPower"
- },
- "kind": 20,
- "detail": "TVPower",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVPower",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVPower$0"
- },
- "data": {
- "for_ref": false,
- "hash": "udqSCoAL+xbtHJGbl8gVxn2BdVE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVRadioService",
- "labelDetails": {
- "description": "TVRadioService"
- },
- "kind": 20,
- "detail": "TVRadioService",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVRadioService",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVRadioService$0"
- },
- "data": {
- "for_ref": false,
- "hash": "eXF8NMDthlq3AQd/prD3Igny5Gw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVSatellite",
- "labelDetails": {
- "description": "TVSatellite"
- },
- "kind": 20,
- "detail": "TVSatellite",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVSatellite",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVSatellite$0"
- },
- "data": {
- "for_ref": false,
- "hash": "6CVZX5z7sMz6gFAZH+bR5b41z68=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVSatelliteBS",
- "labelDetails": {
- "description": "TVSatelliteBS"
- },
- "kind": 20,
- "detail": "TVSatelliteBS",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVSatelliteBS",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVSatelliteBS$0"
- },
- "data": {
- "for_ref": false,
- "hash": "iT3PmIX2GSW1XfaMOgCKlcIcYU4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVSatelliteCS",
- "labelDetails": {
- "description": "TVSatelliteCS"
- },
- "kind": 20,
- "detail": "TVSatelliteCS",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVSatelliteCS",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVSatelliteCS$0"
- },
- "data": {
- "for_ref": false,
- "hash": "RKfexAWKk6PY6eDvpLRnicir9Q0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVSatelliteToggle",
- "labelDetails": {
- "description": "TVSatelliteToggle"
- },
- "kind": 20,
- "detail": "TVSatelliteToggle",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVSatelliteToggle",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVSatelliteToggle$0"
- },
- "data": {
- "for_ref": false,
- "hash": "gJxrWBOlOAnE2My889qJhA/Iyt8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVTerrestrialAnalog",
- "labelDetails": {
- "description": "TVTerrestrialAnalog"
- },
- "kind": 20,
- "detail": "TVTerrestrialAnalog",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVTerrestrialAnalog",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVTerrestrialAnalog$0"
- },
- "data": {
- "for_ref": false,
- "hash": "dPN8D/Vl7Y9nDtetiYOHAZBv4S4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVTerrestrialDigital",
- "labelDetails": {
- "description": "TVTerrestrialDigital"
- },
- "kind": 20,
- "detail": "TVTerrestrialDigital",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVTerrestrialDigital",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVTerrestrialDigital$0"
- },
- "data": {
- "for_ref": false,
- "hash": "8MyrR0KOL6TQ/nVP7n1oHa4OVUw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TVTimer",
- "labelDetails": {
- "description": "TVTimer"
- },
- "kind": 20,
- "detail": "TVTimer",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "TVTimer",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TVTimer$0"
- },
- "data": {
- "for_ref": false,
- "hash": "ZkIwJSBjShgwWNYKdPzhfDnFKxQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Tab",
- "labelDetails": {
- "description": "Tab"
- },
- "kind": 20,
- "detail": "Tab",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Tab",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Tab$0"
- },
- "data": {
- "for_ref": false,
- "hash": "8p5v6YIRRA+9/fB78XuWaO7al5I=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TagSupport",
- "labelDetails": {
- "description": "TagSupport<{unknown}>"
- },
- "kind": 22,
- "detail": "TagSupport<{unknown}>",
- "sortText": "7fffffff",
- "filterText": "TagSupport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TagSupport"
- }
- },
- {
- "label": "Teletext",
- "labelDetails": {
- "description": "Teletext"
- },
- "kind": 20,
- "detail": "Teletext",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Teletext",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Teletext$0"
- },
- "data": {
- "for_ref": false,
- "hash": "YT582nqaSOJUtznIAN/jWNiyrlk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TextArea",
- "labelDetails": {
- "description": "TextArea"
- },
- "kind": 22,
- "detail": "TextArea",
- "sortText": "7fffffff",
- "filterText": "TextArea",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextArea"
- }
- },
- {
- "label": "TextDocumentChangeRegistrationOptions",
- "labelDetails": {
- "description": "TextDocumentChangeRegistrationOptions"
- },
- "kind": 22,
- "detail": "TextDocumentChangeRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "TextDocumentChangeRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentChangeRegistrationOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "qMQcuV7auzjdPpU1ozdWA2SUjbA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TextDocumentClientCapabilities",
- "labelDetails": {
- "description": "TextDocumentClientCapabilities"
- },
- "kind": 22,
- "detail": "TextDocumentClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "TextDocumentClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "E9z6b0JKVoSxKARDSj9BBkHCNgE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TextDocumentContentChangeEvent",
- "labelDetails": {
- "description": "TextDocumentContentChangeEvent"
- },
- "kind": 22,
- "detail": "TextDocumentContentChangeEvent",
- "sortText": "7fffffff",
- "filterText": "TextDocumentContentChangeEvent",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentContentChangeEvent"
- },
- "data": {
- "for_ref": false,
- "hash": "kPzFYCaCBUu69CzOKzUsyYfYFZc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TextDocumentEdit",
- "labelDetails": {
- "description": "TextDocumentEdit"
- },
- "kind": 22,
- "detail": "TextDocumentEdit",
- "sortText": "7fffffff",
- "filterText": "TextDocumentEdit",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentEdit"
- },
- "data": {
- "for_ref": false,
- "hash": "MI+YpQoNevc/wtBN4DNYdIDWobI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TextDocumentIdentifier",
- "labelDetails": {
- "description": "TextDocumentIdentifier"
- },
- "kind": 22,
- "detail": "TextDocumentIdentifier",
- "sortText": "7fffffff",
- "filterText": "TextDocumentIdentifier",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentIdentifier"
- },
- "data": {
- "for_ref": false,
- "hash": "jPD+PE30MAdcSvj9EuQZ9IB/3gc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TextDocumentItem",
- "labelDetails": {
- "description": "TextDocumentItem"
- },
- "kind": 22,
- "detail": "TextDocumentItem",
- "sortText": "7fffffff",
- "filterText": "TextDocumentItem",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentItem"
- },
- "data": {
- "for_ref": false,
- "hash": "FpVIwWJo1i5iiciG18XdPC7eCu4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TextDocumentPositionParams",
- "labelDetails": {
- "description": "TextDocumentPositionParams"
- },
- "kind": 22,
- "detail": "TextDocumentPositionParams",
- "sortText": "7fffffff",
- "filterText": "TextDocumentPositionParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentPositionParams"
- },
- "data": {
- "for_ref": false,
- "hash": "Z1PzSkQu+agND8NAHL+SA04agt8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TextDocumentRegistrationOptions",
- "labelDetails": {
- "description": "TextDocumentRegistrationOptions"
- },
- "kind": 22,
- "detail": "TextDocumentRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "TextDocumentRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentRegistrationOptions"
- },
- "data": {
- "for_ref": false,
- "hash": "uqE6EihnPQ5WUqNb9mLxteZwrUw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TextDocumentSaveReason",
- "labelDetails": {
- "description": "TextDocumentSaveReason"
- },
- "kind": 22,
- "detail": "TextDocumentSaveReason",
- "sortText": "7fffffff",
- "filterText": "TextDocumentSaveReason",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentSaveReason"
- },
- "data": {
- "for_ref": false,
- "hash": "EqFXdUlmtSO+D/tJ8EUwfbwkzDw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TextDocumentSaveRegistrationOptions",
- "labelDetails": {
- "description": "TextDocumentSaveRegistrationOptions"
- },
- "kind": 22,
- "detail": "TextDocumentSaveRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "TextDocumentSaveRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentSaveRegistrationOptions"
- }
- },
- {
- "label": "TextDocumentSyncCapability",
- "labelDetails": {
- "description": "TextDocumentSyncCapability"
- },
- "kind": 13,
- "detail": "TextDocumentSyncCapability",
- "sortText": "7fffffff",
- "filterText": "TextDocumentSyncCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentSyncCapability"
- }
- },
- {
- "label": "TextDocumentSyncClientCapabilities",
- "labelDetails": {
- "description": "TextDocumentSyncClientCapabilities"
- },
- "kind": 22,
- "detail": "TextDocumentSyncClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "TextDocumentSyncClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentSyncClientCapabilities"
- }
- },
- {
- "label": "TextDocumentSyncKind",
- "labelDetails": {
- "description": "TextDocumentSyncKind"
- },
- "kind": 22,
- "detail": "TextDocumentSyncKind",
- "sortText": "7fffffff",
- "filterText": "TextDocumentSyncKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentSyncKind"
- },
- "data": {
- "for_ref": false,
- "hash": "Nsd7zh/J6VH4hVQeTs0tIJNSTvE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TextDocumentSyncOptions",
- "labelDetails": {
- "description": "TextDocumentSyncOptions"
- },
- "kind": 22,
- "detail": "TextDocumentSyncOptions",
- "sortText": "7fffffff",
- "filterText": "TextDocumentSyncOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentSyncOptions"
- }
- },
- {
- "label": "TextDocumentSyncSaveOptions",
- "labelDetails": {
- "description": "TextDocumentSyncSaveOptions"
- },
- "kind": 13,
- "detail": "TextDocumentSyncSaveOptions",
- "sortText": "7fffffff",
- "filterText": "TextDocumentSyncSaveOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextDocumentSyncSaveOptions"
- }
- },
- {
- "label": "TextEdit",
- "labelDetails": {
- "description": "TextEdit"
- },
- "kind": 22,
- "detail": "TextEdit",
- "sortText": "7fffffff",
- "filterText": "TextEdit",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TextEdit"
- },
- "data": {
- "for_ref": false,
- "hash": "gt31mbmvW4fySqKOKR96qDg4SBw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TokenFormat",
- "labelDetails": {
- "description": "TokenFormat"
- },
- "kind": 22,
- "detail": "TokenFormat",
- "sortText": "7fffffff",
- "filterText": "TokenFormat",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TokenFormat"
- }
- },
- {
- "label": "TraceValue",
- "labelDetails": {
- "description": "TraceValue"
- },
- "kind": 13,
- "detail": "TraceValue",
- "sortText": "7fffffff",
- "filterText": "TraceValue",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TraceValue"
- },
- "data": {
- "for_ref": false,
- "hash": "yWNm7OhFLP3JktIINzomAHzGuxM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TypeDefinitionProviderCapability",
- "labelDetails": {
- "description": "TypeDefinitionProviderCapability"
- },
- "kind": 13,
- "detail": "TypeDefinitionProviderCapability",
- "sortText": "7fffffff",
- "filterText": "TypeDefinitionProviderCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TypeDefinitionProviderCapability"
- }
- },
- {
- "label": "TypeHierarchyClientCapabilities",
- "kind": 22,
- "sortText": "7fffffff",
- "filterText": "TypeHierarchyClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TypeHierarchyClientCapabilities"
- }
- },
- {
- "label": "TypeHierarchyItem",
- "labelDetails": {
- "description": "TypeHierarchyItem"
- },
- "kind": 22,
- "detail": "TypeHierarchyItem",
- "sortText": "7fffffff",
- "filterText": "TypeHierarchyItem",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TypeHierarchyItem"
- }
- },
- {
- "label": "TypeHierarchyOptions",
- "labelDetails": {
- "description": "TypeHierarchyOptions"
- },
- "kind": 22,
- "detail": "TypeHierarchyOptions",
- "sortText": "7fffffff",
- "filterText": "TypeHierarchyOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TypeHierarchyOptions"
- }
- },
- {
- "label": "TypeHierarchyPrepareParams",
- "labelDetails": {
- "description": "TypeHierarchyPrepareParams"
- },
- "kind": 22,
- "detail": "TypeHierarchyPrepareParams",
- "sortText": "7fffffff",
- "filterText": "TypeHierarchyPrepareParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TypeHierarchyPrepareParams"
- }
- },
- {
- "label": "TypeHierarchyRegistrationOptions",
- "labelDetails": {
- "description": "TypeHierarchyRegistrationOptions"
- },
- "kind": 22,
- "detail": "TypeHierarchyRegistrationOptions",
- "sortText": "7fffffff",
- "filterText": "TypeHierarchyRegistrationOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TypeHierarchyRegistrationOptions"
- }
- },
- {
- "label": "TypeHierarchySubtypesParams",
- "labelDetails": {
- "description": "TypeHierarchySubtypesParams"
- },
- "kind": 22,
- "detail": "TypeHierarchySubtypesParams",
- "sortText": "7fffffff",
- "filterText": "TypeHierarchySubtypesParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TypeHierarchySubtypesParams"
- }
- },
- {
- "label": "TypeHierarchySupertypesParams",
- "labelDetails": {
- "description": "TypeHierarchySupertypesParams"
- },
- "kind": 22,
- "detail": "TypeHierarchySupertypesParams",
- "sortText": "7fffffff",
- "filterText": "TypeHierarchySupertypesParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TypeHierarchySupertypesParams"
- }
- },
- {
- "label": "UnchangedDocumentDiagnosticReport",
- "labelDetails": {
- "description": "UnchangedDocumentDiagnosticReport"
- },
- "kind": 22,
- "detail": "UnchangedDocumentDiagnosticReport",
- "sortText": "7fffffff",
- "filterText": "UnchangedDocumentDiagnosticReport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "UnchangedDocumentDiagnosticReport"
- },
- "data": {
- "for_ref": false,
- "hash": "I0xhX9FILu8lHY0oCFa5kdmDU+Y=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Undo",
- "labelDetails": {
- "description": "Undo"
- },
- "kind": 20,
- "detail": "Undo",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Undo",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Undo$0"
- },
- "data": {
- "for_ref": false,
- "hash": "tvqVG9FhLy4iA5+NRgNbeH3L1bU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "UniquenessLevel",
- "labelDetails": {
- "description": "UniquenessLevel"
- },
- "kind": 13,
- "detail": "UniquenessLevel",
- "sortText": "7fffffff",
- "filterText": "UniquenessLevel",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "UniquenessLevel"
- },
- "data": {
- "for_ref": false,
- "hash": "kqIw0rYDhoKwmDL5n7Io9zBKwcQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Unregistration",
- "labelDetails": {
- "description": "Unregistration"
- },
- "kind": 22,
- "detail": "Unregistration",
- "sortText": "7fffffff",
- "filterText": "Unregistration",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Unregistration"
- },
- "data": {
- "for_ref": false,
- "hash": "quyyMnMBb0pcT+QaaIChYNjNLw8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "UnregistrationParams",
- "labelDetails": {
- "description": "UnregistrationParams"
- },
- "kind": 22,
- "detail": "UnregistrationParams",
- "sortText": "7fffffff",
- "filterText": "UnregistrationParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "UnregistrationParams"
- }
- },
- {
- "label": "Url",
- "labelDetails": {
- "description": "Url"
- },
- "kind": 22,
- "detail": "Url",
- "sortText": "7fffffff",
- "filterText": "Url",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Url"
- },
- "data": {
- "for_ref": false,
- "hash": "+Z9fZDzyTULsruNw35EqeUYNjz8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "VersionedTextDocumentIdentifier",
- "labelDetails": {
- "description": "VersionedTextDocumentIdentifier"
- },
- "kind": 22,
- "detail": "VersionedTextDocumentIdentifier",
- "sortText": "7fffffff",
- "filterText": "VersionedTextDocumentIdentifier",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "VersionedTextDocumentIdentifier"
- },
- "data": {
- "for_ref": false,
- "hash": "irJjCs2wVDtlMWb31CVqd2E+7jo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "VideoModeNext",
- "labelDetails": {
- "description": "VideoModeNext"
- },
- "kind": 20,
- "detail": "VideoModeNext",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "VideoModeNext",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "VideoModeNext$0"
- },
- "data": {
- "for_ref": false,
- "hash": "7k/vrIHaQ2US6uc51AN15cklPb8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "VoiceDial",
- "labelDetails": {
- "description": "VoiceDial"
- },
- "kind": 20,
- "detail": "VoiceDial",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "VoiceDial",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "VoiceDial$0"
- }
- },
- {
- "label": "WakeUp",
- "labelDetails": {
- "description": "WakeUp"
- },
- "kind": 20,
- "detail": "WakeUp",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "WakeUp",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WakeUp$0"
- },
- "data": {
- "for_ref": false,
- "hash": "/mgA1jYPTuIa2ciiUixMH6LYepU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WatchKind",
- "labelDetails": {
- "description": "WatchKind"
- },
- "kind": 22,
- "detail": "WatchKind",
- "sortText": "7fffffff",
- "filterText": "WatchKind",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WatchKind"
- }
- },
- {
- "label": "WillSaveTextDocumentParams",
- "labelDetails": {
- "description": "WillSaveTextDocumentParams"
- },
- "kind": 22,
- "detail": "WillSaveTextDocumentParams",
- "sortText": "7fffffff",
- "filterText": "WillSaveTextDocumentParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WillSaveTextDocumentParams"
- },
- "data": {
- "for_ref": false,
- "hash": "5+dKfAZZBIFPeDCwMkUZmJhIAVk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Window",
- "labelDetails": {
- "description": "Window"
- },
- "kind": 22,
- "detail": "Window",
- "sortText": "7fffffff",
- "filterText": "Window",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Window"
- },
- "data": {
- "for_ref": false,
- "hash": "4ySIulxrvrnXmnbCsr0we4pf7tc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WindowAttributesExtWayland",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "WindowAttributesExtWayland",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WindowAttributesExtWayland"
- },
- "data": {
- "for_ref": false,
- "hash": "Ak6Qthu+Iaeb7tMcWrS8cyeqxpo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WindowClientCapabilities",
- "labelDetails": {
- "description": "WindowClientCapabilities"
- },
- "kind": 22,
- "detail": "WindowClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "WindowClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WindowClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "wytdLeR6+GFQt/kwnK+88fnrbcI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WindowEvent",
- "labelDetails": {
- "description": "WindowEvent"
- },
- "kind": 13,
- "detail": "WindowEvent",
- "sortText": "7fffffff",
- "filterText": "WindowEvent",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WindowEvent"
- },
- "data": {
- "for_ref": false,
- "hash": "7IuVrRAmujkUMNuB/jVDK8jh9z4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Wink",
- "labelDetails": {
- "description": "Wink"
- },
- "kind": 20,
- "detail": "Wink",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Wink",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Wink$0"
- },
- "data": {
- "for_ref": false,
- "hash": "L9PeH3uENV3vKHAETL/UvYATDvk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkDoneProgress",
- "labelDetails": {
- "description": "WorkDoneProgress"
- },
- "kind": 13,
- "detail": "WorkDoneProgress",
- "sortText": "7fffffff",
- "filterText": "WorkDoneProgress",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkDoneProgress"
- }
- },
- {
- "label": "WorkDoneProgressBegin",
- "labelDetails": {
- "description": "WorkDoneProgressBegin"
- },
- "kind": 22,
- "detail": "WorkDoneProgressBegin",
- "sortText": "7fffffff",
- "filterText": "WorkDoneProgressBegin",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkDoneProgressBegin"
- }
- },
- {
- "label": "WorkDoneProgressCancelParams",
- "labelDetails": {
- "description": "WorkDoneProgressCancelParams"
- },
- "kind": 22,
- "detail": "WorkDoneProgressCancelParams",
- "sortText": "7fffffff",
- "filterText": "WorkDoneProgressCancelParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkDoneProgressCancelParams"
- },
- "data": {
- "for_ref": false,
- "hash": "FSUWh6ouGIxLcNwnTpNiO5ZTFBE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkDoneProgressCreateParams",
- "labelDetails": {
- "description": "WorkDoneProgressCreateParams"
- },
- "kind": 22,
- "detail": "WorkDoneProgressCreateParams",
- "sortText": "7fffffff",
- "filterText": "WorkDoneProgressCreateParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkDoneProgressCreateParams"
- },
- "data": {
- "for_ref": false,
- "hash": "wZ99l/eTiusBADDa79vj9bzJj4A=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkDoneProgressEnd",
- "labelDetails": {
- "description": "WorkDoneProgressEnd"
- },
- "kind": 22,
- "detail": "WorkDoneProgressEnd",
- "sortText": "7fffffff",
- "filterText": "WorkDoneProgressEnd",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkDoneProgressEnd"
- }
- },
- {
- "label": "WorkDoneProgressOptions",
- "labelDetails": {
- "description": "WorkDoneProgressOptions"
- },
- "kind": 22,
- "detail": "WorkDoneProgressOptions",
- "sortText": "7fffffff",
- "filterText": "WorkDoneProgressOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkDoneProgressOptions"
- }
- },
- {
- "label": "WorkDoneProgressParams",
- "labelDetails": {
- "description": "WorkDoneProgressParams"
- },
- "kind": 22,
- "detail": "WorkDoneProgressParams",
- "sortText": "7fffffff",
- "filterText": "WorkDoneProgressParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkDoneProgressParams"
- },
- "data": {
- "for_ref": false,
- "hash": "Bil3WH0PRZ1gYb/z8r7EN2a+6Rs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkDoneProgressReport",
- "labelDetails": {
- "description": "WorkDoneProgressReport"
- },
- "kind": 22,
- "detail": "WorkDoneProgressReport",
- "sortText": "7fffffff",
- "filterText": "WorkDoneProgressReport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkDoneProgressReport"
- }
- },
- {
- "label": "WorkspaceClientCapabilities",
- "labelDetails": {
- "description": "WorkspaceClientCapabilities"
- },
- "kind": 22,
- "detail": "WorkspaceClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "WorkspaceClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceClientCapabilities"
- },
- "data": {
- "for_ref": false,
- "hash": "VmVFu+ewhsvAXbhxHtUMO4VR1+s=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkspaceDiagnosticParams",
- "labelDetails": {
- "description": "WorkspaceDiagnosticParams"
- },
- "kind": 22,
- "detail": "WorkspaceDiagnosticParams",
- "sortText": "7fffffff",
- "filterText": "WorkspaceDiagnosticParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceDiagnosticParams"
- },
- "data": {
- "for_ref": false,
- "hash": "PIBR34Dju7CBvAALDDXv4FavrbY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkspaceDiagnosticReport",
- "labelDetails": {
- "description": "WorkspaceDiagnosticReport"
- },
- "kind": 22,
- "detail": "WorkspaceDiagnosticReport",
- "sortText": "7fffffff",
- "filterText": "WorkspaceDiagnosticReport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceDiagnosticReport"
- },
- "data": {
- "for_ref": false,
- "hash": "cqMxljfwFKPuaCR1vUUp1EMr36o=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkspaceDiagnosticReportPartialResult",
- "labelDetails": {
- "description": "WorkspaceDiagnosticReportPartialResult"
- },
- "kind": 22,
- "detail": "WorkspaceDiagnosticReportPartialResult",
- "sortText": "7fffffff",
- "filterText": "WorkspaceDiagnosticReportPartialResult",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceDiagnosticReportPartialResult"
- },
- "data": {
- "for_ref": false,
- "hash": "iqrC1qv7MnzqNxdrjC9BQhPkTIQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkspaceDiagnosticReportResult",
- "labelDetails": {
- "description": "WorkspaceDiagnosticReportResult"
- },
- "kind": 13,
- "detail": "WorkspaceDiagnosticReportResult",
- "sortText": "7fffffff",
- "filterText": "WorkspaceDiagnosticReportResult",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceDiagnosticReportResult"
- }
- },
- {
- "label": "WorkspaceDocumentDiagnosticReport",
- "labelDetails": {
- "description": "WorkspaceDocumentDiagnosticReport"
- },
- "kind": 13,
- "detail": "WorkspaceDocumentDiagnosticReport",
- "sortText": "7fffffff",
- "filterText": "WorkspaceDocumentDiagnosticReport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceDocumentDiagnosticReport"
- },
- "data": {
- "for_ref": false,
- "hash": "iUeR21lCZxYLpbGRjWaAWLCPQ5o=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkspaceEdit",
- "labelDetails": {
- "description": "WorkspaceEdit"
- },
- "kind": 22,
- "detail": "WorkspaceEdit",
- "sortText": "7fffffff",
- "filterText": "WorkspaceEdit",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceEdit"
- },
- "data": {
- "for_ref": false,
- "hash": "XqYX813JkVifLibTzcKr441iMO8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkspaceEditClientCapabilities",
- "labelDetails": {
- "description": "WorkspaceEditClientCapabilities"
- },
- "kind": 22,
- "detail": "WorkspaceEditClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "WorkspaceEditClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceEditClientCapabilities"
- }
- },
- {
- "label": "WorkspaceFileOperationsClientCapabilities",
- "labelDetails": {
- "description": "WorkspaceFileOperationsClientCapabilities"
- },
- "kind": 22,
- "detail": "WorkspaceFileOperationsClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "WorkspaceFileOperationsClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceFileOperationsClientCapabilities"
- }
- },
- {
- "label": "WorkspaceFileOperationsServerCapabilities",
- "labelDetails": {
- "description": "WorkspaceFileOperationsServerCapabilities"
- },
- "kind": 22,
- "detail": "WorkspaceFileOperationsServerCapabilities",
- "sortText": "7fffffff",
- "filterText": "WorkspaceFileOperationsServerCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceFileOperationsServerCapabilities"
- }
- },
- {
- "label": "WorkspaceFolder",
- "labelDetails": {
- "description": "WorkspaceFolder"
- },
- "kind": 22,
- "detail": "WorkspaceFolder",
- "sortText": "7fffffff",
- "filterText": "WorkspaceFolder",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceFolder"
- }
- },
- {
- "label": "WorkspaceFoldersChangeEvent",
- "labelDetails": {
- "description": "WorkspaceFoldersChangeEvent"
- },
- "kind": 22,
- "detail": "WorkspaceFoldersChangeEvent",
- "sortText": "7fffffff",
- "filterText": "WorkspaceFoldersChangeEvent",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceFoldersChangeEvent"
- },
- "data": {
- "for_ref": false,
- "hash": "E8jhJOqwsld1KYpOqyMjSCAIjTU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkspaceFoldersServerCapabilities",
- "labelDetails": {
- "description": "WorkspaceFoldersServerCapabilities"
- },
- "kind": 22,
- "detail": "WorkspaceFoldersServerCapabilities",
- "sortText": "7fffffff",
- "filterText": "WorkspaceFoldersServerCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceFoldersServerCapabilities"
- }
- },
- {
- "label": "WorkspaceFullDocumentDiagnosticReport",
- "labelDetails": {
- "description": "WorkspaceFullDocumentDiagnosticReport"
- },
- "kind": 22,
- "detail": "WorkspaceFullDocumentDiagnosticReport",
- "sortText": "7fffffff",
- "filterText": "WorkspaceFullDocumentDiagnosticReport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceFullDocumentDiagnosticReport"
- },
- "data": {
- "for_ref": false,
- "hash": "cayEzSxUujOeE0FqMG4R477MHic=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkspaceLocation",
- "labelDetails": {
- "description": "WorkspaceLocation"
- },
- "kind": 22,
- "detail": "WorkspaceLocation",
- "sortText": "7fffffff",
- "filterText": "WorkspaceLocation",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceLocation"
- }
- },
- {
- "label": "WorkspaceServerCapabilities",
- "labelDetails": {
- "description": "WorkspaceServerCapabilities"
- },
- "kind": 22,
- "detail": "WorkspaceServerCapabilities",
- "sortText": "7fffffff",
- "filterText": "WorkspaceServerCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceServerCapabilities"
- }
- },
- {
- "label": "WorkspaceSymbol",
- "labelDetails": {
- "description": "WorkspaceSymbol"
- },
- "kind": 22,
- "detail": "WorkspaceSymbol",
- "sortText": "7fffffff",
- "filterText": "WorkspaceSymbol",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceSymbol"
- },
- "data": {
- "for_ref": false,
- "hash": "QrPbIpnRoElWHIil3ccqtHhWWtk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkspaceSymbolClientCapabilities",
- "labelDetails": {
- "description": "WorkspaceSymbolClientCapabilities"
- },
- "kind": 22,
- "detail": "WorkspaceSymbolClientCapabilities",
- "sortText": "7fffffff",
- "filterText": "WorkspaceSymbolClientCapabilities",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceSymbolClientCapabilities"
- }
- },
- {
- "label": "WorkspaceSymbolOptions",
- "labelDetails": {
- "description": "WorkspaceSymbolOptions"
- },
- "kind": 22,
- "detail": "WorkspaceSymbolOptions",
- "sortText": "7fffffff",
- "filterText": "WorkspaceSymbolOptions",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceSymbolOptions"
- }
- },
- {
- "label": "WorkspaceSymbolParams",
- "labelDetails": {
- "description": "WorkspaceSymbolParams"
- },
- "kind": 22,
- "detail": "WorkspaceSymbolParams",
- "sortText": "7fffffff",
- "filterText": "WorkspaceSymbolParams",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceSymbolParams"
- },
- "data": {
- "for_ref": false,
- "hash": "UR3I+dnGEhf6UPLw6G7lPS/OFsY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "WorkspaceSymbolResolveSupportCapability",
- "labelDetails": {
- "description": "WorkspaceSymbolResolveSupportCapability"
- },
- "kind": 22,
- "detail": "WorkspaceSymbolResolveSupportCapability",
- "sortText": "7fffffff",
- "filterText": "WorkspaceSymbolResolveSupportCapability",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceSymbolResolveSupportCapability"
- }
- },
- {
- "label": "WorkspaceSymbolResponse",
- "labelDetails": {
- "description": "WorkspaceSymbolResponse"
- },
- "kind": 13,
- "detail": "WorkspaceSymbolResponse",
- "sortText": "7fffffff",
- "filterText": "WorkspaceSymbolResponse",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceSymbolResponse"
- }
- },
- {
- "label": "WorkspaceUnchangedDocumentDiagnosticReport",
- "labelDetails": {
- "description": "WorkspaceUnchangedDocumentDiagnosticReport"
- },
- "kind": 22,
- "detail": "WorkspaceUnchangedDocumentDiagnosticReport",
- "sortText": "7fffffff",
- "filterText": "WorkspaceUnchangedDocumentDiagnosticReport",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "WorkspaceUnchangedDocumentDiagnosticReport"
- },
- "data": {
- "for_ref": false,
- "hash": "Y+aRo5px6W6qih8V7zT1sVQlE8k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Zenkaku",
- "labelDetails": {
- "description": "Zenkaku"
- },
- "kind": 20,
- "detail": "Zenkaku",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "Zenkaku",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Zenkaku$0"
- },
- "data": {
- "for_ref": false,
- "hash": "jIvbWDiq9A+LKobTA+rntSLECcs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ZenkakuHankaku",
- "labelDetails": {
- "description": "ZenkakuHankaku"
- },
- "kind": 20,
- "detail": "ZenkakuHankaku",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ZenkakuHankaku",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ZenkakuHankaku$0"
- },
- "data": {
- "for_ref": false,
- "hash": "gaSmrvWOkWfKaOc3bsuAST6WSVw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ZoomIn",
- "labelDetails": {
- "description": "ZoomIn"
- },
- "kind": 20,
- "detail": "ZoomIn",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ZoomIn",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ZoomIn$0"
- },
- "data": {
- "for_ref": false,
- "hash": "opGinJH7CDS5CfxxkYkFhwsCe9o=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ZoomOut",
- "labelDetails": {
- "description": "ZoomOut"
- },
- "kind": 20,
- "detail": "ZoomOut",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ZoomOut",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ZoomOut$0"
- },
- "data": {
- "for_ref": false,
- "hash": "fdPGt7twRdCh6zxWSsyj1XKhsIA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ZoomToggle",
- "labelDetails": {
- "description": "ZoomToggle"
- },
- "kind": 20,
- "detail": "ZoomToggle",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "ZoomToggle",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ZoomToggle$0"
- },
- "data": {
- "for_ref": false,
- "hash": "KEBTYS65XVFjnJgj4bW8SA4XpbE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "alt()",
- "labelDetails": {
- "description": "fn alt() -> bool"
- },
- "kind": 3,
- "detail": "fn alt() -> bool",
- "sortText": "7fffffff",
- "filterText": "alt",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "alt()$0"
- }
- },
- {
- "label": "bar",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "bar",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "bar"
- }
- },
- {
- "label": "com",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "com",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "com"
- }
- },
- {
- "label": "ctrl()",
- "labelDetails": {
- "description": "fn ctrl() -> bool"
- },
- "kind": 3,
- "detail": "fn ctrl() -> bool",
- "sortText": "7fffffff",
- "filterText": "ctrl",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ctrl()$0"
- }
- },
- {
- "label": "default",
- "kind": 18,
- "sortText": "7fffffff",
- "filterText": "default",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "default"
- }
- },
- {
- "label": "entry(…)",
- "labelDetails": {
- "description": "fn entry(event_loop: EventLoop<()>)"
- },
- "kind": 3,
- "detail": "fn entry(event_loop: EventLoop<()>)",
- "sortText": "7fffffff",
- "filterText": "entry",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "entry(${1:event_loop});$0"
- }
- },
- {
- "label": "error_codes",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "error_codes",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "error_codes"
- },
- "data": {
- "for_ref": false,
- "hash": "3GJcKiMlF5Im0BpqJMz1m54MCQ0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "filter(…)",
- "labelDetails": {
- "description": "fn filter(text: &TextArea) -> String"
- },
- "kind": 3,
- "detail": "fn filter(text: &TextArea) -> String",
- "sortText": "7fffffff",
- "filterText": "filter",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "filter(${1:text})$0"
- }
- },
- {
- "label": "frunctinator(…)",
- "labelDetails": {
- "description": "fn frunctinator(parameter1: usize, parameter2: u8, paramter4: u16) -> usize"
- },
- "kind": 3,
- "detail": "fn frunctinator(parameter1: usize, parameter2: u8, paramter4: u16) -> usize",
- "sortText": "7fffffff",
- "filterText": "frunctinator",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "frunctinator(${1:parameter1}, ${2:parameter2}, ${3:paramter4})$0"
- }
- },
- {
- "label": "handle(…)",
- "labelDetails": {
- "description": "fn handle(key: Key, mut text: TextArea) -> TextArea"
- },
- "kind": 3,
- "detail": "fn handle(key: Key, mut text: TextArea) -> TextArea",
- "sortText": "7fffffff",
- "filterText": "handle",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "handle(${1:key}, ${2:text})$0"
- }
- },
- {
- "label": "handle2(…)",
- "labelDetails": {
- "description": "fn handle2<'a>(key: &'a Key, text: &mut TextArea) -> Option<&'a str>"
- },
- "kind": 3,
- "detail": "fn handle2<'a>(key: &'a Key, text: &mut TextArea) -> Option<&'a str>",
- "sortText": "7fffffff",
- "filterText": "handle2",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "handle2(${1:key}, ${2:text})$0"
- }
- },
- {
- "label": "history_test()",
- "labelDetails": {
- "description": "fn history_test()"
- },
- "kind": 3,
- "detail": "fn history_test()",
- "sortText": "7fffffff",
- "filterText": "history_test",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "history_test();$0"
- }
- },
- {
- "label": "hov",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "hov",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "hov"
- }
- },
- {
- "label": "is_word(…)",
- "labelDetails": {
- "description": "pub fn is_word(r: char) -> bool"
- },
- "kind": 3,
- "detail": "pub fn is_word(r: char) -> bool",
- "sortText": "7fffffff",
- "filterText": "is_word",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "is_word(${1:r})$0"
- }
- },
- {
- "label": "lsif",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "lsif",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "lsif"
- },
- "data": {
- "for_ref": false,
- "hash": "rE6NVKBPOKJrYDRMYRO9RPCvXD4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "lsp",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "lsp",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "lsp"
- }
- },
- {
- "label": "lsp_notification!(…)",
- "labelDetails": {
- "description": "macro_rules! lsp_notification"
- },
- "kind": 3,
- "detail": "macro_rules! lsp_notification",
- "sortText": "7fffffff",
- "filterText": "lsp_notification!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "lsp_notification!($0)"
- }
- },
- {
- "label": "lsp_request!(…)",
- "labelDetails": {
- "description": "macro_rules! lsp_request"
- },
- "kind": 3,
- "detail": "macro_rules! lsp_request",
- "sortText": "7fffffff",
- "filterText": "lsp_request!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "lsp_request!($0)"
- }
- },
- {
- "label": "main()",
- "labelDetails": {
- "description": "fn main()"
- },
- "kind": 3,
- "detail": "fn main()",
- "sortText": "7fffffff",
- "filterText": "main",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "main();$0"
- }
- },
- {
- "label": "notification",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "notification",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "notification"
- }
- },
- {
- "label": "request",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "request",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "request"
- }
- },
- {
- "label": "selection_range",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "selection_range",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "selection_range"
- }
- },
- {
- "label": "shift()",
- "labelDetails": {
- "description": "fn shift() -> bool"
- },
- "kind": 3,
- "detail": "fn shift() -> bool",
- "sortText": "7fffffff",
- "filterText": "shift",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "shift()$0"
- }
- },
- {
- "label": "sni",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "sni",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "sni"
- }
- },
- {
- "label": "spawn_blocking(…)",
- "labelDetails": {
- "description": "pub fn spawn_blocking<F, R>(f: F) -> JoinHandle<R> where F: FnOnce() -> R + Send + 'static, R: Send + 'static,"
- },
- "kind": 3,
- "detail": "pub fn spawn_blocking<F, R>(f: F) -> JoinHandle<R> where F: FnOnce() -> R + Send + 'static, R: Send + 'static,",
- "sortText": "7fffffff",
- "filterText": "spawn_blocking",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "spawn_blocking(${1:f})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "bbFUPXO+fd3twU5SMh9sqgFR4+0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "text",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "text",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "text"
- }
- },
- {
- "label": "thread",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "thread",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "thread"
- },
- "data": {
- "for_ref": false,
- "hash": "M/NOQV/YDxaBQnYBsGWf045nT4k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "winit_app",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "winit_app",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "winit_app"
- }
- },
- {
- "label": "assert!(…)",
- "labelDetails": {
- "description": "macro_rules! assert"
- },
- "kind": 3,
- "detail": "macro_rules! assert",
- "sortText": "7fffffff",
- "filterText": "assert!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "assert!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "gaIuWk49r9lmatLxOu+BgX+/C4I=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "assert_eq!(…)",
- "labelDetails": {
- "description": "macro_rules! assert_eq"
- },
- "kind": 3,
- "detail": "macro_rules! assert_eq",
- "sortText": "7fffffff",
- "filterText": "assert_eq!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "assert_eq!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "U7rv2WFKP6j6cwFGbr18X1NpxkA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "assert_ne!(…)",
- "labelDetails": {
- "description": "macro_rules! assert_ne"
- },
- "kind": 3,
- "detail": "macro_rules! assert_ne",
- "sortText": "7fffffff",
- "filterText": "assert_ne!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "assert_ne!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "xHU4/hN8KMod0VrOh4JRFU41W54=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "cfg!(…)",
- "labelDetails": {
- "description": "macro_rules! cfg"
- },
- "kind": 3,
- "detail": "macro_rules! cfg",
- "sortText": "7fffffff",
- "filterText": "cfg!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "cfg!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "+0MeXbdJ3y+SWCcRlNTdtkOlvqA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "cfg_select! {…}",
- "labelDetails": {
- "description": "macro cfg_select"
- },
- "kind": 3,
- "detail": "macro cfg_select",
- "sortText": "7fffffff",
- "filterText": "cfg_select!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "cfg_select! {$0}"
- },
- "data": {
- "for_ref": false,
- "hash": "8nrFtIxuj99nJi9FilrijoDetCY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "column!(…)",
- "labelDetails": {
- "description": "macro_rules! column"
- },
- "kind": 3,
- "detail": "macro_rules! column",
- "sortText": "7fffffff",
- "filterText": "column!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "column!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "7TMRwHK753GlWlhchvzeY4tpTMY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "compile_error!(…)",
- "labelDetails": {
- "description": "macro_rules! compile_error"
- },
- "kind": 3,
- "detail": "macro_rules! compile_error",
- "sortText": "7fffffff",
- "filterText": "compile_error!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "compile_error!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "urUIkcrtcXOcOa0uQ6g5NFTpWYg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "concat!(…)",
- "labelDetails": {
- "description": "macro_rules! concat"
- },
- "kind": 3,
- "detail": "macro_rules! concat",
- "sortText": "7fffffff",
- "filterText": "concat!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "concat!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "F+X9Gsduteuxl5U7jouLGs/hPFA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "concat_bytes!(…)",
- "labelDetails": {
- "description": "macro_rules! concat_bytes"
- },
- "kind": 3,
- "detail": "macro_rules! concat_bytes",
- "sortText": "7fffffff",
- "filterText": "concat_bytes!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "concat_bytes!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "YJaO+Rap0rrZUlRZLVKYCNFO91g=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "const_format_args!(…)",
- "labelDetails": {
- "description": "macro_rules! const_format_args"
- },
- "kind": 3,
- "detail": "macro_rules! const_format_args",
- "sortText": "7fffffff",
- "filterText": "const_format_args!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "const_format_args!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "U3dMJkHcvr/nE7O5qtuhEtxVUEI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "dbg!(…)",
- "labelDetails": {
- "description": "macro_rules! dbg"
- },
- "kind": 3,
- "detail": "macro_rules! dbg",
- "sortText": "7fffffff",
- "filterText": "dbg!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "dbg!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "rcFqeBxARtcHDd733BdNDl/bigA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "debug_assert!(…)",
- "labelDetails": {
- "description": "macro_rules! debug_assert"
- },
- "kind": 3,
- "detail": "macro_rules! debug_assert",
- "sortText": "7fffffff",
- "filterText": "debug_assert!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "debug_assert!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "tgqaHqtGp02FRyvSg6u8hAJP6Uc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "debug_assert_eq!(…)",
- "labelDetails": {
- "description": "macro_rules! debug_assert_eq"
- },
- "kind": 3,
- "detail": "macro_rules! debug_assert_eq",
- "sortText": "7fffffff",
- "filterText": "debug_assert_eq!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "debug_assert_eq!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "vV2PBzXzRQBthlhkWN0xgA26EvU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "debug_assert_ne!(…)",
- "labelDetails": {
- "description": "macro_rules! debug_assert_ne"
- },
- "kind": 3,
- "detail": "macro_rules! debug_assert_ne",
- "sortText": "7fffffff",
- "filterText": "debug_assert_ne!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "debug_assert_ne!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "zW8OOcNE4WSqUYNH1HX3H5w+qP0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "env!(…)",
- "labelDetails": {
- "description": "macro_rules! env"
- },
- "kind": 3,
- "detail": "macro_rules! env",
- "sortText": "7fffffff",
- "filterText": "env!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "env!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "X5oqyR4va4EEoSSYPmgkR0FNT6s=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "eprint!(…)",
- "labelDetails": {
- "description": "macro_rules! eprint"
- },
- "kind": 3,
- "detail": "macro_rules! eprint",
- "sortText": "7fffffff",
- "filterText": "eprint!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "eprint!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "5423R6llbbyJW5ys/Lwgb2IStQ0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "eprintln!(…)",
- "labelDetails": {
- "description": "macro_rules! eprintln"
- },
- "kind": 3,
- "detail": "macro_rules! eprintln",
- "sortText": "7fffffff",
- "filterText": "eprintln!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "eprintln!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "RmstQSf1coARAQtsSBKfLt8ztAg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "file!(…)",
- "labelDetails": {
- "description": "macro_rules! file"
- },
- "kind": 3,
- "detail": "macro_rules! file",
- "sortText": "7fffffff",
- "filterText": "file!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "file!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "024U8nmT6q1TZeQ44n6ZFL4DogM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "format!(…)",
- "labelDetails": {
- "description": "macro_rules! format"
- },
- "kind": 3,
- "detail": "macro_rules! format",
- "sortText": "7fffffff",
- "filterText": "format!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "format!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "nPd33m85JWQdH+pq/UpvyEh4gYk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "format_args!(…)",
- "labelDetails": {
- "description": "macro_rules! format_args"
- },
- "kind": 3,
- "detail": "macro_rules! format_args",
- "sortText": "7fffffff",
- "filterText": "format_args!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "format_args!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "k9+ltHdHdh6vlT7MY3arM5LCpFw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "include!(…)",
- "labelDetails": {
- "description": "macro_rules! include"
- },
- "kind": 3,
- "detail": "macro_rules! include",
- "sortText": "7fffffff",
- "filterText": "include!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "include!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "p6nZmnaqums9tiHZp9A7KC6eKxY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "include_bytes!(…)",
- "labelDetails": {
- "description": "macro_rules! include_bytes"
- },
- "kind": 3,
- "detail": "macro_rules! include_bytes",
- "sortText": "7fffffff",
- "filterText": "include_bytes!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "include_bytes!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "wZlVRdgVqyzCYu5B5r+know++lE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "include_str!(…)",
- "labelDetails": {
- "description": "macro_rules! include_str"
- },
- "kind": 3,
- "detail": "macro_rules! include_str",
- "sortText": "7fffffff",
- "filterText": "include_str!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "include_str!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "2N7qe+0lfHjOSwMmE4BWy1EQPbY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "is_x86_feature_detected!(…)",
- "labelDetails": {
- "description": "macro_rules! is_x86_feature_detected"
- },
- "kind": 3,
- "detail": "macro_rules! is_x86_feature_detected",
- "sortText": "7fffffff",
- "filterText": "is_x86_feature_detected!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "is_x86_feature_detected!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "zP8nGDMMetBOO40+snzf1xwspYo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "line!(…)",
- "labelDetails": {
- "description": "macro_rules! line"
- },
- "kind": 3,
- "detail": "macro_rules! line",
- "sortText": "7fffffff",
- "filterText": "line!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "line!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "cYnSp+ChU8rjuNsK5J8YpN7RrzM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "log_syntax!(…)",
- "labelDetails": {
- "description": "macro_rules! log_syntax"
- },
- "kind": 3,
- "detail": "macro_rules! log_syntax",
- "sortText": "7fffffff",
- "filterText": "log_syntax!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "log_syntax!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "LZkPTYqyQETKn9L6L9BImguA5Mc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "matches!(…)",
- "labelDetails": {
- "description": "macro_rules! matches"
- },
- "kind": 3,
- "detail": "macro_rules! matches",
- "sortText": "7fffffff",
- "filterText": "matches!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "matches!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "U21Nvgox6YHcHzeE7gLn+9uXlGU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "module_path!(…)",
- "labelDetails": {
- "description": "macro_rules! module_path"
- },
- "kind": 3,
- "detail": "macro_rules! module_path",
- "sortText": "7fffffff",
- "filterText": "module_path!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "module_path!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "+Q4rWPLGSVKexT064tzCfBPR4H4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "option_env!(…)",
- "labelDetails": {
- "description": "macro_rules! option_env"
- },
- "kind": 3,
- "detail": "macro_rules! option_env",
- "sortText": "7fffffff",
- "filterText": "option_env!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "option_env!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "Tg2J6QgAep1u1fdrZGBQxpklNKg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "panic!(…)",
- "labelDetails": {
- "description": "macro_rules! panic"
- },
- "kind": 3,
- "detail": "macro_rules! panic",
- "sortText": "7fffffff",
- "filterText": "panic!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "panic!($0)"
- }
- },
- {
- "label": "print!(…)",
- "labelDetails": {
- "description": "macro_rules! print"
- },
- "kind": 3,
- "detail": "macro_rules! print",
- "sortText": "7fffffff",
- "filterText": "print!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "print!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "wRfvDWLie5v+D16UQoxRMUasTuc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "println!(…)",
- "labelDetails": {
- "description": "macro_rules! println"
- },
- "kind": 3,
- "detail": "macro_rules! println",
- "sortText": "7fffffff",
- "filterText": "println!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "println!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "he1OKpE4PmiiWyxOOnhRE5L9w7k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "stringify!(…)",
- "labelDetails": {
- "description": "macro_rules! stringify"
- },
- "kind": 3,
- "detail": "macro_rules! stringify",
- "sortText": "7fffffff",
- "filterText": "stringify!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "stringify!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "jVa3xs1GRnCbwBS+ZnI8C1OjzB8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "thread_local! {…}",
- "labelDetails": {
- "description": "macro_rules! thread_local"
- },
- "kind": 3,
- "detail": "macro_rules! thread_local",
- "sortText": "7fffffff",
- "filterText": "thread_local!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "thread_local! {$0}"
- },
- "data": {
- "for_ref": false,
- "hash": "MXqOrlOZiFDzzheg8Wc9jjTuvjI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "todo!(…)",
- "labelDetails": {
- "description": "macro_rules! todo"
- },
- "kind": 3,
- "detail": "macro_rules! todo",
- "sortText": "7fffffff",
- "filterText": "todo!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "todo!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "BIwPqzzSwMoq9wckRILHix6NWcY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "trace_macros!(…)",
- "labelDetails": {
- "description": "macro_rules! trace_macros"
- },
- "kind": 3,
- "detail": "macro_rules! trace_macros",
- "sortText": "7fffffff",
- "filterText": "trace_macros!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "trace_macros!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "d+U0O06AI1oAuh0pOVSOZ+1dxlA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "try!(…)",
- "labelDetails": {
- "description": "macro_rules! r#try"
- },
- "kind": 3,
- "detail": "macro_rules! r#try",
- "deprecated": true,
- "sortText": "7fffffff",
- "filterText": "try!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "r#try!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "5xss02yUcxhO6VMobfVwKtX6vlk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- },
- "tags": [
- 1
- ]
- },
- {
- "label": "unimplemented!(…)",
- "labelDetails": {
- "description": "macro_rules! unimplemented"
- },
- "kind": 3,
- "detail": "macro_rules! unimplemented",
- "sortText": "7fffffff",
- "filterText": "unimplemented!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "unimplemented!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "ELL4YN9V2RxAkFA+ZHbxfX6HpQs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "unreachable!(…)",
- "labelDetails": {
- "description": "macro_rules! unreachable"
- },
- "kind": 3,
- "detail": "macro_rules! unreachable",
- "sortText": "7fffffff",
- "filterText": "unreachable!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "unreachable!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "h/3CIMctT35+GvrhrOOaLiQn/CQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "vec![…]",
- "labelDetails": {
- "description": "macro_rules! vec"
- },
- "kind": 3,
- "detail": "macro_rules! vec",
- "sortText": "7fffffff",
- "filterText": "vec!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "vec![$0]"
- },
- "data": {
- "for_ref": false,
- "hash": "nheRtkFyUI3DAsAhTMc3XzoCc+8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "write!(…)",
- "labelDetails": {
- "description": "macro_rules! write"
- },
- "kind": 3,
- "detail": "macro_rules! write",
- "sortText": "7fffffff",
- "filterText": "write!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "write!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "e4k5Ueirr4mTzFaVtX79IFU4pEs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "writeln!(…)",
- "labelDetails": {
- "description": "macro_rules! writeln"
- },
- "kind": 3,
- "detail": "macro_rules! writeln",
- "sortText": "7fffffff",
- "filterText": "writeln!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "writeln!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "I6tODboWERM9iy1NQy0R0TqL+CE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "core",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "core",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "core"
- },
- "data": {
- "for_ref": false,
- "hash": "tOJFxmBJ5D+n9W5o5AtykbXFy18=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "std",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "std",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "std"
- },
- "data": {
- "for_ref": false,
- "hash": "zFzV9zFBELbpWR74c9c1RcU9v5k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "itertools",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "itertools",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "itertools"
- },
- "data": {
- "for_ref": false,
- "hash": "j2GyvtAp3snq5D8iiXQKsVJmOSk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "amap",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "amap",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "amap"
- }
- },
- {
- "label": "array_chunks",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "array_chunks",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "array_chunks"
- },
- "data": {
- "for_ref": false,
- "hash": "DvHHpndSeioNYA0ix/VBDUQNVLE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "atools",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "atools",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "atools"
- },
- "data": {
- "for_ref": false,
- "hash": "nheKIx2dorvn8cJlYPyFN87APq0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "car",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "car",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "car"
- },
- "data": {
- "for_ref": false,
- "hash": "HrZS3dKfDnTyBIX0sBkBVvomMdY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "lower",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "lower",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "lower"
- },
- "data": {
- "for_ref": false,
- "hash": "69zngFgNrRjn6KkwXVE6XsgJ3Rw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "fimg",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "fimg",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "fimg"
- },
- "data": {
- "for_ref": false,
- "hash": "dz7Em2WuXsTNvXsiJX9KZ8OdAmA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "implicit_fn",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "implicit_fn",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "implicit_fn"
- },
- "data": {
- "for_ref": false,
- "hash": "Y39NqRUXqOLOogAC2UedfgwAHvQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "swash",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "swash",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "swash"
- },
- "data": {
- "for_ref": false,
- "hash": "PYpOjFmqZH2g9pw+tDt4atvAFiQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "dsb",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "dsb",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "dsb"
- }
- },
- {
- "label": "memchr",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "memchr",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "memchr"
- },
- "data": {
- "for_ref": false,
- "hash": "rusEvIOIDbss9MP+Lto9dblhwvs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "log",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "log",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "log"
- },
- "data": {
- "for_ref": false,
- "hash": "fo5kAe/Z5l9h4wsldr4L8pxrs3A=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ropey",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "ropey",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ropey"
- },
- "data": {
- "for_ref": false,
- "hash": "/pilcF67wAU5EuNvJmqoEnnRzn8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "regex_cursor",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "regex_cursor",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "regex_cursor"
- },
- "data": {
- "for_ref": false,
- "hash": "qzcA934S7v+qFyOMalgc9bD/SdY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "anyhow",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "anyhow",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "anyhow"
- },
- "data": {
- "for_ref": false,
- "hash": "a3X/k3lHItc20Hxe/zeLUwAujw4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "serde_derive",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "serde_derive",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "serde_derive"
- },
- "data": {
- "for_ref": false,
- "hash": "E8s2BX+ewho1U1GNJuMh58L0TfQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "serde",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "serde",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "serde"
- },
- "data": {
- "for_ref": false,
- "hash": "7xU0LQg2a12iXWxPGf7jNerXxrs=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "arc_swap",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "arc_swap",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "arc_swap"
- },
- "data": {
- "for_ref": false,
- "hash": "Ft9evwp5ZOEcvGMnv+0mvRq1NP0=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "regex",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "regex",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "regex"
- },
- "data": {
- "for_ref": false,
- "hash": "kGdAd2Y6gP9obRGBIcaTMlAnpBA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "tree_house",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "tree_house",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "tree_house"
- }
- },
- {
- "label": "helix_loader",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "helix_loader",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "helix_loader"
- }
- },
- {
- "label": "parking_lot",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "parking_lot",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "parking_lot"
- },
- "data": {
- "for_ref": false,
- "hash": "D8qLkiRUFVuip9zWiXkRYdVx938=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "nucleo",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "nucleo",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "nucleo"
- },
- "data": {
- "for_ref": false,
- "hash": "2zWkCh1xp6fDlzK9YhYbPSaz7RQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "serde_json",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "serde_json",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "serde_json"
- },
- "data": {
- "for_ref": false,
- "hash": "KlMeG2bpXpVb58L4lQkKGiVeOBo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "url",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "url",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "url"
- },
- "data": {
- "for_ref": false,
- "hash": "OLxJxwfLYCvxUbv6bQDzs8NT0RM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "helix_core",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "helix_core",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "helix_core"
- }
- },
- {
- "label": "lsp_types",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "lsp_types",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "lsp_types"
- },
- "data": {
- "for_ref": false,
- "hash": "eRR4W1wMf15JoP0nPFwozSm+ulk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "lsp_server",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "lsp_server",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "lsp_server"
- },
- "data": {
- "for_ref": false,
- "hash": "psYYFt9KbA+5KiNPew2/cAtugc8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "replace_with",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "replace_with",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "replace_with"
- },
- "data": {
- "for_ref": false,
- "hash": "ZKVbkAN2NxqQdWwnVK5UaaMLBdY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "rust_fsm",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "rust_fsm",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "rust_fsm"
- },
- "data": {
- "for_ref": false,
- "hash": "edTlUSzr2gke/817LeVj50z2Rdw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "clipp",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "clipp",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "clipp"
- },
- "data": {
- "for_ref": false,
- "hash": "WqudjZOf/dItw8h2qjrDN/n9g9E=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "crossbeam",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "crossbeam",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "crossbeam"
- },
- "data": {
- "for_ref": false,
- "hash": "u+2+BdcOBUozJtBA5cTm1VZDKxw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "diff_match_patch_rs",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "diff_match_patch_rs",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "diff_match_patch_rs"
- }
- },
- {
- "label": "env_logger",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "env_logger",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "env_logger"
- },
- "data": {
- "for_ref": false,
- "hash": "jibszE4jUaj9fBWDXBSrf80o+MU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "markdown",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "markdown",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "markdown"
- },
- "data": {
- "for_ref": false,
- "hash": "nL34Nesw+gcsSOWuwSq572shM4Y=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "papaya",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "papaya",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "papaya"
- },
- "data": {
- "for_ref": false,
- "hash": "4OuhWV9Qa+an33vxXoswZHnuKVQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "pin_project",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "pin_project",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "pin_project"
- },
- "data": {
- "for_ref": false,
- "hash": "7fltGbUZ6BCZtUU7iIg2G07hr4Y=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "run",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "run",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "run"
- },
- "data": {
- "for_ref": false,
- "hash": "NYF8XoCPQXaEhdliEKlMwKO/L40=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "softbuffer",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "softbuffer",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "softbuffer"
- }
- },
- {
- "label": "test_log",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "test_log",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "test_log"
- },
- "data": {
- "for_ref": false,
- "hash": "UgGoEtfMqSw+6W7DZN/fbcVAw7I=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "tokio",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "tokio",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "tokio"
- },
- "data": {
- "for_ref": false,
- "hash": "I05tPlk52kSrkjRXqxmNBmh+S1E=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "tree_sitter",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "tree_sitter",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "tree_sitter"
- }
- },
- {
- "label": "winit",
- "kind": 9,
- "sortText": "7fffffff",
- "filterText": "winit",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "winit"
- },
- "data": {
- "for_ref": false,
- "hash": "eZj9InIUddKiWxxJL7RgOHjeIDI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "char",
- "labelDetails": {
- "description": "char"
- },
- "kind": 22,
- "detail": "char",
- "sortText": "7fffffff",
- "filterText": "char",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "char"
- }
- },
- {
- "label": "bool",
- "labelDetails": {
- "description": "bool"
- },
- "kind": 22,
- "detail": "bool",
- "sortText": "7fffffff",
- "filterText": "bool",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "bool"
- }
- },
- {
- "label": "str",
- "labelDetails": {
- "description": "str"
- },
- "kind": 22,
- "detail": "str",
- "sortText": "7fffffff",
- "filterText": "str",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "str"
- }
- },
- {
- "label": "isize",
- "labelDetails": {
- "description": "isize"
- },
- "kind": 22,
- "detail": "isize",
- "sortText": "7fffffff",
- "filterText": "isize",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "isize"
- }
- },
- {
- "label": "i8",
- "labelDetails": {
- "description": "i8"
- },
- "kind": 22,
- "detail": "i8",
- "sortText": "7fffffff",
- "filterText": "i8",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "i8"
- }
- },
- {
- "label": "i16",
- "labelDetails": {
- "description": "i16"
- },
- "kind": 22,
- "detail": "i16",
- "sortText": "7fffffff",
- "filterText": "i16",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "i16"
- }
- },
- {
- "label": "i32",
- "labelDetails": {
- "description": "i32"
- },
- "kind": 22,
- "detail": "i32",
- "sortText": "7fffffff",
- "filterText": "i32",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "i32"
- }
- },
- {
- "label": "i64",
- "labelDetails": {
- "description": "i64"
- },
- "kind": 22,
- "detail": "i64",
- "sortText": "7fffffff",
- "filterText": "i64",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "i64"
- }
- },
- {
- "label": "i128",
- "labelDetails": {
- "description": "i128"
- },
- "kind": 22,
- "detail": "i128",
- "sortText": "7fffffff",
- "filterText": "i128",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "i128"
- }
- },
- {
- "label": "usize",
- "labelDetails": {
- "description": "usize"
- },
- "kind": 22,
- "detail": "usize",
- "sortText": "7fffffff",
- "filterText": "usize",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "usize"
- }
- },
- {
- "label": "u8",
- "labelDetails": {
- "description": "u8"
- },
- "kind": 22,
- "detail": "u8",
- "sortText": "7fffffff",
- "filterText": "u8",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "u8"
- }
- },
- {
- "label": "u16",
- "labelDetails": {
- "description": "u16"
- },
- "kind": 22,
- "detail": "u16",
- "sortText": "7fffffff",
- "filterText": "u16",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "u16"
- }
- },
- {
- "label": "u32",
- "labelDetails": {
- "description": "u32"
- },
- "kind": 22,
- "detail": "u32",
- "sortText": "7fffffff",
- "filterText": "u32",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "u32"
- }
- },
- {
- "label": "u64",
- "labelDetails": {
- "description": "u64"
- },
- "kind": 22,
- "detail": "u64",
- "sortText": "7fffffff",
- "filterText": "u64",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "u64"
- }
- },
- {
- "label": "u128",
- "labelDetails": {
- "description": "u128"
- },
- "kind": 22,
- "detail": "u128",
- "sortText": "7fffffff",
- "filterText": "u128",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "u128"
- }
- },
- {
- "label": "f16",
- "labelDetails": {
- "description": "f16"
- },
- "kind": 22,
- "detail": "f16",
- "sortText": "7fffffff",
- "filterText": "f16",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "f16"
- }
- },
- {
- "label": "f32",
- "labelDetails": {
- "description": "f32"
- },
- "kind": 22,
- "detail": "f32",
- "sortText": "7fffffff",
- "filterText": "f32",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "f32"
- }
- },
- {
- "label": "f64",
- "labelDetails": {
- "description": "f64"
- },
- "kind": 22,
- "detail": "f64",
- "sortText": "7fffffff",
- "filterText": "f64",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "f64"
- }
- },
- {
- "label": "f128",
- "labelDetails": {
- "description": "f128"
- },
- "kind": 22,
- "detail": "f128",
- "sortText": "7fffffff",
- "filterText": "f128",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "f128"
- }
- },
- {
- "label": "AsMut",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "AsMut",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AsMut"
- },
- "data": {
- "for_ref": false,
- "hash": "AmuPCxwiR5ofeyfjPl7ITpnkDKc=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AsRef",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "AsRef",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AsRef"
- },
- "data": {
- "for_ref": false,
- "hash": "ShI006DVnVwh5h7H+NlyNuJOw4c=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AsyncFn",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "AsyncFn",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AsyncFn"
- },
- "data": {
- "for_ref": false,
- "hash": "aWdrH5IDB+eQ7STVf2JJkAG9gp4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AsyncFnMut",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "AsyncFnMut",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AsyncFnMut"
- },
- "data": {
- "for_ref": false,
- "hash": "942AWGlcxmMOQR/+NZtTJdZANVE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "AsyncFnOnce",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "AsyncFnOnce",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "AsyncFnOnce"
- },
- "data": {
- "for_ref": false,
- "hash": "8g1StaE+I7pygoclUy/i2kL6qE4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Box",
- "labelDetails": {
- "description": "Box<{unknown}, {unknown}>"
- },
- "kind": 22,
- "detail": "Box<{unknown}, {unknown}>",
- "sortText": "7fffffff",
- "filterText": "Box",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Box"
- },
- "data": {
- "for_ref": false,
- "hash": "f5W5fhVzx8PvIDcAqzgRzsOV5Hw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Clone",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "Clone",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Clone"
- },
- "data": {
- "for_ref": false,
- "hash": "tpB7QxvNLA6q157q7TzVY+wpJxg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Default",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "Default",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Default"
- },
- "data": {
- "for_ref": false,
- "hash": "Z2/LdfBWXNt2TffIfwY/k769uPo=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "DoubleEndedIterator",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "DoubleEndedIterator",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "DoubleEndedIterator"
- },
- "data": {
- "for_ref": false,
- "hash": "lMnHeIE9LZcdJ9RFDKDOnh+lUrY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Drop",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "Drop",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Drop"
- },
- "data": {
- "for_ref": false,
- "hash": "pCuDLASvZYl4CCwYFCXjn6d8keY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Eq",
- "labelDetails": {
- "detail": "(alias ==, !=)"
- },
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "Eq",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Eq"
- },
- "data": {
- "for_ref": false,
- "hash": "T11yXv/DA+g1U5/Qah76AbEmSzU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Err(…)",
- "labelDetails": {
- "description": "Err(E)"
- },
- "kind": 20,
- "detail": "Err(E)",
- "sortText": "7ffffff1",
- "filterText": "Err()",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Err(${1:()})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "APGmpH2lbVHiVRJCyHAJkN1Tj/4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ExactSizeIterator",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "ExactSizeIterator",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ExactSizeIterator"
- },
- "data": {
- "for_ref": false,
- "hash": "Dv6wOMsi8C5QTR4y2/uX/d0m4sI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Extend",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "Extend",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Extend"
- },
- "data": {
- "for_ref": false,
- "hash": "vhsYpKUsIHixwJYa7drPPuGl9jk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FnMut",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "FnMut",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FnMut"
- },
- "data": {
- "for_ref": false,
- "hash": "0/qY9ptWDAGdTmgiWYl5NsRcV/A=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FnOnce",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "FnOnce",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FnOnce"
- },
- "data": {
- "for_ref": false,
- "hash": "Qm8MBIOTPu2g9srH43rXfMASoz8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "From",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "From",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "From"
- },
- "data": {
- "for_ref": false,
- "hash": "piqIFREolu63k1t3F/RD6+IeEno=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "FromIterator",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "FromIterator",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "FromIterator"
- },
- "data": {
- "for_ref": false,
- "hash": "glJp6sPAW4AR9BZL861rxR/RgR8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Future",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "Future",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Future"
- },
- "data": {
- "for_ref": false,
- "hash": "uBx7+bnctd/Rl2jdh7uTmGqXNE4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Into",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "Into",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Into"
- },
- "data": {
- "for_ref": false,
- "hash": "2qwUzbupF5muIV1/TU5bgmO1+wY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "IntoFuture",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "IntoFuture",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "IntoFuture"
- },
- "data": {
- "for_ref": false,
- "hash": "vbOYYL0Bj/kTbmawhOOVa9g4W9k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "IntoIterator",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "IntoIterator",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "IntoIterator"
- },
- "data": {
- "for_ref": false,
- "hash": "Se/j94n8V0X9bfXjgOClrht1/fw=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Iterator",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "Iterator",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Iterator"
- },
- "data": {
- "for_ref": false,
- "hash": "m6qBJtyhw9Ct7RuD3X2PNJGVMr8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "None",
- "labelDetails": {
- "description": "None"
- },
- "kind": 20,
- "detail": "None",
- "preselect": true,
- "sortText": "7ffffff0",
- "filterText": "None",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "None$0"
- },
- "data": {
- "for_ref": false,
- "hash": "vNxTDlwHEs3uEg/P0IkyAAZlPDU=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Ok(…)",
- "labelDetails": {
- "description": "Ok(T)"
- },
- "kind": 20,
- "detail": "Ok(T)",
- "sortText": "7ffffff1",
- "filterText": "Ok()",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Ok(${1:()})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "lsAipEfthzOQHcl9EAq2B+ifujQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Option",
- "labelDetails": {
- "description": "Option<{unknown}>"
- },
- "kind": 13,
- "detail": "Option<{unknown}>",
- "sortText": "7fffffff",
- "filterText": "Option",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Option"
- },
- "data": {
- "for_ref": false,
- "hash": "5jT3kP1dxDDMzRrIClb9T/p4j8s=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Ord",
- "labelDetails": {
- "detail": "(alias <, >, <=, >=)"
- },
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "Ord",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Ord"
- },
- "data": {
- "for_ref": false,
- "hash": "5ydLgyOQHOO7ClPV53gOW8Sv2jM=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PartialEq",
- "labelDetails": {
- "detail": "(alias ==, !=)"
- },
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "PartialEq",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PartialEq"
- },
- "data": {
- "for_ref": false,
- "hash": "0ySY1qInqpIshsEa+cz9jcmpeCE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "PartialOrd",
- "labelDetails": {
- "detail": "(alias >, <, <=, >=)"
- },
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "PartialOrd",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "PartialOrd"
- },
- "data": {
- "for_ref": false,
- "hash": "pHNpIKtpgmpAaP/sHOZ2MRulkkI=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Result",
- "labelDetails": {
- "description": "Result<{unknown}, {unknown}>"
- },
- "kind": 13,
- "detail": "Result<{unknown}, {unknown}>",
- "sortText": "7fffffff",
- "filterText": "Result",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Result"
- },
- "data": {
- "for_ref": false,
- "hash": "dOQGA6f1ltHX32clAy54/jVw+8Y=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Some(…)",
- "labelDetails": {
- "description": "Some(T)"
- },
- "kind": 20,
- "detail": "Some(T)",
- "sortText": "7ffffff1",
- "filterText": "Some()",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Some(${1:()})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "nTecwTVff+eWkQdgNtZz8lUrq50=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "String",
- "labelDetails": {
- "description": "String"
- },
- "kind": 22,
- "detail": "String",
- "sortText": "7fffffff",
- "filterText": "String",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "String"
- },
- "data": {
- "for_ref": false,
- "hash": "LrYhjiA5tumHeOwp5CtOROxf8rg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ToOwned",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "ToOwned",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ToOwned"
- },
- "data": {
- "for_ref": false,
- "hash": "0ZUi5cF9B1j/0lCX64NksbtD4mA=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "ToString",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "ToString",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "ToString"
- },
- "data": {
- "for_ref": false,
- "hash": "UYO0j4eHuspc+wNNeRp0Cz26V1U=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TryFrom",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "TryFrom",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TryFrom"
- },
- "data": {
- "for_ref": false,
- "hash": "fGAMgj8trLX0fAfwD5MmMTM/L30=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "TryInto",
- "kind": 8,
- "sortText": "7fffffff",
- "filterText": "TryInto",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "TryInto"
- },
- "data": {
- "for_ref": false,
- "hash": "6ZNgMmAlOXnU39TolFpR1x+OeaY=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "Vec",
- "labelDetails": {
- "description": "Vec<{unknown}, {unknown}>"
- },
- "kind": 22,
- "detail": "Vec<{unknown}, {unknown}>",
- "sortText": "7fffffff",
- "filterText": "Vec",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "Vec"
- },
- "data": {
- "for_ref": false,
- "hash": "J1aEUS8ZGOSGjyIcRwr2aRp9oVk=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "align_of()",
- "labelDetails": {
- "description": "pub const fn align_of<T>() -> usize"
- },
- "kind": 3,
- "detail": "pub const fn align_of<T>() -> usize",
- "sortText": "7fffffff",
- "filterText": "align_of",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "align_of()$0"
- },
- "data": {
- "for_ref": false,
- "hash": "6VSMXfL8Q4CS+wSqjnhUEQSv0Y8=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "align_of_val(…)",
- "labelDetails": {
- "description": "pub const fn align_of_val<T>(val: &T) -> usize where T: ?Sized,"
- },
- "kind": 3,
- "detail": "pub const fn align_of_val<T>(val: &T) -> usize where T: ?Sized,",
- "sortText": "7fffffff",
- "filterText": "align_of_val",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "align_of_val(${1:val})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "lhjJczCd+2yjI8j7Cj3hFctpY/k=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "alloc_error_handler",
- "kind": 18,
- "sortText": "7fffffff",
- "filterText": "alloc_error_handler",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "alloc_error_handler"
- }
- },
- {
- "label": "define_opaque",
- "kind": 18,
- "sortText": "7fffffff",
- "filterText": "define_opaque",
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "define_opaque"
- }
- },
- {
- "label": "deref!(…)",
- "labelDetails": {
- "description": "macro deref"
- },
- "kind": 3,
- "detail": "macro deref",
- "sortText": "7fffffff",
- "filterText": "deref!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "deref!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "dfFBiRvzS8uRboxVTeGW8IesaK4=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "drop(…)",
- "labelDetails": {
- "description": "pub const fn drop<T>(_x: T) where T: Destruct,"
- },
- "kind": 3,
- "detail": "pub const fn drop<T>(_x: T) where T: Destruct,",
- "sortText": "7fffffff",
- "filterText": "drop",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "drop(${1:x});$0"
- },
- "data": {
- "for_ref": false,
- "hash": "1g6Q4StIg7iG+xQrNtW3RRIJC2o=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "size_of()",
- "labelDetails": {
- "description": "pub const fn size_of<T>() -> usize"
- },
- "kind": 3,
- "detail": "pub const fn size_of<T>() -> usize",
- "sortText": "7fffffff",
- "filterText": "size_of",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "size_of()$0"
- },
- "data": {
- "for_ref": false,
- "hash": "87B8GOTRg9ekS5yIrnGwBpZYLlE=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "size_of_val(…)",
- "labelDetails": {
- "description": "pub const fn size_of_val<T>(val: &T) -> usize where T: ?Sized,"
- },
- "kind": 3,
- "detail": "pub const fn size_of_val<T>(val: &T) -> usize where T: ?Sized,",
- "sortText": "7fffffff",
- "filterText": "size_of_val",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "size_of_val(${1:val})$0"
- },
- "data": {
- "for_ref": false,
- "hash": "5xlLdekGC+wOYHZ2cOaWN8ZzARQ=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "type_ascribe!(…)",
- "labelDetails": {
- "description": "macro type_ascribe"
- },
- "kind": 3,
- "detail": "macro type_ascribe",
- "sortText": "7fffffff",
- "filterText": "type_ascribe!",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "type_ascribe!($0)"
- },
- "data": {
- "for_ref": false,
- "hash": "W9Z3/L3h28fJX7yOmtLLC6DMLbg=",
- "position": {
- "position": {
- "character": 7,
- "line": 75
- },
- "textDocument": {
- "uri": "file:///home/os/gracilaria/src/main.rs"
- }
- },
- "version": 6
- }
- },
- {
- "label": "match",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "match",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "match $1 {\n $0\n}"
- }
- },
- {
- "label": "while",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "while",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "while $1 {\n $0\n}"
- }
- },
- {
- "label": "while let",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "while let",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "while let $1 = $2 {\n $0\n}"
- }
- },
- {
- "label": "loop",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "loop",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "loop {\n $0\n}"
- }
- },
- {
- "label": "if",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "if",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "if $1 {\n $0\n}"
- }
- },
- {
- "label": "if let",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "if let",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "if let $1 = $2 {\n $0\n}"
- }
- },
- {
- "label": "for",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "for",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "for $1 in $2 {\n $0\n}"
- }
- },
- {
- "label": "true",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "true",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "true"
- }
- },
- {
- "label": "false",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "false",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "false"
- }
- },
- {
- "label": "letm",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "letm",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "let mut $1 = $0;"
- }
- },
- {
- "label": "let",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "let",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "let $1 = $0;"
- }
- },
- {
- "label": "return",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "return",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "return;"
- }
- },
- {
- "label": "enum",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "enum",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "enum $1 {\n $0\n}"
- }
- },
- {
- "label": "mod",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "mod",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "mod $0"
- }
- },
- {
- "label": "static",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "static",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "static $0"
- }
- },
- {
- "label": "struct",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "struct",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "struct $0"
- }
- },
- {
- "label": "trait",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "trait",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "trait $1 {\n $0\n}"
- }
- },
- {
- "label": "union",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "union",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "union $1 {\n $0\n}"
- }
- },
- {
- "label": "use",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "use",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "use $0;"
- }
- },
- {
- "label": "impl",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "impl",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "impl $1 {\n $0\n}"
- }
- },
- {
- "label": "impl for",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "impl for",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "impl $1 for $2 {\n $0\n}"
- }
- },
- {
- "label": "extern",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "extern",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "extern $0"
- }
- },
- {
- "label": "type",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "type",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "type $0"
- }
- },
- {
- "label": "fn",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "fn",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "fn $1($2) {\n $0\n}"
- }
- },
- {
- "label": "unsafe",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "unsafe",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "unsafe $0"
- }
- },
- {
- "label": "const",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "const",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "const $0"
- }
- },
- {
- "label": "async",
- "kind": 14,
- "sortText": "7fffffff",
- "filterText": "async",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "async $0"
- }
- },
- {
- "label": "pd",
- "kind": 15,
- "sortText": "7fffffff",
- "filterText": "pd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "eprintln!(\"$0 = {:?}\", $0);"
- }
- },
- {
- "label": "ppd",
- "kind": 15,
- "sortText": "7fffffff",
- "filterText": "ppd",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "eprintln!(\"$0 = {:#?}\", $0);"
- }
- },
- {
- "label": "macro_rules",
- "kind": 15,
- "sortText": "7fffffff",
- "filterText": "macro_rules",
- "insertTextFormat": 2,
- "textEdit": {
- "range": {
- "start": {
- "line": 75,
- "character": 4
- },
- "end": {
- "line": 75,
- "character": 7
- }
- },
- "newText": "macro_rules! $1 {\n ($2) => {\n $0\n };\n}"
- }
- }
- ]
-} \ No newline at end of file
diff --git a/diag b/diag
deleted file mode 100644
index 2a7962b..0000000
--- a/diag
+++ /dev/null
@@ -1,522 +0,0 @@
-[
- {
- "range": {
- "start": {
- "line": 70,
- "character": 39
- },
- "end": {
- "line": 70,
- "character": 44
- }
- },
- "severity": 2,
- "code": "unused_imports",
- "source": "rustc",
- "message": "unused imports: `color` and `set_a`\n`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default",
- "relatedInformation": [
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 70,
- "character": 37
- },
- "end": {
- "line": 70,
- "character": 44
- }
- }
- },
- "message": "remove the unused imports"
- }
- ],
- "tags": [
- 1
- ],
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `color` and `set_a`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:71:40\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m71\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::text::{Diff, TextArea, col, color, is_word, set_a};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"
- }
- },
- {
- "range": {
- "start": {
- "line": 70,
- "character": 55
- },
- "end": {
- "line": 70,
- "character": 60
- }
- },
- "severity": 2,
- "code": "unused_imports",
- "source": "rustc",
- "message": "unused imports: `color` and `set_a`\n`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default",
- "relatedInformation": [
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 70,
- "character": 37
- },
- "end": {
- "line": 70,
- "character": 44
- }
- }
- },
- "message": "remove the unused imports"
- }
- ],
- "tags": [
- 1
- ],
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `color` and `set_a`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:71:40\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m71\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::text::{Diff, TextArea, col, color, is_word, set_a};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"
- }
- },
- {
- "range": {
- "start": {
- "line": 1296,
- "character": 6
- },
- "end": {
- "line": 1296,
- "character": 7
- }
- },
- "severity": 2,
- "code": "unused_parens",
- "source": "rustc",
- "message": "unnecessary parentheses around type\n`#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default",
- "relatedInformation": [
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 1296,
- "character": 6
- },
- "end": {
- "line": 1296,
- "character": 7
- }
- }
- },
- "message": "remove these parentheses"
- }
- ],
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary parentheses around type\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:1297:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1297\u001b[0m \u001b[1m\u001b[94m|\u001b[0m C(((usize, usize)) => .. if unsafe { CLICKING }) => Selection(0..0) [StartSelection],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m \u001b[1m\u001b[33m^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default\n\u001b[1m\u001b[96mhelp\u001b[0m: remove these parentheses\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1297\u001b[0m \u001b[91m- \u001b[0m C(\u001b[91m(\u001b[0m(usize, usize)\u001b[91m)\u001b[0m => .. if unsafe { CLICKING }) => Selection(0..0) [StartSelection],\n\u001b[1m\u001b[94m1297\u001b[0m \u001b[92m+ \u001b[0m C((usize, usize) => .. if unsafe { CLICKING }) => Selection(0..0) [StartSelection],\n \u001b[1m\u001b[94m|\u001b[0m\n\n"
- }
- },
- {
- "range": {
- "start": {
- "line": 1296,
- "character": 21
- },
- "end": {
- "line": 1296,
- "character": 22
- }
- },
- "severity": 2,
- "code": "unused_parens",
- "source": "rustc",
- "message": "unnecessary parentheses around type\n`#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default",
- "relatedInformation": [
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 1296,
- "character": 6
- },
- "end": {
- "line": 1296,
- "character": 7
- }
- }
- },
- "message": "remove these parentheses"
- }
- ],
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary parentheses around type\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:1297:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1297\u001b[0m \u001b[1m\u001b[94m|\u001b[0m C(((usize, usize)) => .. if unsafe { CLICKING }) => Selection(0..0) [StartSelection],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m \u001b[1m\u001b[33m^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default\n\u001b[1m\u001b[96mhelp\u001b[0m: remove these parentheses\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1297\u001b[0m \u001b[91m- \u001b[0m C(\u001b[91m(\u001b[0m(usize, usize)\u001b[91m)\u001b[0m => .. if unsafe { CLICKING }) => Selection(0..0) [StartSelection],\n\u001b[1m\u001b[94m1297\u001b[0m \u001b[92m+ \u001b[0m C((usize, usize) => .. if unsafe { CLICKING }) => Selection(0..0) [StartSelection],\n \u001b[1m\u001b[94m|\u001b[0m\n\n"
- }
- },
- {
- "range": {
- "start": {
- "line": 606,
- "character": 32
- },
- "end": {
- "line": 606,
- "character": 36
- }
- },
- "severity": 2,
- "code": "unused_variables",
- "source": "rustc",
- "message": "unused variable: `diag`",
- "relatedInformation": [
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 606,
- "character": 32
- },
- "end": {
- "line": 606,
- "character": 36
- }
- }
- },
- "message": "if this is intentional, prefix it with an underscore: `_diag`"
- }
- ],
- "tags": [
- 1
- ],
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `diag`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:607:33\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m607\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m for diag in dawg {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_diag`\u001b[0m\n\n"
- }
- },
- {
- "range": {
- "start": {
- "line": 1306,
- "character": 10
- },
- "end": {
- "line": 1306,
- "character": 11
- }
- },
- "severity": 2,
- "code": "unused_variables",
- "source": "rustc",
- "message": "unused variable: `x`",
- "relatedInformation": [
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 1306,
- "character": 10
- },
- "end": {
- "line": 1306,
- "character": 11
- }
- }
- },
- "message": "if this is intentional, prefix it with an underscore: `_x`"
- }
- ],
- "tags": [
- 1
- ],
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `x`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:1307:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1307\u001b[0m \u001b[1m\u001b[94m|\u001b[0m Selection(x) => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_x`\u001b[0m\n\n"
- }
- },
- {
- "range": {
- "start": {
- "line": 1334,
- "character": 8
- },
- "end": {
- "line": 1334,
- "character": 9
- }
- },
- "severity": 2,
- "code": "unused_variables",
- "source": "rustc",
- "message": "unused variable: `x`",
- "relatedInformation": [
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 1334,
- "character": 8
- },
- "end": {
- "line": 1334,
- "character": 9
- }
- }
- },
- "message": "if this is intentional, prefix it with an underscore: `_x`"
- }
- ],
- "tags": [
- 1
- ],
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `x`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:1335:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1335\u001b[0m \u001b[1m\u001b[94m|\u001b[0m Search((x, y, m)) => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_x`\u001b[0m\n\n"
- }
- },
- {
- "range": {
- "start": {
- "line": 1334,
- "character": 11
- },
- "end": {
- "line": 1334,
- "character": 12
- }
- },
- "severity": 2,
- "code": "unused_variables",
- "source": "rustc",
- "message": "unused variable: `y`",
- "relatedInformation": [
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 1334,
- "character": 11
- },
- "end": {
- "line": 1334,
- "character": 12
- }
- }
- },
- "message": "you might have meant to pattern match on the similarly named constant `N`: `com::N`"
- },
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 1334,
- "character": 11
- },
- "end": {
- "line": 1334,
- "character": 12
- }
- }
- },
- "message": "if this is intentional, prefix it with an underscore: `_y`"
- }
- ],
- "tags": [
- 1
- ],
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `y`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:1335:12\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1335\u001b[0m \u001b[1m\u001b[94m|\u001b[0m Search((x, y, m)) => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: you might have meant to pattern match on the similarly named constant `N`\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1335\u001b[0m \u001b[91m- \u001b[0mSearch((x, \u001b[91my\u001b[0m, m)) => {\n\u001b[1m\u001b[94m1335\u001b[0m \u001b[92m+ \u001b[0mSearch((x, \u001b[92mcom::N\u001b[0m, m)) => {\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: if this is intentional, prefix it with an underscore\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1335\u001b[0m \u001b[1m\u001b[94m| \u001b[0mSearch((x, \u001b[92m_\u001b[0my, m)) => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[92m+\u001b[0m\n\n"
- }
- },
- {
- "range": {
- "start": {
- "line": 1334,
- "character": 14
- },
- "end": {
- "line": 1334,
- "character": 15
- }
- },
- "severity": 2,
- "code": "unused_variables",
- "source": "rustc",
- "message": "unused variable: `m`",
- "relatedInformation": [
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 1334,
- "character": 14
- },
- "end": {
- "line": 1334,
- "character": 15
- }
- }
- },
- "message": "you might have meant to pattern match on the similarly named constant `N`: `com::N`"
- },
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 1334,
- "character": 14
- },
- "end": {
- "line": 1334,
- "character": 15
- }
- }
- },
- "message": "if this is intentional, prefix it with an underscore: `_m`"
- }
- ],
- "tags": [
- 1
- ],
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `m`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:1335:15\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1335\u001b[0m \u001b[1m\u001b[94m|\u001b[0m Search((x, y, m)) => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: you might have meant to pattern match on the similarly named constant `N`\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1335\u001b[0m \u001b[91m- \u001b[0mSearch((x, y, \u001b[91mm\u001b[0m)) => {\n\u001b[1m\u001b[94m1335\u001b[0m \u001b[92m+ \u001b[0mSearch((x, y, \u001b[92mcom::N\u001b[0m)) => {\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: if this is intentional, prefix it with an underscore\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1335\u001b[0m \u001b[1m\u001b[94m| \u001b[0mSearch((x, y, \u001b[92m_\u001b[0mm)) => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[92m+\u001b[0m\n\n"
- }
- },
- {
- "range": {
- "start": {
- "line": 1296,
- "character": 6
- },
- "end": {
- "line": 1296,
- "character": 22
- }
- },
- "severity": 2,
- "code": "dead_code",
- "source": "rustc",
- "message": "field `0` is never read\n`Action` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default",
- "relatedInformation": [
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 1336,
- "character": 4
- },
- "end": {
- "line": 1336,
- "character": 5
- }
- }
- },
- "message": "field in this variant"
- },
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 1296,
- "character": 6
- },
- "end": {
- "line": 1296,
- "character": 22
- }
- }
- },
- "message": "consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field: `()`"
- }
- ],
- "tags": [
- 1
- ],
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: field `0` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:1297:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1297\u001b[0m \u001b[1m\u001b[94m|\u001b[0m C(((usize, usize)) => .. if unsafe { CLICKING }) => Selection(0..0) [StartSelection],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1337\u001b[0m \u001b[1m\u001b[94m|\u001b[0m C(_) => Search((x, y, m)),\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-\u001b[0m \u001b[1m\u001b[94mfield in this variant\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `Action` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\u001b[1m\u001b[96mhelp\u001b[0m: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1297\u001b[0m \u001b[91m- \u001b[0m C(\u001b[91m((usize, usize))\u001b[0m => .. if unsafe { CLICKING }) => Selection(0..0) [StartSelection],\n\u001b[1m\u001b[94m1297\u001b[0m \u001b[92m+ \u001b[0m C(\u001b[92m()\u001b[0m => .. if unsafe { CLICKING }) => Selection(0..0) [StartSelection],\n \u001b[1m\u001b[94m|\u001b[0m\n\n"
- }
- },
- {
- "range": {
- "start": {
- "line": 1446,
- "character": 3
- },
- "end": {
- "line": 1446,
- "character": 15
- }
- },
- "severity": 2,
- "code": "dead_code",
- "source": "rustc",
- "message": "function `frunctinator` is never used",
- "tags": [
- 1
- ],
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `frunctinator` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:1447:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1447\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn frunctinator(\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m\n\n"
- }
- },
- {
- "range": {
- "start": {
- "line": 457,
- "character": 36
- },
- "end": {
- "line": 457,
- "character": 104
- }
- },
- "severity": 2,
- "code": "unused_must_use",
- "source": "rustc",
- "message": "unused `Result` that must be used\nthis `Result` may be an `Err` variant, which should be handled",
- "relatedInformation": [
- {
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 457,
- "character": 36
- },
- "end": {
- "line": 457,
- "character": 36
- }
- }
- },
- "message": "use `let _ = ...` to ignore the resulting value: `let _ = `"
- }
- ],
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused `Result` that must be used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:458:37\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m458\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m std::fs::write(\"diag\", serde_json::to_string_pretty(&diag).unwrap());\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: this `Result` may be an `Err` variant, which should be handled\n\u001b[1m\u001b[96mhelp\u001b[0m: use `let _ = ...` to ignore the resulting value\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m458\u001b[0m \u001b[1m\u001b[94m| \u001b[0m \u001b[92mlet _ = \u001b[0mstd::fs::write(\"diag\", serde_json::to_string_pretty(&diag).unwrap());\n \u001b[1m\u001b[94m|\u001b[0m \u001b[92m+++++++\u001b[0m\n\n"
- }
- },
- {
- "range": {
- "start": {
- "line": 1451,
- "character": 31
- },
- "end": {
- "line": 1451,
- "character": 41
- }
- },
- "severity": 2,
- "code": "path_statements",
- "source": "rustc",
- "message": "path statement with no effect\n`#[warn(path_statements)]` (part of `#[warn(unused)]`) on by default",
- "data": {
- "rendered": "\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: path statement with no effect\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:1452:32\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1452\u001b[0m \u001b[1m\u001b[94m|\u001b[0m lower::saturating::math! { parameter1 };\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(path_statements)]` (part of `#[warn(unused)]`) on by default\n\n"
- }
- }
-] \ No newline at end of file
diff --git a/CascadiaCodeNF.ttf b/dist/fonts/CascadiaCodeNF.ttf
index b589dd0..b589dd0 100644
--- a/CascadiaCodeNF.ttf
+++ b/dist/fonts/CascadiaCodeNF.ttf
Binary files differ
diff --git a/CascadiaCodeNFBold.ttf b/dist/fonts/CascadiaCodeNFBold.ttf
index d7ec691..d7ec691 100644
--- a/CascadiaCodeNFBold.ttf
+++ b/dist/fonts/CascadiaCodeNFBold.ttf
Binary files differ
diff --git a/CascadiaCodeNFBoldItalic.ttf b/dist/fonts/CascadiaCodeNFBoldItalic.ttf
index a6a9927..a6a9927 100644
--- a/CascadiaCodeNFBoldItalic.ttf
+++ b/dist/fonts/CascadiaCodeNFBoldItalic.ttf
Binary files differ
diff --git a/CascadiaCodeNFItalic.ttf b/dist/fonts/CascadiaCodeNFItalic.ttf
index ee552e0..ee552e0 100644
--- a/CascadiaCodeNFItalic.ttf
+++ b/dist/fonts/CascadiaCodeNFItalic.ttf
Binary files differ
diff --git a/inlay b/inlay
deleted file mode 100644
index 6c79328..0000000
--- a/inlay
+++ /dev/null
@@ -1,1163 +0,0 @@
-[
- {
- "position": {
- "line": 89,
- "character": 1
- },
- "label": [
- {
- "value": "fn main",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 84,
- "character": 3
- },
- "end": {
- "line": 84,
- "character": 7
- }
- }
- }
- }
- ],
- "paddingLeft": true,
- "paddingRight": false
- },
- {
- "position": {
- "line": 85,
- "character": 31
- },
- "label": [
- {
- "value": "key:",
- "location": {
- "uri": "file:///home/os/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/env.rs",
- "range": {
- "start": {
- "line": 357,
- "character": 56
- },
- "end": {
- "line": 357,
- "character": 59
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 85,
- "character": 63
- },
- "label": [
- {
- "value": "value:",
- "location": {
- "uri": "file:///home/os/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/env.rs",
- "range": {
- "start": {
- "line": 357,
- "character": 64
- },
- "end": {
- "line": 357,
- "character": 69
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 88,
- "character": 10
- },
- "label": [
- {
- "value": "event_loop:",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 173,
- "character": 20
- },
- "end": {
- "line": 173,
- "character": 30
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 93,
- "character": 21
- },
- "label": [
- {
- "value": "T:",
- "location": {
- "uri": "file:///home/os/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc/src/vec/mod.rs",
- "range": {
- "start": {
- "line": 435,
- "character": 15
- },
- "end": {
- "line": 435,
- "character": 16
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 94,
- "character": 26
- },
- "label": [
- {
- "value": "T:",
- "location": {
- "uri": "file:///home/os/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc/src/vec/mod.rs",
- "range": {
- "start": {
- "line": 435,
- "character": 15
- },
- "end": {
- "line": 435,
- "character": 16
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 164,
- "character": 1
- },
- "label": "impl Hist",
- "paddingLeft": true,
- "paddingRight": false
- },
- {
- "position": {
- "line": 126,
- "character": 5
- },
- "label": [
- {
- "value": "fn push",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 100,
- "character": 7
- },
- "end": {
- "line": 100,
- "character": 11
- }
- }
- }
- }
- ],
- "paddingLeft": true,
- "paddingRight": false
- },
- {
- "position": {
- "line": 101,
- "character": 13
- },
- "label": [
- {
- "value": ": "
- },
- {
- "value": "DiffMatchPatch",
- "location": {
- "uri": "file:///home/os/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diff-match-patch-rs-0.5.1/src/dmp.rs",
- "range": {
- "start": {
- "line": 89,
- "character": 11
- },
- "end": {
- "line": 89,
- "character": 25
- }
- }
- }
- }
- ],
- "kind": 1,
- "textEdits": [
- {
- "range": {
- "start": {
- "line": 101,
- "character": 13
- },
- "end": {
- "line": 101,
- "character": 13
- }
- },
- "newText": ": diff_match_patch_rs::DiffMatchPatch"
- }
- ],
- "paddingLeft": false,
- "paddingRight": false
- },
- {
- "position": {
- "line": 107,
- "character": 18
- },
- "label": [
- {
- "value": "Result",
- "location": {
- "uri": "file:///home/os/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs",
- "range": {
- "start": {
- "line": 556,
- "character": 9
- },
- "end": {
- "line": 556,
- "character": 15
- }
- }
- }
- },
- {
- "value": "<"
- },
- {
- "value": "Vec",
- "location": {
- "uri": "file:///home/os/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc/src/vec/mod.rs",
- "range": {
- "start": {
- "line": 435,
- "character": 11
- },
- "end": {
- "line": 435,
- "character": 14
- }
- }
- }
- },
- {
- "value": "<"
- },
- {
- "value": "Patch",
- "location": {
- "uri": "file:///home/os/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diff-match-patch-rs-0.5.1/src/dmp.rs",
- "range": {
- "start": {
- "line": 2320,
- "character": 11
- },
- "end": {
- "line": 2320,
- "character": 16
- }
- }
- }
- },
- {
- "value": "<u8>>, "
- },
- {
- "value": "Error",
- "location": {
- "uri": "file:///home/os/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diff-match-patch-rs-0.5.1/src/errors.rs",
- "range": {
- "start": {
- "line": 1,
- "character": 9
- },
- "end": {
- "line": 1,
- "character": 14
- }
- }
- }
- },
- {
- "value": ">"
- }
- ],
- "kind": 1,
- "paddingLeft": true,
- "paddingRight": false
- },
- {
- "position": {
- "line": 104,
- "character": 29
- },
- "label": [
- {
- "value": "input:",
- "location": {
- "uri": "file:///home/os/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diff-match-patch-rs-0.5.1/src/dmp.rs",
- "range": {
- "start": {
- "line": 3177,
- "character": 8
- },
- "end": {
- "line": 3177,
- "character": 13
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 105,
- "character": 20
- },
- "label": [
- {
- "value": "old:",
- "location": {
- "uri": "file:///home/os/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diff-match-patch-rs-0.5.1/src/patch_input.rs",
- "range": {
- "start": {
- "line": 9,
- "character": 25
- },
- "end": {
- "line": 9,
- "character": 28
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 106,
- "character": 20
- },
- "label": [
- {
- "value": "new:",
- "location": {
- "uri": "file:///home/os/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diff-match-patch-rs-0.5.1/src/patch_input.rs",
- "range": {
- "start": {
- "line": 9,
- "character": 39
- },
- "end": {
- "line": 9,
- "character": 42
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 112,
- "character": 18
- },
- "label": [
- {
- "value": "Result",
- "location": {
- "uri": "file:///home/os/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs",
- "range": {
- "start": {
- "line": 556,
- "character": 9
- },
- "end": {
- "line": 556,
- "character": 15
- }
- }
- }
- },
- {
- "value": "<"
- },
- {
- "value": "Vec",
- "location": {
- "uri": "file:///home/os/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc/src/vec/mod.rs",
- "range": {
- "start": {
- "line": 435,
- "character": 11
- },
- "end": {
- "line": 435,
- "character": 14
- }
- }
- }
- },
- {
- "value": "<"
- },
- {
- "value": "Patch",
- "location": {
- "uri": "file:///home/os/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diff-match-patch-rs-0.5.1/src/dmp.rs",
- "range": {
- "start": {
- "line": 2320,
- "character": 11
- },
- "end": {
- "line": 2320,
- "character": 16
- }
- }
- }
- },
- {
- "value": "<u8>>, "
- },
- {
- "value": "Error",
- "location": {
- "uri": "file:///home/os/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diff-match-patch-rs-0.5.1/src/errors.rs",
- "range": {
- "start": {
- "line": 1,
- "character": 9
- },
- "end": {
- "line": 1,
- "character": 14
- }
- }
- }
- },
- {
- "value": ">"
- }
- ],
- "kind": 1,
- "paddingLeft": true,
- "paddingRight": false
- },
- {
- "position": {
- "line": 109,
- "character": 29
- },
- "label": [
- {
- "value": "input:",
- "location": {
- "uri": "file:///home/os/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diff-match-patch-rs-0.5.1/src/dmp.rs",
- "range": {
- "start": {
- "line": 3177,
- "character": 8
- },
- "end": {
- "line": 3177,
- "character": 13
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 110,
- "character": 20
- },
- "label": [
- {
- "value": "old:",
- "location": {
- "uri": "file:///home/os/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diff-match-patch-rs-0.5.1/src/patch_input.rs",
- "range": {
- "start": {
- "line": 9,
- "character": 25
- },
- "end": {
- "line": 9,
- "character": 28
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 111,
- "character": 20
- },
- "label": [
- {
- "value": "new:",
- "location": {
- "uri": "file:///home/os/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/diff-match-patch-rs-0.5.1/src/patch_input.rs",
- "range": {
- "start": {
- "line": 9,
- "character": 39
- },
- "end": {
- "line": 9,
- "character": 42
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 127,
- "character": 34
- },
- "label": [
- {
- "value": "T:",
- "location": {
- "uri": "file:///home/os/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/option.rs",
- "range": {
- "start": {
- "line": 599,
- "character": 16
- },
- "end": {
- "line": 599,
- "character": 17
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 128,
- "character": 35
- },
- "label": [
- {
- "value": "move("
- },
- {
- "value": "&mut (*self).redo_history",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 127,
- "character": 18
- },
- "end": {
- "line": 127,
- "character": 22
- }
- }
- }
- },
- {
- "value": ")"
- }
- ],
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 128,
- "character": 37
- },
- "label": [
- {
- "value": ": &"
- },
- {
- "value": "Diff",
- "location": {
- "uri": "file:///home/os/gracilaria/src/text.rs",
- "range": {
- "start": {
- "line": 185,
- "character": 11
- },
- "end": {
- "line": 185,
- "character": 15
- }
- }
- }
- }
- ],
- "kind": 1,
- "textEdits": [
- {
- "range": {
- "start": {
- "line": 128,
- "character": 37
- },
- "end": {
- "line": 128,
- "character": 37
- }
- },
- "newText": ": &Diff"
- }
- ],
- "paddingLeft": false,
- "paddingRight": false
- },
- {
- "position": {
- "line": 130,
- "character": 34
- },
- "label": [
- {
- "value": "T:",
- "location": {
- "uri": "file:///home/os/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/option.rs",
- "range": {
- "start": {
- "line": 599,
- "character": 16
- },
- "end": {
- "line": 599,
- "character": 17
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 131,
- "character": 40
- },
- "label": [
- {
- "value": "move("
- },
- {
- "value": "&mut (*self).history",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 130,
- "character": 18
- },
- "end": {
- "line": 130,
- "character": 22
- }
- }
- }
- },
- {
- "value": ")"
- }
- ],
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 131,
- "character": 42
- },
- "label": [
- {
- "value": ": &"
- },
- {
- "value": "Diff",
- "location": {
- "uri": "file:///home/os/gracilaria/src/text.rs",
- "range": {
- "start": {
- "line": 185,
- "character": 11
- },
- "end": {
- "line": 185,
- "character": 15
- }
- }
- }
- }
- ],
- "kind": 1,
- "textEdits": [
- {
- "range": {
- "start": {
- "line": 131,
- "character": 42
- },
- "end": {
- "line": 131,
- "character": 42
- }
- },
- "newText": ": &Diff"
- }
- ],
- "paddingLeft": false,
- "paddingRight": false
- },
- {
- "position": {
- "line": 139,
- "character": 5
- },
- "label": [
- {
- "value": "fn undo",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 133,
- "character": 11
- },
- "end": {
- "line": 133,
- "character": 15
- }
- }
- }
- }
- ],
- "paddingLeft": true,
- "paddingRight": false
- },
- {
- "position": {
- "line": 135,
- "character": 25
- },
- "label": [
- {
- "value": "move("
- },
- {
- "value": "&mut *t",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 133,
- "character": 27
- },
- "end": {
- "line": 133,
- "character": 28
- }
- }
- }
- },
- {
- "value": ", "
- },
- {
- "value": "&mut (*self).last",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 133,
- "character": 21
- },
- "end": {
- "line": 133,
- "character": 25
- }
- }
- }
- },
- {
- "value": ")"
- }
- ],
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 135,
- "character": 27
- },
- "label": [
- {
- "value": ": "
- },
- {
- "value": "Diff",
- "location": {
- "uri": "file:///home/os/gracilaria/src/text.rs",
- "range": {
- "start": {
- "line": 185,
- "character": 11
- },
- "end": {
- "line": 185,
- "character": 15
- }
- }
- }
- }
- ],
- "kind": 1,
- "textEdits": [
- {
- "range": {
- "start": {
- "line": 135,
- "character": 27
- },
- "end": {
- "line": 135,
- "character": 27
- }
- },
- "newText": ": Diff"
- }
- ],
- "paddingLeft": false,
- "paddingRight": false
- },
- {
- "position": {
- "line": 136,
- "character": 23
- },
- "label": [
- {
- "value": "redo:",
- "location": {
- "uri": "file:///home/os/gracilaria/src/text.rs",
- "range": {
- "start": {
- "line": 198,
- "character": 41
- },
- "end": {
- "line": 198,
- "character": 45
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 145,
- "character": 5
- },
- "label": [
- {
- "value": "fn redo",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 140,
- "character": 11
- },
- "end": {
- "line": 140,
- "character": 15
- }
- }
- }
- }
- ],
- "paddingLeft": true,
- "paddingRight": false
- },
- {
- "position": {
- "line": 141,
- "character": 25
- },
- "label": [
- {
- "value": "move("
- },
- {
- "value": "&mut *t",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 140,
- "character": 27
- },
- "end": {
- "line": 140,
- "character": 28
- }
- }
- }
- },
- {
- "value": ", "
- },
- {
- "value": "&mut (*self).last",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 140,
- "character": 21
- },
- "end": {
- "line": 140,
- "character": 25
- }
- }
- }
- },
- {
- "value": ")"
- }
- ],
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 141,
- "character": 27
- },
- "label": [
- {
- "value": ": "
- },
- {
- "value": "Diff",
- "location": {
- "uri": "file:///home/os/gracilaria/src/text.rs",
- "range": {
- "start": {
- "line": 185,
- "character": 11
- },
- "end": {
- "line": 185,
- "character": 15
- }
- }
- }
- }
- ],
- "kind": 1,
- "textEdits": [
- {
- "range": {
- "start": {
- "line": 141,
- "character": 27
- },
- "end": {
- "line": 141,
- "character": 27
- }
- },
- "newText": ": Diff"
- }
- ],
- "paddingLeft": false,
- "paddingRight": false
- },
- {
- "position": {
- "line": 142,
- "character": 23
- },
- "label": [
- {
- "value": "redo:",
- "location": {
- "uri": "file:///home/os/gracilaria/src/text.rs",
- "range": {
- "start": {
- "line": 198,
- "character": 41
- },
- "end": {
- "line": 198,
- "character": 45
- }
- }
- }
- }
- ],
- "kind": 2,
- "paddingLeft": false,
- "paddingRight": true
- },
- {
- "position": {
- "line": 150,
- "character": 5
- },
- "label": [
- {
- "value": "fn push_if_changed",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 146,
- "character": 11
- },
- "end": {
- "line": 146,
- "character": 26
- }
- }
- }
- }
- ],
- "paddingLeft": true,
- "paddingRight": false
- },
- {
- "position": {
- "line": 155,
- "character": 5
- },
- "label": [
- {
- "value": "fn test_push",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 151,
- "character": 11
- },
- "end": {
- "line": 151,
- "character": 20
- }
- }
- }
- }
- ],
- "paddingLeft": true,
- "paddingRight": false
- },
- {
- "position": {
- "line": 163,
- "character": 5
- },
- "label": [
- {
- "value": "fn record",
- "location": {
- "uri": "file:///home/os/gracilaria/src/main.rs",
- "range": {
- "start": {
- "line": 156,
- "character": 11
- },
- "end": {
- "line": 156,
- "character": 17
- }
- }
- }
- }
- ],
- "paddingLeft": true,
- "paddingRight": false
- }
-] \ No newline at end of file
diff --git a/ra-support b/ra-support
deleted file mode 100644
index 173bf54..0000000
--- a/ra-support
+++ /dev/null
@@ -1,595 +0,0 @@
-InitializeResult {
- capabilities: ServerCapabilities {
- position_encoding: Some(
- PositionEncodingKind(
- "utf-8",
- ),
- ),
- text_document_sync: Some(
- Options(
- TextDocumentSyncOptions {
- open_close: Some(
- true,
- ),
- change: Some(
- Incremental,
- ),
- will_save: None,
- will_save_wait_until: None,
- save: Some(
- SaveOptions(
- SaveOptions {
- include_text: None,
- },
- ),
- ),
- },
- ),
- ),
- selection_range_provider: Some(
- Simple(
- true,
- ),
- ),
- hover_provider: Some(
- Simple(
- true,
- ),
- ),
- completion_provider: Some(
- CompletionOptions {
- resolve_provider: Some(
- true,
- ),
- trigger_characters: Some(
- [
- ":",
- ".",
- "'",
- "(",
- ],
- ),
- all_commit_characters: None,
- work_done_progress_options: WorkDoneProgressOptions {
- work_done_progress: None,
- },
- completion_item: Some(
- CompletionOptionsCompletionItem {
- label_details_support: Some(
- true,
- ),
- },
- ),
- },
- ),
- signature_help_provider: Some(
- SignatureHelpOptions {
- trigger_characters: Some(
- [
- "(",
- ",",
- "<",
- ],
- ),
- retrigger_characters: None,
- work_done_progress_options: WorkDoneProgressOptions {
- work_done_progress: None,
- },
- },
- ),
- definition_provider: Some(
- Left(
- true,
- ),
- ),
- type_definition_provider: Some(
- Simple(
- true,
- ),
- ),
- implementation_provider: Some(
- Simple(
- true,
- ),
- ),
- references_provider: Some(
- Left(
- true,
- ),
- ),
- document_highlight_provider: Some(
- Left(
- true,
- ),
- ),
- document_symbol_provider: Some(
- Left(
- true,
- ),
- ),
- workspace_symbol_provider: Some(
- Left(
- true,
- ),
- ),
- code_action_provider: Some(
- Options(
- CodeActionOptions {
- code_action_kinds: Some(
- [
- CodeActionKind(
- "",
- ),
- CodeActionKind(
- "quickfix",
- ),
- CodeActionKind(
- "refactor",
- ),
- CodeActionKind(
- "refactor.extract",
- ),
- CodeActionKind(
- "refactor.inline",
- ),
- CodeActionKind(
- "refactor.rewrite",
- ),
- ],
- ),
- work_done_progress_options: WorkDoneProgressOptions {
- work_done_progress: None,
- },
- resolve_provider: Some(
- true,
- ),
- },
- ),
- ),
- code_lens_provider: Some(
- CodeLensOptions {
- resolve_provider: Some(
- true,
- ),
- },
- ),
- document_formatting_provider: Some(
- Left(
- true,
- ),
- ),
- document_range_formatting_provider: Some(
- Left(
- false,
- ),
- ),
- document_on_type_formatting_provider: Some(
- DocumentOnTypeFormattingOptions {
- first_trigger_character: ".",
- more_trigger_character: Some(
- [
- "=",
- "<",
- ">",
- "{",
- "(",
- "|",
- "+",
- ],
- ),
- },
- ),
- rename_provider: Some(
- Right(
- RenameOptions {
- prepare_provider: Some(
- true,
- ),
- work_done_progress_options: WorkDoneProgressOptions {
- work_done_progress: None,
- },
- },
- ),
- ),
- document_link_provider: None,
- color_provider: None,
- folding_range_provider: Some(
- Simple(
- true,
- ),
- ),
- declaration_provider: Some(
- Simple(
- true,
- ),
- ),
- execute_command_provider: None,
- workspace: Some(
- WorkspaceServerCapabilities {
- workspace_folders: Some(
- WorkspaceFoldersServerCapabilities {
- supported: Some(
- true,
- ),
- change_notifications: Some(
- Left(
- true,
- ),
- ),
- },
- ),
- file_operations: Some(
- WorkspaceFileOperationsServerCapabilities {
- did_create: None,
- will_create: None,
- did_rename: None,
- will_rename: Some(
- FileOperationRegistrationOptions {
- filters: [
- FileOperationFilter {
- scheme: Some(
- "file",
- ),
- pattern: FileOperationPattern {
- glob: "**/*.rs",
- matches: Some(
- File,
- ),
- options: None,
- },
- },
- FileOperationFilter {
- scheme: Some(
- "file",
- ),
- pattern: FileOperationPattern {
- glob: "**",
- matches: Some(
- Folder,
- ),
- options: None,
- },
- },
- ],
- },
- ),
- did_delete: None,
- will_delete: None,
- },
- ),
- },
- ),
- call_hierarchy_provider: Some(
- Simple(
- true,
- ),
- ),
- semantic_tokens_provider: Some(
- SemanticTokensOptions(
- SemanticTokensOptions {
- work_done_progress_options: WorkDoneProgressOptions {
- work_done_progress: None,
- },
- legend: SemanticTokensLegend {
- token_types: [
- SemanticTokenType(
- "comment",
- ),
- SemanticTokenType(
- "decorator",
- ),
- SemanticTokenType(
- "enumMember",
- ),
- SemanticTokenType(
- "enum",
- ),
- SemanticTokenType(
- "function",
- ),
- SemanticTokenType(
- "interface",
- ),
- SemanticTokenType(
- "keyword",
- ),
- SemanticTokenType(
- "macro",
- ),
- SemanticTokenType(
- "method",
- ),
- SemanticTokenType(
- "namespace",
- ),
- SemanticTokenType(
- "number",
- ),
- SemanticTokenType(
- "operator",
- ),
- SemanticTokenType(
- "parameter",
- ),
- SemanticTokenType(
- "property",
- ),
- SemanticTokenType(
- "string",
- ),
- SemanticTokenType(
- "struct",
- ),
- SemanticTokenType(
- "typeParameter",
- ),
- SemanticTokenType(
- "variable",
- ),
- SemanticTokenType(
- "type",
- ),
- SemanticTokenType(
- "angle",
- ),
- SemanticTokenType(
- "arithmetic",
- ),
- SemanticTokenType(
- "attributeBracket",
- ),
- SemanticTokenType(
- "attribute",
- ),
- SemanticTokenType(
- "bitwise",
- ),
- SemanticTokenType(
- "boolean",
- ),
- SemanticTokenType(
- "brace",
- ),
- SemanticTokenType(
- "bracket",
- ),
- SemanticTokenType(
- "builtinAttribute",
- ),
- SemanticTokenType(
- "builtinType",
- ),
- SemanticTokenType(
- "character",
- ),
- SemanticTokenType(
- "colon",
- ),
- SemanticTokenType(
- "comma",
- ),
- SemanticTokenType(
- "comparison",
- ),
- SemanticTokenType(
- "constParameter",
- ),
- SemanticTokenType(
- "const",
- ),
- SemanticTokenType(
- "deriveHelper",
- ),
- SemanticTokenType(
- "derive",
- ),
- SemanticTokenType(
- "dot",
- ),
- SemanticTokenType(
- "escapeSequence",
- ),
- SemanticTokenType(
- "formatSpecifier",
- ),
- SemanticTokenType(
- "generic",
- ),
- SemanticTokenType(
- "invalidEscapeSequence",
- ),
- SemanticTokenType(
- "label",
- ),
- SemanticTokenType(
- "lifetime",
- ),
- SemanticTokenType(
- "logical",
- ),
- SemanticTokenType(
- "macroBang",
- ),
- SemanticTokenType(
- "negation",
- ),
- SemanticTokenType(
- "parenthesis",
- ),
- SemanticTokenType(
- "procMacro",
- ),
- SemanticTokenType(
- "punctuation",
- ),
- SemanticTokenType(
- "selfKeyword",
- ),
- SemanticTokenType(
- "selfTypeKeyword",
- ),
- SemanticTokenType(
- "semicolon",
- ),
- SemanticTokenType(
- "static",
- ),
- SemanticTokenType(
- "toolModule",
- ),
- SemanticTokenType(
- "typeAlias",
- ),
- SemanticTokenType(
- "union",
- ),
- SemanticTokenType(
- "unresolvedReference",
- ),
- ],
- token_modifiers: [
- SemanticTokenModifier(
- "async",
- ),
- SemanticTokenModifier(
- "documentation",
- ),
- SemanticTokenModifier(
- "declaration",
- ),
- SemanticTokenModifier(
- "static",
- ),
- SemanticTokenModifier(
- "defaultLibrary",
- ),
- SemanticTokenModifier(
- "deprecated",
- ),
- SemanticTokenModifier(
- "associated",
- ),
- SemanticTokenModifier(
- "attribute",
- ),
- SemanticTokenModifier(
- "callable",
- ),
- SemanticTokenModifier(
- "constant",
- ),
- SemanticTokenModifier(
- "consuming",
- ),
- SemanticTokenModifier(
- "controlFlow",
- ),
- SemanticTokenModifier(
- "crateRoot",
- ),
- SemanticTokenModifier(
- "injected",
- ),
- SemanticTokenModifier(
- "intraDocLink",
- ),
- SemanticTokenModifier(
- "library",
- ),
- SemanticTokenModifier(
- "macro",
- ),
- SemanticTokenModifier(
- "mutable",
- ),
- SemanticTokenModifier(
- "procMacro",
- ),
- SemanticTokenModifier(
- "public",
- ),
- SemanticTokenModifier(
- "reference",
- ),
- SemanticTokenModifier(
- "trait",
- ),
- SemanticTokenModifier(
- "unsafe",
- ),
- ],
- },
- range: Some(
- true,
- ),
- full: Some(
- Delta {
- delta: Some(
- true,
- ),
- },
- ),
- },
- ),
- ),
- moniker_provider: None,
- linked_editing_range_provider: None,
- inline_value_provider: None,
- inlay_hint_provider: Some(
- Right(
- Options(
- InlayHintOptions {
- work_done_progress_options: WorkDoneProgressOptions {
- work_done_progress: None,
- },
- resolve_provider: Some(
- true,
- ),
- },
- ),
- ),
- ),
- diagnostic_provider: Some(
- Options(
- DiagnosticOptions {
- identifier: Some(
- "rust-analyzer",
- ),
- inter_file_dependencies: true,
- workspace_diagnostics: false,
- work_done_progress_options: WorkDoneProgressOptions {
- work_done_progress: None,
- },
- },
- ),
- ),
- experimental: Some(
- Object {
- "externalDocs": Bool(true),
- "hoverRange": Bool(true),
- "joinLines": Bool(true),
- "matchingBrace": Bool(true),
- "moveItem": Bool(true),
- "onEnter": Bool(true),
- "openCargoToml": Bool(true),
- "parentModule": Bool(true),
- "childModules": Bool(true),
- "runnables": Object {
- "kinds": Array [
- String("cargo"),
- ],
- },
- "ssr": Bool(true),
- "workspaceSymbolScopeKindFiltering": Bool(true),
- },
- ),
- },
- server_info: Some(
- ServerInfo {
- name: "rust-analyzer",
- version: Some(
- "0.0.0 (8bffb99c3f 2025-12-15)",
- ),
- },
- ),
-} \ No newline at end of file
diff --git a/src/main.rs b/src/main.rs
index 92dc5ac..d3b9214 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -369,12 +369,12 @@ fn handle(key: Key, mut text: TextArea) -> TextArea {
text
}
pub static FONT: LazyLock<FontRef<'static>> = LazyLock::new(|| {
- FontRef::from_index(&include_bytes!("../CascadiaCodeNF.ttf")[..], 0)
+ FontRef::from_index(&include_bytes!("../dist/fonts/CascadiaCodeNF.ttf")[..], 0)
.unwrap()
});
pub static IFONT: LazyLock<FontRef<'static>> = LazyLock::new(|| {
FontRef::from_index(
- &include_bytes!("../CascadiaCodeNFItalic.ttf")[..],
+ &include_bytes!("../dist/fonts/CascadiaCodeNFItalic.ttf")[..],
0,
)
.unwrap()
@@ -382,7 +382,7 @@ pub static IFONT: LazyLock<FontRef<'static>> = LazyLock::new(|| {
pub static BIFONT: LazyLock<FontRef<'static>> = LazyLock::new(|| {
FontRef::from_index(
- &include_bytes!("../CascadiaCodeNFBoldItalic.ttf")[..],
+ &include_bytes!("../dist/fonts/CascadiaCodeNFBoldItalic.ttf")[..],
0,
)
.unwrap()
@@ -390,7 +390,7 @@ pub static BIFONT: LazyLock<FontRef<'static>> = LazyLock::new(|| {
pub static BFONT: LazyLock<FontRef<'static>> = LazyLock::new(|| {
FontRef::from_index(
- &include_bytes!("../CascadiaCodeNFBold.ttf")[..],
+ &include_bytes!("../dist/fonts/CascadiaCodeNFBold.ttf")[..],
0,
)
.unwrap()