aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirawi2022-02-15 01:22:55 +0000
committerGitHub2022-02-15 01:22:55 +0000
commit23907a063c43f06f120d80a6ec0b6748881236a1 (patch)
treecaab2dc654fa25f86c1acdb21111570216d488a2
parent3a83a764e3a03ecf463c8fcfc141e48ed2d807ab (diff)
use PathBuf::to_string_lossy() instead of to_str() (#1655)
-rw-r--r--helix-term/src/commands.rs12
-rw-r--r--helix-term/src/ui/mod.rs10
2 files changed, 8 insertions, 14 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 677943e8..5e3e1c43 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -1792,9 +1792,8 @@ fn global_search(cx: &mut Context) {
all_matches,
move |(_line_num, path)| {
let relative_path = helix_core::path::get_relative_path(path)
- .to_str()
- .unwrap()
- .to_owned();
+ .to_string_lossy()
+ .into_owned();
if current_path.as_ref().map(|p| p == path).unwrap_or(false) {
format!("{} (*)", relative_path).into()
} else {
@@ -3536,9 +3535,8 @@ fn workspace_symbol_picker(cx: &mut Context) {
(&symbol.name).into()
} else {
let relative_path = helix_core::path::get_relative_path(path.as_path())
- .to_str()
- .unwrap()
- .to_owned();
+ .to_string_lossy()
+ .into_owned();
format!("{} ({})", &symbol.name, relative_path).into()
}
},
@@ -4209,8 +4207,8 @@ fn goto_impl(
.map(|path| path.to_path_buf())
.unwrap_or(path)
})
+ .map(|path| Cow::from(path.to_string_lossy().into_owned()))
.ok()
- .and_then(|path| path.to_str().map(|path| path.to_owned().into()))
})
.flatten()
.unwrap_or_else(|| location.uri.as_str().into());
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs
index 49f7b2fa..edff0583 100644
--- a/helix-term/src/ui/mod.rs
+++ b/helix-term/src/ui/mod.rs
@@ -155,11 +155,7 @@ pub fn file_picker(root: PathBuf, config: &helix_view::editor::Config) -> FilePi
files,
move |path: &PathBuf| {
// format_fn
- path.strip_prefix(&root)
- .unwrap_or(path)
- .to_str()
- .unwrap()
- .into()
+ path.strip_prefix(&root).unwrap_or(path).to_string_lossy()
},
move |cx, path: &PathBuf, action| {
cx.editor
@@ -288,7 +284,7 @@ pub mod completers {
} else {
let file_name = path
.file_name()
- .map(|file| file.to_str().unwrap().to_owned());
+ .and_then(|file| file.to_str().map(|path| path.to_owned()));
let path = match path.parent() {
Some(path) if !path.as_os_str().is_empty() => path.to_path_buf(),
@@ -331,7 +327,7 @@ pub mod completers {
path.push("");
}
- let path = path.to_str().unwrap().to_owned();
+ let path = path.to_str()?.to_owned();
Some((end.clone(), Cow::from(path)))
})
}) // TODO: unwrap or skip