osx - Patch Vim with the breakindent patch on OS X with Homebrew -


i'm on os x 10.7 vim 7.3.

i'd install the breakindent patch.

here's way on linux apt-get: compiling vim breakindent patch.

how do this? suppose involve building vim via homebrew (which ok me).

  1. use mercurial latest vim source code:

    $ hg clone https://vim.googlecode.com/hg/ vim $ cd vim 
  2. grab patch.

  3. apply patch indicated in linked thread:

    $ patch -p1 < /path/to/breakindent.patch 
  4. configure vim options need (python/ruby support, custom location, etc.):

    $ ./configure --with-features=huge <other options> 
  5. build , install:

    $ sudo make && make install 

Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c++ - Using OpenSSL in a multi-threaded application -

All overlapping substrings matching a java regex -