From 395f9021ace5404e031eaafde255a198b72c16bc Mon Sep 17 00:00:00 2001 From: Benjamin Sago Date: Mon, 1 May 2017 22:43:28 +0100 Subject: [PATCH] Move these two imports down --- src/fs/file.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/fs/file.rs b/src/fs/file.rs index b8c8c5d..c375aab 100644 --- a/src/fs/file.rs +++ b/src/fs/file.rs @@ -1,7 +1,5 @@ //! Files, and methods and fields to access their metadata. -use std::ascii::AsciiExt; -use std::env::current_dir; use std::fs; use std::io::Error as IOError; use std::io::Result as IOResult; @@ -14,6 +12,7 @@ use fs::fields as f; #[cfg(any(target_os = "macos", target_os = "linux"))] use std::os::unix::fs::FileTypeExt; + /// Constant table copied from https://doc.rust-lang.org/src/std/sys/unix/ext/fs.rs.html#11-259 /// which is currently unstable and lacks vision for stabilization, /// see https://github.com/rust-lang/rust/issues/27712 @@ -344,6 +343,8 @@ impl<'dir> File<'dir> { /// directory, so will not work if this file has just been passed in on /// the command line. pub fn git_status(&self) -> f::Git { + use std::env::current_dir; + match self.dir { None => f::Git { staged: f::GitStatus::NotModified, unstaged: f::GitStatus::NotModified }, Some(d) => { @@ -421,6 +422,8 @@ impl<'a> AsRef> for File<'a> { /// against a pre-compiled list of extensions which are known to only exist /// within ASCII, so it's alright. fn ext(path: &Path) -> Option { + use std::ascii::AsciiExt; + let name = match path.file_name() { Some(f) => f.to_string_lossy().to_string(), None => return None,