Skip to content

Commit

Permalink
Renames main plugin function to svn_prompt_info
Browse files Browse the repository at this point in the history
  • Loading branch information
bric3 committed Jan 10, 2014
1 parent f66ab7f commit ca129bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/svn-fast-info/svn-fast-info.plugin.zsh
Expand Up @@ -6,8 +6,10 @@
# Use `svn_prompt_info` method to enquire the svn data.
# It's faster because his efficient use of svn (single svn call) which saves a lot on a huge codebase
# It displays the current status of the local files (added, deleted, modified, replaced, or else...)
#
# Use as a drop-in replacement of the svn plugin not as complementary plugin

function svn_fast_info() {
function svn_prompt_info() {
local info
info=$(svn info 2>&1) || return 1; # capture stdout and stderr
local repo_need_upgrade=$(svn_repo_need_upgrade $info)
Expand Down

0 comments on commit ca129bb

Please sign in to comment.