Browse Source

fix(git): disable locally `ksharrays`

Fixes #12321
Carlo Sala 4 weeks ago
parent
commit
114b58ed4e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      lib/git.zsh

+ 2 - 0
lib/git.zsh

@@ -40,12 +40,14 @@ function _omz_git_prompt_info() {
 # Enable async prompt by default unless the setting is at false / no
 if zstyle -T ':omz:alpha:lib:git' async-prompt; then
   function git_prompt_info() {
+    setopt localoptions noksharrays
     if [[ -n "$_OMZ_ASYNC_OUTPUT[_omz_git_prompt_info]" ]]; then
       echo -n "$_OMZ_ASYNC_OUTPUT[_omz_git_prompt_info]"
     fi
   }
 
   function git_prompt_status() {
+    setopt localoptions noksharrays
     if [[ -n "$_OMZ_ASYNC_OUTPUT[_omz_git_prompt_status]" ]]; then
       echo -n "$_OMZ_ASYNC_OUTPUT[_omz_git_prompt_status]"
     fi