diff options
| author | Young-Flash <dongyang@apache.org> | 2024-03-21 17:56:49 +0800 |
|---|---|---|
| committer | Young-Flash <dongyang@apache.org> | 2024-03-25 19:55:19 +0800 |
| commit | d81148a0095e97f00720d6bbeee098130b304696 (patch) | |
| tree | e9e2892765432ad7b5db303e7c5fe1825734a135 | |
| parent | 6f6b03f9de783f91456080b3f6adc8d92903c1b0 (diff) | |
| download | rust-d81148a0095e97f00720d6bbeee098130b304696.tar.gz rust-d81148a0095e97f00720d6bbeee098130b304696.zip | |
expose config for hover struct field display
| -rw-r--r-- | crates/rust-analyzer/src/config.rs | 3 | ||||
| -rw-r--r-- | docs/user/generated_config.adoc | 5 | ||||
| -rw-r--r-- | editors/code/package.json | 9 |
3 files changed, 17 insertions, 0 deletions
diff --git a/crates/rust-analyzer/src/config.rs b/crates/rust-analyzer/src/config.rs index e6b60f69065..a5545e79847 100644 --- a/crates/rust-analyzer/src/config.rs +++ b/crates/rust-analyzer/src/config.rs @@ -375,6 +375,8 @@ config_data! { /// How to render the size information in a memory layout hover. hover_memoryLayout_size: Option<MemoryLayoutHoverRenderKindDef> = "\"both\"", + /// How many fields of a struct to display when hovering a struct. + hover_show_structFields: Option<usize> = "null", /// How many associated items of a trait to display when hovering a trait. hover_show_traitAssocItems: Option<usize> = "null", @@ -1690,6 +1692,7 @@ impl Config { }, keywords: self.data.hover_documentation_keywords_enable, max_trait_assoc_items_count: self.data.hover_show_traitAssocItems, + max_struct_field_count: self.data.hover_show_structFields, } } diff --git a/docs/user/generated_config.adoc b/docs/user/generated_config.adoc index 5e782b78311..c4024f6d282 100644 --- a/docs/user/generated_config.adoc +++ b/docs/user/generated_config.adoc @@ -520,6 +520,11 @@ How to render the offset information in a memory layout hover. -- How to render the size information in a memory layout hover. -- +[[rust-analyzer.hover.show.structFields]]rust-analyzer.hover.show.structFields (default: `null`):: ++ +-- +How many fields of a struct to display when hovering a struct. +-- [[rust-analyzer.hover.show.traitAssocItems]]rust-analyzer.hover.show.traitAssocItems (default: `null`):: + -- diff --git a/editors/code/package.json b/editors/code/package.json index c34b8e25de0..c3ea1ceeb69 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -1144,6 +1144,15 @@ } ] }, + "rust-analyzer.hover.show.structFields": { + "markdownDescription": "How many fields of a struct to display when hovering a struct.", + "default": null, + "type": [ + "null", + "integer" + ], + "minimum": 0 + }, "rust-analyzer.hover.show.traitAssocItems": { "markdownDescription": "How many associated items of a trait to display when hovering a trait.", "default": null, |
