Created
November 30, 2010 16:46
-
-
Save uasi/721952 to your computer and use it in GitHub Desktop.
Vim formula for Homebrew (EDIT: recent versions of official Homebrew distribution includes one)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Vim < Formula | |
homepage 'http://www.vim.org/' | |
url 'ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2' | |
head 'https://vim.googlecode.com/hg/' | |
sha256 '5c5d5d6e07f1bbc49b6fe3906ff8a7e39b049928b68195b38e3e3d347100221d' | |
version '7.3.682' | |
def features; %w(tiny small normal big huge) end | |
def interp; %w(lua mzscheme perl python python3 tcl ruby) end | |
def options | |
[ | |
["--with-features=TYPE", "tiny, small, normal, big or huge (default: normal)"], | |
["--enable-interp=NAME,...", "lua, mzscheme, perl, python, python3, tcl and/or ruby"] | |
] | |
end | |
def patches | |
patch_level = version.to_s.split('.').last.to_i | |
{'p0' => (1..patch_level).map { |i| 'ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.%03d' % i }} | |
end | |
def install | |
def opt_val(opt) | |
opt.sub(/.*?=(.*)$/, "\\1") rescue nil | |
end | |
opts = [] | |
feature = opt_val(ARGV.find {|s| s =~ /^--with-features=/ }) || "normal" | |
# For compatibility and convenience {{{ | |
feature_shorthand = features.find {|f| ARGV.include? "--#{f}" } | |
feature = feature_shorthand if feature_shorthand | |
# }}} | |
opts << "--with-features=#{feature}" | |
interps = opt_val(ARGV.find {|s| s =~ /^--enable-interp=/ }) || "" | |
interps = interps.split(/,/) | |
# For compatibility and convenience {{{ | |
interp.each do |i| | |
if ARGV.include? "--#{i}" | |
interps << i | |
end | |
end | |
# }}} | |
interps.uniq! | |
interps.each do |i| | |
opts << "--enable-#{i}interp=yes" | |
opts << "--with-lua-prefix=/usr/local" if i == "lua" | |
end | |
system "./configure", | |
"--disable-gui", | |
"--without-x", | |
"--disable-gpm", | |
"--disable-nls", | |
"--with-tlib=ncurses", | |
"--enable-multibyte", | |
"--prefix=#{prefix}", | |
"--mandir=#{man}", | |
*opts | |
system "make install" | |
end | |
end |
Vim is updated more often than MacVim from my understanding at least.
I didn't know you could do that. Thanks.
…On Apr 20, 2012, at 1:09 PM, "Michael D. Hall" ***@***.*** wrote:
This is just for my understanding. Why not just use MacVim? I run MacVim on OS X in my terminal with a simple alias, but also get the option to run it as a full windowed app.
# in my .bashrc
alias vim="mvim -v"
alias vi="mvim -v"
Is there something I'm missing about MacVim vs Vim?
Thanks.
---
Reply to this email directly or view it on GitHub:
https://gist.github.com/721952
@uasi ここの version
、一旦 to_s
しないとエラー出るようになってるっぽいですよ。
patch_level = version.split('.').last.to_i
latest version of brew does not allow split directly, use to_s like in this: https://gist.github.com/3423922
I have problem installing vim with anaconda Python. All plugin with Python code are not working. Is there a way to circumvent this problem ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is just for my understanding. Why not just use MacVim? I run MacVim on OS X in my terminal with a simple alias, but also get the option to run it as a full windowed app.
in my .bashrc
alias vim="mvim -v"
alias vi="mvim -v"
Is there something I'm missing about MacVim vs Vim?
Thanks.