From 0a53bcf2c378e9ef98221ca8340c30c40696d69b Mon Sep 17 00:00:00 2001 From: JessThrysoee Date: Fri, 13 May 2011 21:11:46 +0200 Subject: macvin: add --enable-clipboard option So yanking to OSX clipboard works when running in Terminal.app. Signed-off-by: Adam Vandenberg --- Library/Formula/macvim.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Library/Formula/macvim.rb') diff --git a/Library/Formula/macvim.rb b/Library/Formula/macvim.rb index dba4fa25c..6fb44d5f2 100644 --- a/Library/Formula/macvim.rb +++ b/Library/Formula/macvim.rb @@ -13,7 +13,8 @@ class Macvim < Formula ["--custom-icons", "Try to generate custom document icons."], ["--with-cscope", "Build with Cscope support."], ["--with-envycoder", "Build with Envy Code R Bold font."], - ["--override-system-vim", "Override system vim"] + ["--override-system-vim", "Override system vim."], + ["--enable-clipboard", "Enable System clipboard handling in the terminal."] ] end @@ -41,6 +42,7 @@ class Macvim < Formula "--enable-tclinterp"] args << "--enable-cscope" if ARGV.include? "--with-cscope" + args << "--enable-clipboard" if ARGV.include? "--enable-clipboard" system "./configure", *args -- cgit v1.2.3