Skip to content

Commit

Permalink
Fix theme function declaration style
Browse files Browse the repository at this point in the history
  • Loading branch information
sorin-ionescu committed Nov 12, 2014
1 parent 9f82926 commit 82710c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/prompt/functions/prompt_minimal_setup
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# http://i.imgur.com/zLZNK.png
#

function +vi-git-status() {
function +vi-git_status {
# Check for untracked files or updated submodules since vcs_info does not.
if [[ -n $(git ls-files --other --exclude-standard 2> /dev/null) ]]; then
hook_com[unstaged]='%F{red}●%f'
Expand Down Expand Up @@ -40,7 +40,7 @@ function prompt_minimal_setup {
zstyle ':vcs_info:*' formats ' - [%b%c%u]'
zstyle ':vcs_info:*' actionformats " - [%b%c%u|%F{cyan}%a%f]"
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b|%F{cyan}%r%f'
zstyle ':vcs_info:git*+set-message:*' hooks git-status
zstyle ':vcs_info:git*+set-message:*' hooks git_status

# Define prompts.
PROMPT='%2~${vcs_info_msg_0_} » '
Expand Down
4 changes: 2 additions & 2 deletions modules/prompt/functions/prompt_peepcode_setup
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# http://i.imgur.com/LhgmW.png
#

function +vi-git-status() {
function +vi-git_status {
# Check for untracked files or updated submodules since vcs_info does not.
if [[ -n $(git ls-files --other --exclude-standard 2> /dev/null) ]]; then
hook_com[unstaged]=' %F{8}✗%f'
Expand Down Expand Up @@ -45,7 +45,7 @@ function prompt_peepcode_setup {
zstyle ':vcs_info:*' unstagedstr ' %F{8}✗%f'
zstyle ':vcs_info:*' formats ' %F{8}%b%f %F{white}%.7i%f%u'
zstyle ':vcs_info:*' actionformats ' %F{8}%b%f %F{white}%.7i%f +%a%u'
zstyle ':vcs_info:git*+set-message:*' hooks git-status
zstyle ':vcs_info:git*+set-message:*' hooks git_status

# Set ruby-info parameters.
zstyle ':prezto:module:ruby:info:version' format ' %F{white}%v%f'
Expand Down

0 comments on commit 82710c2

Please sign in to comment.