Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtomjhj committed Nov 26, 2023
1 parent 1f1ed9e commit 61cadad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ For providing highlights which reflect the current internal state of coq, we pro
interface UpdateHighlightsNotification {
//Document idefinfier
uri: Uri;
// The ranges of lines of code that were parsed by the server
parsedRange: vscode.Range[];
// The ranges of lines of code currently being processed by the server
processingRange: vscode.Range[];
// The ranges of lines of code that have been processed by the server
processedRange: vscode.Range[];
}
```

The parsed and processed range correspond to the ranges of lines in the document that have the coresponding type.
The processing and processed range correspond to the ranges of lines in the document that have the coresponding type.
By default, we display the processed lines in the VSCode gutter.

## Goal view
Expand Down

0 comments on commit 61cadad

Please sign in to comment.