Skip to content

Commit

Permalink
Merge pull request #694 from tomtomjhj/docs
Browse files Browse the repository at this point in the history
Update docs
  • Loading branch information
rtetley authored Nov 27, 2023
2 parents 1f1ed9e + 61cadad commit ad1fa3f
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 ad1fa3f

Please sign in to comment.