diff options
author | Jan Hrastnik | 2021-03-07 18:41:49 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-16 14:03:10 +0000 |
commit | 3869d7713e2dfd2621f7e5a656ebac0b13d10542 (patch) | |
tree | be0d1e7fff8b21e6b0f181d2a10532f6eae3df50 /helix-view | |
parent | b738ae1bc7f42ce6756ee5d79307e416f86ef491 (diff) |
added goto functions in helix-term
Diffstat (limited to 'helix-view')
-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 9ec70023..82258bde 100644 --- a/helix-view/src/document.rs +++ b/helix-view/src/document.rs @@ -19,7 +19,7 @@ pub enum Mode { pub struct Document { pub state: State, // rope + selection /// File path on disk. - pub path: Option<PathBuf>, // pub for testing + path: Option<PathBuf>, /// Current editing mode. pub mode: Mode, |