1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-11-28 07:46:28 +00:00

Add README.md badges (#5)

This commit is contained in:
Matan Kushner 2019-04-15 14:38:45 -04:00 committed by GitHub
parent d2cda32c87
commit ab5490bea6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
<h3 align="center">Starship ✨🚀</h3> <h3 align="center">Starship ✨🚀</h3>
<p align="center">The cross-shell prompt for astronauts.</p> <p align="center">The cross-shell prompt for astronauts.</p>
<p align="center">
<a href="https://dev.azure.com/starship-control/starship/_build"><img src="https://badgen.net/azure-pipelines/starship-control/starship/Starship%20Test%20Suite" alt="Azure Pipelines Build Status"></a>
<a href="https://discord.gg/Zpek73"><img src="https://badgen.net/badge/chat/on%20discord/7289da" alt="Chat on Discord"></a>
</p>
--- ---

View File

@ -61,7 +61,7 @@ fn get_repo_root(repo: &Repository) -> &Path {
} }
/// Contract the root component of a path /// Contract the root component of a path
/// ///
/// Replaces the `top_level_path` in a given `full_path` with the provided /// Replaces the `top_level_path` in a given `full_path` with the provided
/// `top_level_replacement`. /// `top_level_replacement`.
fn contract_path(full_path: &Path, top_level_path: &Path, top_level_replacement: &str) -> String { fn contract_path(full_path: &Path, top_level_path: &Path, top_level_replacement: &str) -> String {
@ -86,7 +86,7 @@ fn contract_path(full_path: &Path, top_level_path: &Path, top_level_replacement:
} }
/// Truncate a path to only have a set number of path components /// Truncate a path to only have a set number of path components
/// ///
/// Will truncate a path to only show the last `length` components in a path. /// Will truncate a path to only show the last `length` components in a path.
/// If a length of `0` is provided, the path will not be truncated. /// If a length of `0` is provided, the path will not be truncated.
fn truncate(dir_string: String, length: usize) -> String { fn truncate(dir_string: String, length: usize) -> String {