aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/document.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-08-24 00:56:09 +0000
committerBlaž Hrastnik2021-08-24 00:56:09 +0000
commit1d45f50781f34bccf29a3e4f576cc48651038b09 (patch)
tree4308bba5e4efa8f865a5d363afcf0bf58d9f8a1e /helix-view/src/document.rs
parente1c9f132637bcf2406c7c1403ab3d8dfd882369e (diff)
fix: Don't internally use relative paths in the buffer picker
Fixes #619
Diffstat (limited to 'helix-view/src/document.rs')
-rw-r--r--helix-view/src/document.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs
index ff0c8bf4..b38a94ab 100644
--- a/helix-view/src/document.rs
+++ b/helix-view/src/document.rs
@@ -398,6 +398,14 @@ pub fn canonicalize_path(path: &Path) -> std::io::Result<PathBuf> {
Ok(normalize_path(&path))
}
+pub fn relative_path(mut path: &Path) -> PathBuf {
+ let cwdir = std::env::current_dir().expect("couldn't determine current directory");
+ if path.is_absolute() {
+ path = path.strip_prefix(cwdir).unwrap_or(path)
+ };
+ fold_home_dir(path)
+}
+
use helix_lsp::lsp;
use url::Url;
@@ -936,15 +944,7 @@ impl Document {
}
pub fn relative_path(&self) -> Option<PathBuf> {
- let cwdir = std::env::current_dir().expect("couldn't determine current directory");
-
- self.path.as_ref().map(|path| {
- let mut path = path.as_path();
- if path.is_absolute() {
- path = path.strip_prefix(cwdir).unwrap_or(path)
- };
- fold_home_dir(path)
- })
+ self.path.as_deref().map(relative_path)
}
// pub fn slice<R>(&self, range: R) -> RopeSlice where R: RangeBounds {