mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 05:15:00 +00:00
Make Suggestion
fields public
This commit is contained in:
parent
ba3913df8c
commit
f7cba4cec4
1 changed files with 3 additions and 3 deletions
|
@ -58,9 +58,9 @@ impl SuggestionPoint {
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
pub struct Suggestion<T> {
|
pub struct Suggestion<T> {
|
||||||
position: T,
|
pub position: T,
|
||||||
text: Rope,
|
pub text: Rope,
|
||||||
highlight_style: HighlightStyle,
|
pub highlight_style: HighlightStyle,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct SuggestionMap(Mutex<SuggestionSnapshot>);
|
pub struct SuggestionMap(Mutex<SuggestionSnapshot>);
|
||||||
|
|
Loading…
Reference in a new issue