aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJessThrysoee2011-05-13 21:11:46 +0200
committerAdam Vandenberg2011-06-14 14:09:33 -0700
commit0a53bcf2c378e9ef98221ca8340c30c40696d69b (patch)
tree008ebaf1550606df63df3e8aec1601369b9a31c5
parent90ac2bd662dccf4e726a5d61ca8c72da2d0d8312 (diff)
downloadhomebrew-0a53bcf2c378e9ef98221ca8340c30c40696d69b.tar.bz2
macvin: add --enable-clipboard option
So yanking to OSX clipboard works when running in Terminal.app. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/macvim.rb4
1 files changed, 3 insertions, 1 deletions
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