Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-view/src/editor.rs')
| -rw-r--r-- | helix-view/src/editor.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 174190e5..aa9a1153 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -1073,6 +1073,7 @@ pub struct Editor { redraw_timer: Pin<Box<Sleep>>, last_motion: Option<Motion>, pub last_completion: Option<CompleteAction>, + pub last_cwd: Option<PathBuf>, pub exit_code: i32, @@ -1206,6 +1207,7 @@ impl Editor { redraw_timer: Box::pin(sleep(Duration::MAX)), last_motion: None, last_completion: None, + last_cwd: None, config, auto_pairs, exit_code: 0, |