diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/macvim.rb | 4 |
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 |
