Compare commits

..

No commits in common. "0e1ecfedaa91bb20ac73318286de92a1bd1ab81d" and "cc63840fcbaaf14fc2185c4e4a3334429707f5da" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -1 +0,0 @@
alias grepgit='git ls-files -z | xargs -0 grep --color=auto -H'

2
e
View File

@ -8,7 +8,7 @@ def get_server_name(path)
path = File.expand_path(path)
while path != "/"
dirname = File.dirname(path)
if File.exist?(File.join(dirname, "project.vim"))
if File.exists?(File.join(dirname, "project.vim"))
if dirname =~ %r{([^/]+)/([^/]+)/*$}
sn = "#{$2}(#{$1})"
else