We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dc960e commit ce1ff9bCopy full SHA for ce1ff9b
Rust/Symbol List.tmPreferences
@@ -9,7 +9,8 @@
9
entity.name.module.rust,
10
entity.name.struct.rust,
11
entity.name.trait.rust,
12
- entity.name.union.rust
+ entity.name.union.rust,
13
+ meta.enum.rust storage.type - meta.struct
14
</string>
15
<key>settings</key>
16
<dict>
Rust/tests/symbols/syntax_test_symbols.rs
@@ -30,3 +30,16 @@ type MyType;
30
31
union Union {}
32
// @@@@@ definition
33
+
34
35
+enum AnotherEnum {
36
+// @@@@@@@@@@@ definition
37
+ Foo,
38
+// @@@ definition
39
+ Bar {
40
41
+ toggle: bool,
42
+ },
43
+ Baz(MyEnum),
44
45
+}
0 commit comments