Skip to content

Commit 1536d07

Browse files
committed
some TODOs related to precomposed unicode on MacOS (#364)
1 parent c333149 commit 1536d07

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

git-repository/src/open.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ impl crate::ThreadSafeRepository {
138138
worktree_dir = Some(git_dir.parent().expect("parent is always available").to_owned());
139139
}
140140
}
141+
// TODO: make core.precomposeUnicode available as well.
141142
let use_multi_pack_index = config_bool(&config, "core.multiPackIndex", true);
142143
let repo_format_version = config
143144
.value::<Integer>("core", None, "repositoryFormatVersion")

git-repository/src/repository/location.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ impl crate::Repository {
99
self.work_tree.as_deref()
1010
}
1111

12-
// TODO: tests
12+
// TODO: tests, respect precomposeUnicode
1313
/// The directory of the binary path of the current process.
1414
pub fn install_dir(&self) -> std::io::Result<std::path::PathBuf> {
1515
std::env::current_exe().and_then(|exe| {

0 commit comments

Comments
 (0)