aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-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