From b12f315a06831d4143db460e2b4bbb3b6374dcbd Mon Sep 17 00:00:00 2001 From: Koichi Murase Date: Tue, 1 Feb 2022 20:02:56 +0900 Subject: [PATCH] themes/rana: Normalize indentation --- themes/rana/rana.theme.sh | 72 +++++++++++++++++++-------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/themes/rana/rana.theme.sh b/themes/rana/rana.theme.sh index 81c3afb..37a15d5 100644 --- a/themes/rana/rana.theme.sh +++ b/themes/rana/rana.theme.sh @@ -119,53 +119,53 @@ safe_battery_charge() { } prompt_git() { - local s=''; - local branchName=''; + local s=''; + local branchName=''; - # Check if the current directory is in a Git repository. - if [ $(git rev-parse --is-inside-work-tree &>/dev/null; echo "${?}") == '0' ]; then + # Check if the current directory is in a Git repository. + if [ $(git rev-parse --is-inside-work-tree &>/dev/null; echo "${?}") == '0' ]; then - # check if the current directory is in .git before running git checks - if [ "$(git rev-parse --is-inside-git-dir 2> /dev/null)" == 'false' ]; then + # check if the current directory is in .git before running git checks + if [ "$(git rev-parse --is-inside-git-dir 2> /dev/null)" == 'false' ]; then - # Ensure the index is up to date. - git update-index --really-refresh -q &>/dev/null; + # Ensure the index is up to date. + git update-index --really-refresh -q &>/dev/null; - # Check for uncommitted changes in the index. - if ! git diff --quiet --ignore-submodules --cached; then - s+='+'; - fi; + # Check for uncommitted changes in the index. + if ! git diff --quiet --ignore-submodules --cached; then + s+='+'; + fi; - # Check for unstaged changes. - if ! git diff-files --quiet --ignore-submodules --; then - s+='!'; - fi; + # Check for unstaged changes. + if ! git diff-files --quiet --ignore-submodules --; then + s+='!'; + fi; - # Check for untracked files. - if [ -n "$(git ls-files --others --exclude-standard)" ]; then - s+='?'; - fi; + # Check for untracked files. + if [ -n "$(git ls-files --others --exclude-standard)" ]; then + s+='?'; + fi; - # Check for stashed files. - if git rev-parse --verify refs/stash &>/dev/null; then - s+='$'; - fi; + # Check for stashed files. + if git rev-parse --verify refs/stash &>/dev/null; then + s+='$'; + fi; - fi; + fi; - # Get the short symbolic ref. - # If HEAD isn’t a symbolic ref, get the short SHA for the latest commit - # Otherwise, just give up. - branchName="$(git symbolic-ref --quiet --short HEAD 2> /dev/null || \ - git rev-parse --short HEAD 2> /dev/null || \ - echo '(unknown)')"; + # Get the short symbolic ref. + # If HEAD isn’t a symbolic ref, get the short SHA for the latest commit + # Otherwise, just give up. + branchName="$(git symbolic-ref --quiet --short HEAD 2> /dev/null || \ + git rev-parse --short HEAD 2> /dev/null || \ + echo '(unknown)')"; - [ -n "${s}" ] && s=" [${s}]"; + [ -n "${s}" ] && s=" [${s}]"; - echo -e "${1}${branchName}${_omb_prompt_teal}${s}"; - else - return; - fi; + echo -e "${1}${branchName}${_omb_prompt_teal}${s}"; + else + return; + fi; } # -------------------------------------------------------------- PROMPT OUTPUT