2 个稳定版本

使用旧的 Rust 2015

2.0.0 2020年6月3日
1.0.0 2017年10月20日

#13 in #shortener

Download history • Rust 包仓库 37/week @ 2024-03-11 • Rust 包仓库 34/week @ 2024-03-18 • Rust 包仓库 28/week @ 2024-03-25 • Rust 包仓库 85/week @ 2024-04-01 • Rust 包仓库 10/week @ 2024-04-08 • Rust 包仓库 12/week @ 2024-04-15 • Rust 包仓库 33/week @ 2024-04-22 • Rust 包仓库 15/week @ 2024-04-29 • Rust 包仓库 13/week @ 2024-05-06 • Rust 包仓库 18/week @ 2024-05-13 • Rust 包仓库 8/week @ 2024-05-20 • Rust 包仓库 26/week @ 2024-05-27 • Rust 包仓库 21/week @ 2024-06-03 • Rust 包仓库 11/week @ 2024-06-10 • Rust 包仓库 11/week @ 2024-06-17 • Rust 包仓库 12/week @ 2024-06-24 • Rust 包仓库

57 每月下载量
用于 4 crates

MIT 许可证

5KB
75 lines

最好的 README 文件可能是 测试用例

#[test]
fn it_works() {
    assert_eq!(tico("~"), "~");
    assert_eq!(tico("/"), "/");
    assert_eq!(tico("/home/hugopeixoto/work/personal/tico"), "/h/h/w/p/tico");
    assert_eq!(tico("~/work/personal/tico"), "~/w/p/tico");
    assert_eq!(tico("~/work/personal/tico/"), "~/w/p/t/");
    assert_eq!(tico("~/work/ééé/tico"), "~/w/é/tico");
}

安装

$ cargo install --git git@github.com:portocodes/tico.git

使用

以下是在 fish_prompt.fish 中使用它的示例,以替换 prompt_pwd

set-l cwd$cyan(tico(echo$PWD |sed-e"s|^$HOME|~|"))

依赖

~65–520KB