On 2012-09-11, Bee wrote:
> It is for vim-app, not MacVim, so this is what I used in my .gvimrc:
>
> if has("mac")
> if has("gui_macvim")
> if has("patch260") " Snow Leopard, previously bottom left
The preceding line should be:
if v:version > 703 || v:version == 703 && has("patch260") " Snow Leopard, previously bottom left
since patch numbers are recycled with each Vim version.
> winpos 0 23
> endif
> else " vim-app
> set lines=39
> let $PATH = ':/opt/local/bin:/opt/local/sbin:' . $PATH
> endif
> endif
Regards,
Gary
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
Tuesday, September 11, 2012
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment