Skip to content

Commit 97ec323

Browse files
committed
Rebase
1 parent 071cd43 commit 97ec323

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

helix-view/src/document.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,8 @@ impl Document {
530530
encoding,
531531
text,
532532
selections: HashMap::default(),
533+
inlay_hints: HashMap::default(),
534+
inlay_hints_oudated: false,
533535
indent_style: DEFAULT_INDENT,
534536
line_ending: DEFAULT_LINE_ENDING,
535537
restore_cursor: false,
@@ -540,12 +542,14 @@ impl Document {
540542
diagnostics: Vec::new(),
541543
version: 0,
542544
history: Cell::new(History::default()),
543-
savepoint: None,
545+
savepoints: Vec::new(),
546+
last_saved_time: SystemTime::now(),
544547
last_saved_revision: 0,
545548
modified_since_accessed: false,
546549
language_server: None,
547550
diff_handle: None,
548551
config,
552+
version_control_head: None,
549553
document_type: DocumentType::Refactor { matches, line_map },
550554
}
551555
}

0 commit comments

Comments
 (0)