wincd 2.0.0

WSL 下一步到位的 Windows 路径导航工具 — 粘贴 Windows 路径,直接 cd
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! wincd — WSL 下一步到位的 Windows 路径导航工具

pub mod cli;
pub mod clipboard;
pub mod commands;
pub mod converter;
pub mod resolver;
pub mod shell;
pub mod ui;

pub use cli::{run, Cli, Command};
pub use converter::{ConvertError, ConvertResult, Converter, Direction};
pub use shell::Shell;