aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/mod.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-03-29 06:21:48 +0000
committerBlaž Hrastnik2021-03-29 06:21:48 +0000
commit5c2d2fda213164fe2cba005f28cee263486587ed (patch)
tree5f064949d7ff87c00580a8f20707811d52c8c70b /helix-term/src/ui/mod.rs
parentaefafc25cd235183261efa2d59265855e0e992e1 (diff)
Wire up opening in splits via pickers.
Diffstat (limited to 'helix-term/src/ui/mod.rs')
-rw-r--r--helix-term/src/ui/mod.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs
index 2d282867..8cb82fcb 100644
--- a/helix-term/src/ui/mod.rs
+++ b/helix-term/src/ui/mod.rs
@@ -103,10 +103,9 @@ pub fn file_picker(root: &str) -> Picker<PathBuf> {
// format_fn
path.strip_prefix("./").unwrap().to_str().unwrap().into()
},
- move |editor: &mut Editor, path: &PathBuf| {
- use helix_view::editor::Action;
+ move |editor: &mut Editor, path: &PathBuf, action| {
let document_id = editor
- .open(path.into(), Action::Replace)
+ .open(path.into(), action)
.expect("editor.open failed");
},
)