File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -530,6 +530,8 @@ impl Document {
530
530
encoding,
531
531
text,
532
532
selections : HashMap :: default ( ) ,
533
+ inlay_hints : HashMap :: default ( ) ,
534
+ inlay_hints_oudated : false ,
533
535
indent_style : DEFAULT_INDENT ,
534
536
line_ending : DEFAULT_LINE_ENDING ,
535
537
restore_cursor : false ,
@@ -540,12 +542,14 @@ impl Document {
540
542
diagnostics : Vec :: new ( ) ,
541
543
version : 0 ,
542
544
history : Cell :: new ( History :: default ( ) ) ,
543
- savepoint : None ,
545
+ savepoints : Vec :: new ( ) ,
546
+ last_saved_time : SystemTime :: now ( ) ,
544
547
last_saved_revision : 0 ,
545
548
modified_since_accessed : false ,
546
549
language_server : None ,
547
550
diff_handle : None ,
548
551
config,
552
+ version_control_head : None ,
549
553
document_type : DocumentType :: Refactor { matches, line_map } ,
550
554
}
551
555
}
You can’t perform that action at this time.
0 commit comments