mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-10 09:20:41 +01:00
feat(plugins): Add helper function to get current mercurial bookmark (#4970)
Add a new function to get the current mercurial bookmark which can be used in the theme prompts for example.
This commit is contained in:
@@ -63,3 +63,9 @@ function hgic() {
|
|||||||
function hgoc() {
|
function hgoc() {
|
||||||
hg outgoing "$@" | grep "changeset" | wc -l
|
hg outgoing "$@" | grep "changeset" | wc -l
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function hg_get_bookmark_name() {
|
||||||
|
if [ $(in_hg) ]; then
|
||||||
|
echo $(hg id -B)
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user