mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 04:44:57 +00:00
More robust highlighting
This commit is contained in:
parent
010075be6a
commit
8f5330cb07
4 changed files with 38 additions and 3 deletions
|
@ -84,6 +84,14 @@ pub struct FindMatchingBraceParams {
|
|||
pub offsets: Vec<Position>,
|
||||
}
|
||||
|
||||
pub enum DecorationsRequest {}
|
||||
|
||||
impl Request for DecorationsRequest {
|
||||
type Params = TextDocumentIdentifier;
|
||||
type Result = Vec<Decoration>;
|
||||
const METHOD: &'static str = "m/decorationsRequest";
|
||||
}
|
||||
|
||||
pub enum PublishDecorations {}
|
||||
|
||||
impl Notification for PublishDecorations {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue