aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJunegunn Choi2014-03-31 01:07:39 +0900
committerMike McQuaid2014-03-30 11:29:21 -0500
commit5cf8728d7bcf98cc1ac58745f2cc752bde6b37bc (patch)
tree74e03ce9bbacec89f23b07141a003b13d41b7cce /Library/Formula
parentee3e0d9f90674dcbe280b2fbe0a493aa42b848f1 (diff)
downloadhomebrew-5cf8728d7bcf98cc1ac58745f2cc752bde6b37bc.tar.bz2
fzf 0.8.2
Closes #27992. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fzf.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/Library/Formula/fzf.rb b/Library/Formula/fzf.rb
index f5b8f3835..4018599de 100644
--- a/Library/Formula/fzf.rb
+++ b/Library/Formula/fzf.rb
@@ -2,17 +2,21 @@ require "formula"
class Fzf < Formula
homepage "https://github.com/junegunn/fzf"
- url "https://github.com/junegunn/fzf/archive/0.8.1.tar.gz"
- sha1 "c77827b6a1ca60eb8273ab20eb97c1f78c375452"
+ url "https://github.com/junegunn/fzf/archive/0.8.2.tar.gz"
+ sha1 "b1f497f4bdedcc317425fcc6daeefed5df03eb0f"
def install
prefix.install "install", "fzf", "fzf-completion.bash", "fzf-completion.zsh"
bin.install_symlink prefix/"fzf"
+ (prefix/"plugin").install "plugin/fzf.vim"
end
def caveats; <<-EOS.undent
To install useful keybindings and fuzzy completion:
#{prefix}/install
+
+ To use fzf in Vim, add the following line to your .vimrc:
+ set rtp+=#{prefix}
EOS
end