Skip to content

Commit c73b8c0

Browse files
committed
feat: add CursorEventList
1 parent 9262d7f commit c73b8c0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

proto/cursor.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ service Cursor {
1212
rpc Attach (stream cursor.CursorPosition) returns (stream cursor.CursorEvent);
1313
}
1414

15+
// A message representing a list of cursor events.
16+
message CursorEventList {
17+
// A vector of cursor events.
18+
repeated CursorEvent cursors = 1;
19+
}
20+
1521
// A message representing a position in a buffer.
1622
message RowCol {
1723
// The row.

0 commit comments

Comments
 (0)