aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_hg_prompt.fish
Commit message (Collapse)AuthorAge
* hg_prompt: Use string match -q instead of redirectionGravatar Fabian Homborg2016-01-08
|
* hg prompt: Throw away `string match` inputGravatar Fabian Homborg2015-12-31
| | | | This would print redundant characters
* hg prompt: Fix indentationGravatar Fabian Homborg2015-12-31
|
* hg prompt: Make display slightly nicerGravatar Fabian Homborg2015-12-31
| | | | | | The "/" between branch and bookmark might be mistaken for a path. Parens (like the git prompt) make it look a bit more like a unit.
* Optimize hg promptGravatar Fabian Homborg2015-12-31
| | | | Mainly replace hg calls since python is slow to start.
* __fish_hg_prompt: Clean up a bitGravatar Fabian Homborg2015-09-27
| | | | | | | | | `sort -u | uniq` is completely redundant, calling grep for every status-pair is unnecessary, `contains` doesn't take the word "in" as special. None of these are critical and there's basically no performance benefit since this function is utterly dominated by hg calls.
* __fish_hg_prompt: Remove explicit root check againGravatar Fabian Homborg2015-09-27
| | | | | | This doesn't add anything except slowing the function down by about 33%. Checking for a branch is just as good and that is displayed in the prompt anyway.
* __fish_hg_prompt: Only show current bookmarkGravatar Fabian Homborg2015-09-26
|
* __fish_hg_prompt: Add bookmark supportGravatar Fabian Homborg2015-09-26
|
* __fish_hg_prompt: Bail early if not in a hg repoGravatar Fabian Homborg2015-09-26
|
* Vcs prompt: Break if vcs isn't installedGravatar Fabian Homborg2015-09-06
| | | | | Prevents an annoying error message. Fixes #2363.
* Add function to ouput hg branch and status for a promptGravatar LoveIsGrief2015-01-30
This is an adaptation of terlar's git prompt output