Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-view/src/document.rs')
| -rw-r--r-- | helix-view/src/document.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs index b0044d26..ec20bb75 100644 --- a/helix-view/src/document.rs +++ b/helix-view/src/document.rs @@ -196,7 +196,7 @@ pub struct Document { pub(crate) diagnostics: Vec<Diagnostic>, pub(crate) language_servers: HashMap<LanguageServerName, Arc<Client>>, - diff_handle: Option<DiffHandle>, + pub diff_handle: Option<DiffHandle>, version_control_head: Option<Arc<ArcSwap<Box<str>>>>, // when document was used for most-recent-used buffer picker |