mirror of
https://github.com/Llewellynvdm/starship.git
synced 2025-01-26 00:28:26 +00:00
feat(git_branch): add remote branch name if different than local branch (#1915)
* feat(git_branch): add remote branch name if different than local branch * feat(git_branch): Implement a more customizable remote branch * feat(git_branch): Use more explicit API function name * feat(git_branch): Remove forgotten draft documentation * feat(git_branch): Set less verbose defaults * feat(git_branch): Handle case to always display remote * feat(git_branch): Fix error in rebase operation
This commit is contained in:
parent
cf297ff25d
commit
688f1b3457
@ -1025,6 +1025,7 @@ The `git_branch` module shows the active branch of the repo in your current dire
|
|||||||
|
|
||||||
| Option | Default | Description |
|
| Option | Default | Description |
|
||||||
| ------------------- | -------------------------------- | ---------------------------------------------------------------------------------------- |
|
| ------------------- | -------------------------------- | ---------------------------------------------------------------------------------------- |
|
||||||
|
| `always_show_remote`| `false` | Shows the remote tracking branch name, even if it is equal to the local branch name. |
|
||||||
| `format` | `"on [$symbol$branch]($style) "` | The format for the module. Use `"$branch"` to refer to the current branch name. |
|
| `format` | `"on [$symbol$branch]($style) "` | The format for the module. Use `"$branch"` to refer to the current branch name. |
|
||||||
| `symbol` | `" "` | A format string representing the symbol of git branch. |
|
| `symbol` | `" "` | A format string representing the symbol of git branch. |
|
||||||
| `style` | `"bold purple"` | The style for the module. |
|
| `style` | `"bold purple"` | The style for the module. |
|
||||||
@ -1038,6 +1039,7 @@ The `git_branch` module shows the active branch of the repo in your current dire
|
|||||||
| Variable | Example | Description |
|
| Variable | Example | Description |
|
||||||
| -------- | -------- | ---------------------------------------------------------------------------------------------------- |
|
| -------- | -------- | ---------------------------------------------------------------------------------------------------- |
|
||||||
| branch | `master` | The current branch name, falls back to `HEAD` if there's no current branch (e.g. git detached HEAD). |
|
| branch | `master` | The current branch name, falls back to `HEAD` if there's no current branch (e.g. git detached HEAD). |
|
||||||
|
| remote | `master` | The remote branch name. |
|
||||||
| symbol | | Mirrors the value of option `symbol` |
|
| symbol | | Mirrors the value of option `symbol` |
|
||||||
| style\* | | Mirrors the value of option `style` |
|
| style\* | | Mirrors the value of option `style` |
|
||||||
|
|
||||||
|
@ -10,18 +10,20 @@ pub struct GitBranchConfig<'a> {
|
|||||||
pub truncation_length: i64,
|
pub truncation_length: i64,
|
||||||
pub truncation_symbol: &'a str,
|
pub truncation_symbol: &'a str,
|
||||||
pub only_attached: bool,
|
pub only_attached: bool,
|
||||||
|
pub always_show_remote: bool,
|
||||||
pub disabled: bool,
|
pub disabled: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> RootModuleConfig<'a> for GitBranchConfig<'a> {
|
impl<'a> RootModuleConfig<'a> for GitBranchConfig<'a> {
|
||||||
fn new() -> Self {
|
fn new() -> Self {
|
||||||
GitBranchConfig {
|
GitBranchConfig {
|
||||||
format: "on [$symbol$branch]($style) ",
|
format: "on [$symbol$branch]($style)(:[$remote]($style)) ",
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
style: "bold purple",
|
style: "bold purple",
|
||||||
truncation_length: std::i64::MAX,
|
truncation_length: std::i64::MAX,
|
||||||
truncation_symbol: "…",
|
truncation_symbol: "…",
|
||||||
only_attached: false,
|
only_attached: false,
|
||||||
|
always_show_remote: false,
|
||||||
disabled: false,
|
disabled: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -171,11 +171,12 @@ impl<'a> Context<'a> {
|
|||||||
.as_ref()
|
.as_ref()
|
||||||
.and_then(|repo| repo.workdir().map(Path::to_path_buf));
|
.and_then(|repo| repo.workdir().map(Path::to_path_buf));
|
||||||
let state = repository.as_ref().map(|repo| repo.state());
|
let state = repository.as_ref().map(|repo| repo.state());
|
||||||
|
let remote = repository.as_ref().and_then(|repo| get_remote_branch(repo));
|
||||||
Ok(Repo {
|
Ok(Repo {
|
||||||
branch,
|
branch,
|
||||||
root,
|
root,
|
||||||
state,
|
state,
|
||||||
|
remote,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -310,6 +311,9 @@ pub struct Repo {
|
|||||||
|
|
||||||
/// State
|
/// State
|
||||||
pub state: Option<RepositoryState>,
|
pub state: Option<RepositoryState>,
|
||||||
|
|
||||||
|
/// Remote branch name
|
||||||
|
pub remote: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
// A struct of Criteria which will be used to verify current PathBuf is
|
// A struct of Criteria which will be used to verify current PathBuf is
|
||||||
@ -376,6 +380,21 @@ fn get_current_branch(repository: &Repository) -> Option<String> {
|
|||||||
shorthand.map(std::string::ToString::to_string)
|
shorthand.map(std::string::ToString::to_string)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn get_remote_branch(repository: &Repository) -> Option<String> {
|
||||||
|
if let Ok(head) = repository.head() {
|
||||||
|
if let Some(local_branch_ref) = head.name() {
|
||||||
|
let remote_ref = match repository.branch_upstream_name(local_branch_ref) {
|
||||||
|
Ok(remote_ref) => remote_ref.as_str()?.to_owned(),
|
||||||
|
Err(_) => return None,
|
||||||
|
};
|
||||||
|
|
||||||
|
let remote = remote_ref.split('/').last().map(|r| r.to_owned())?;
|
||||||
|
return Some(remote);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
None
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq)]
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
||||||
pub enum Shell {
|
pub enum Shell {
|
||||||
Bash,
|
Bash,
|
||||||
|
@ -35,16 +35,30 @@ pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
|||||||
};
|
};
|
||||||
|
|
||||||
let branch_name = repo.branch.as_ref()?;
|
let branch_name = repo.branch.as_ref()?;
|
||||||
|
|
||||||
let mut graphemes: Vec<&str> = branch_name.graphemes(true).collect();
|
let mut graphemes: Vec<&str> = branch_name.graphemes(true).collect();
|
||||||
let trunc_len = len.min(graphemes.len());
|
|
||||||
|
|
||||||
|
let mut remote_graphemes: Vec<&str> = Vec::new();
|
||||||
|
if let Some(remote_branch) = repo.remote.as_ref() {
|
||||||
|
remote_graphemes = remote_branch.graphemes(true).collect();
|
||||||
|
}
|
||||||
|
|
||||||
|
let trunc_len = len.min(graphemes.len());
|
||||||
if trunc_len < graphemes.len() {
|
if trunc_len < graphemes.len() {
|
||||||
// The truncation symbol should only be added if we truncate
|
// The truncation symbol should only be added if we truncate
|
||||||
graphemes[trunc_len] = truncation_symbol;
|
graphemes[trunc_len] = truncation_symbol;
|
||||||
graphemes.truncate(trunc_len + 1)
|
graphemes.truncate(trunc_len + 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let trunc_len = len.min(remote_graphemes.len());
|
||||||
|
if trunc_len < remote_graphemes.len() {
|
||||||
|
// The truncation symbol should only be added if we truncate
|
||||||
|
remote_graphemes[trunc_len] = truncation_symbol;
|
||||||
|
remote_graphemes.truncate(trunc_len + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
let show_remote = config.always_show_remote
|
||||||
|
|| (!graphemes.eq(&remote_graphemes) && !remote_graphemes.is_empty());
|
||||||
|
|
||||||
let parsed = StringFormatter::new(config.format).and_then(|formatter| {
|
let parsed = StringFormatter::new(config.format).and_then(|formatter| {
|
||||||
formatter
|
formatter
|
||||||
.map_meta(|var, _| match var {
|
.map_meta(|var, _| match var {
|
||||||
@ -57,6 +71,13 @@ pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
|||||||
})
|
})
|
||||||
.map(|variable| match variable {
|
.map(|variable| match variable {
|
||||||
"branch" => Some(Ok(graphemes.concat())),
|
"branch" => Some(Ok(graphemes.concat())),
|
||||||
|
"remote" => {
|
||||||
|
if show_remote {
|
||||||
|
Some(Ok(remote_graphemes.concat()))
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
_ => None,
|
_ => None,
|
||||||
})
|
})
|
||||||
.parse(None)
|
.parse(None)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user