Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: ZSH vcs_info are not updated if alias is used
- X-seq: zsh-workers 44245
- From: Roman Perepelitsa <roman.perepelitsa@xxxxxxxxx>
- To: Goetz Epperlein <lony_@xxxxxx>
- Subject: Re: ZSH vcs_info are not updated if alias is used
- Date: Tue, 23 Apr 2019 12:39:43 +0200
- Cc: zsh-workers@xxxxxxx
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=MdvBCr0ihICofLDp7ZeJsV2bjAfD8Limi7whtL52yws=; b=kkQ1HG7xOZAhZooVg/eWMT35V8fMsVXnwyAZHqzMnh5wu2AUD4MlcQEEQ/cWaoRjoA UNlQDvFQvhEwalK03yI0ZPchhttwk4O32aczVHrkWvePuHZsq+LHArQ1lLnKpeOXbGiP NWxX66BQBFhOFVTzhPFwTjaNPLSydO068lucUdzkrv6SRDmSw9SbhL6qSbeNDcDfitSL kLgxFFfbnchgejavuD0wgbkgeOm0NynYGnUc4LcmD/GhrC8QwRBcvbq2hMWqZdf7XT6S ixD2Nt1dVQNgV5LUHlKif+9lQHpXSJ8yUU/SZ8MtHdZuf+mMN9aLEZm9CI0Wy8QCPNa5 81VA==
- In-reply-to: <CAN=4vMpeRD+xD1sSE3thN9VSM3cgTJM8KXg16X95Fusdj7kiCg@mail.gmail.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <CABUUM4CtwVRDjXWcNOzN7cN3eq9SeB9O=4xL=kbYFB_9x9QpYA@mail.gmail.com> <CAN=4vMpeRD+xD1sSE3thN9VSM3cgTJM8KXg16X95Fusdj7kiCg@mail.gmail.com>
On Tue, Apr 23, 2019 at 11:03 AM Roman Perepelitsa
roman.perepelitsa@xxxxxxxxx <http://mailto:roman.perepelitsa@xxxxxxxxx>
wrote:
The problem is here:
> https://github.com/lony/dotFiles/blob/f5f1691499e7a95a3a2e4f1e0970f0ae46f4b40e/ansible/roles/dotfiles/src/bash_zsh/.zsh_oh-my-zsh/themes/lony.zsh-theme#L69
> .
>
I should’ve mentioned how you can fix it. The simplest fix is to add your
git aliases to the linked code. This, however, won’t fix all corner cases.
It might be possible to expand aliases there but it still won’t for
functions and scripts that call git.
An alternative solution is to call vcs_info from precmd hook on every
prompt. This will be correct but slow.
To solve the performance problem you can replace vcs_info with gitstatus
<https://github.com/romkatv/gitstatus>, which is over 10x faster. There is
an example
<https://github.com/romkatv/gitstatus/blob/master/zsh-prompt-example.zsh>
you can follow.
Powerlevel10k <https://github.com/romkatv/powerlevel10k> provides a turnkey
solution. It’s already integrated with gitstatus, it’s very fast, and very
flexible. You can configure Powerlevel10k to look like your current scheme,
if you like.
Roman.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author