Skip to content

Commit efba91c

Browse files
committed
nvim: add Mark type
Signed-off-by: Koichi Shiraishi <[email protected]>
1 parent fd99d70 commit efba91c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

nvim/types.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,14 @@ type ExtMark struct {
581581
Col int
582582
}
583583

584+
// Mark represents a mark.
585+
type Mark struct {
586+
Row int `msgpack:",array"`
587+
Col int
588+
Buffer Buffer
589+
BufferName string
590+
}
591+
584592
// OptionInfo represents a option information.
585593
type OptionInfo struct {
586594
// Name is the name of the option (like 'filetype').

0 commit comments

Comments
 (0)