find-in-path 1.0.0

Initialize a LaTex project inside a folder instantly
Documentation
1
2
3
4
5
6
7
8
9
10
//! Contains the FindInPath implementation for &Path 

use crate::prelude::*;
use std::path::Path;

impl FindInPath for &Path {
    fn find_in_path(&self) -> Option<std::path::PathBuf> {
        self.to_string_lossy().as_ref().find_in_path()
    }
}