aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/mod.rs
diff options
context:
space:
mode:
authorKirawi2021-08-25 01:04:05 +0000
committerGitHub2021-08-25 01:04:05 +0000
commitb99db7c6875f74a15dcfb0cfdb3334c837d4aab1 (patch)
tree38656c3884fc7e49234af6daf826a7fb70748b9d /helix-term/src/ui/mod.rs
parentbf5b9a9f354135933d7970863cf81e5a36585d03 (diff)
Move path util functions from helix-term to helix-core (#650)
Diffstat (limited to 'helix-term/src/ui/mod.rs')
-rw-r--r--helix-term/src/ui/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs
index 390f1a66..e4871312 100644
--- a/helix-term/src/ui/mod.rs
+++ b/helix-term/src/ui/mod.rs
@@ -208,7 +208,7 @@ pub mod completers {
use std::path::Path;
let is_tilde = input.starts_with('~') && input.len() == 1;
- let path = helix_view::document::expand_tilde(Path::new(input));
+ let path = helix_core::path::expand_tilde(Path::new(input));
let (dir, file_name) = if input.ends_with('/') {
(path, None)