Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
instructions for installing macvim
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  13 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Yvonne Watkins  
View profile  
 More options Mar 19 2012, 5:35 pm
From: Yvonne Watkins <ehr...@gmail.com>
Date: Mon, 19 Mar 2012 14:35:28 -0700 (PDT)
Local: Mon, Mar 19 2012 5:35 pm
Subject: instructions for installing macvim
I'm going to preface this post with: I'm not a complete idiot, just a PC user trying to hop the fence to the mac world.

I'm attempting to install MacVim on my Mac (Snow Leopard) I downloaded alexloveltroy-macvim zip file, and then unzipped it, but could not find a package file (*.pkg) within that file. (Normally, for my other mac apps, I have been double clicking a pkg file and then dragging the program icon into the application folder.)

Then I tried down loading and untarring the .tar file. No .pkg file in that build either.

Then on one of the forums I read that I can just place the macvim.app file in the path and update my path with this new file, and then I could be good to go, but I can't find the macvim.app file either.

Can someone please provide the exact location within the build where the pkg file lives?
Or please provide more detailed instructions on how to install?

Thanks,
n00b - Yvonne


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Cįssio Marques  
View profile  
 More options Mar 20 2012, 12:07 pm
From: Cįssio Marques <cassio...@gmail.com>
Date: Tue, 20 Mar 2012 13:07:13 -0300
Local: Tues, Mar 20 2012 12:07 pm
Subject: Re: instructions for installing macvim

- Download this file: LEGACY-OSX-10_6-MacVim-snapshot-62.tbz (https://github.com/downloads/b4winckler/macvim/LEGACY-OSX-10_6-MacVim...)
- Extract it
- Copy the MacVim file to your Applications folder
- cp the mvim file to /usr/bin

That's it, works pretty well for me, also on Snow Leopard.  

--  
Cįssio Marques


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Adimir Colen  
View profile  
 More options Mar 20 2012, 1:14 pm
From: Adimir Colen <adimirco...@gmail.com>
Date: Tue, 20 Mar 2012 14:14:49 -0300
Local: Tues, Mar 20 2012 1:14 pm
Subject: Re: instructions for installing macvim

You can use the "homebrew" to install several programs on the mac, and theninstall https://github.com/mxcl/homebrew/wiki/installation MacVim, "brew installMacVim" I recommend this
--
Adimir Colen
@adimircolen

On 20/03/2012, at 13:07, Cįssio Marques wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Darcy  
View profile  
 More options Mar 20 2012, 1:21 pm
From: Darcy <darcypar...@gmail.com>
Date: Tue, 20 Mar 2012 10:21:33 -0700 (PDT)
Local: Tues, Mar 20 2012 1:21 pm
Subject: Re: instructions for installing macvim
I find it easier to use brew.

1) Install brew. http://mxcl.github.com/homebrew/

1.5) To make binaries installed by brew take precedence over other
binaries on your OS, make sure /usr/local/bin is at the front of your
path.  You can do this by adding this to your bashrc.

# Move (or Add) /usr/local/bin to the front of the path
[ -d /usr/local/bin ] && export PATH=$(echo /usr/local/bin:$PATH | sed
-e 's;:/usr/local/bin;;')

2) `brew install macvim` from a command line.  This installs to `/usr/
local`.  You can keep all of your brew installed formula (aka
applications) up to date with `brew upgrade` or just upgrade macvim
with `brew upgrade macvim`.

3) Create environment variables and aliases for macvim in your bashrc.
For example:

vim='mvim -v'
alias vim="${vim}"
alias gvim="mvim"
export EDITOR="${vim} -g --remote-tab-silent"
export GIT_EDITOR="${vim} -g -f"

Note: I create the vim environment variable because I use it multiple
times...
Note: the terminal version of vim is also included with macvim.  It's
newer than the vim that comes with OS X, and it includes support for
ruby and python plugins.
Note: `mvim` is added to /usr/local/bin by brew...

Darcy

On Mar 20, 12:07 pm, Cįssio Marques <cassio...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Stanislaw Pusep  
View profile  
 More options Mar 20 2012, 2:02 pm
From: Stanislaw Pusep <creakt...@gmail.com>
Date: Tue, 20 Mar 2012 15:02:12 -0300
Local: Tues, Mar 20 2012 2:02 pm
Subject: Re: instructions for installing macvim

Install MacPorts: http://www.macports.org/install.php
Then do "sudo port install MacVim +cscope +huge +perl +python +ruby +tcl"
to install the full version.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bee  
View profile  
 More options Mar 20 2012, 3:37 pm
From: Bee <beeyaw...@gmail.com>
Date: Tue, 20 Mar 2012 12:37:11 -0700 (PDT)
Local: Tues, Mar 20 2012 3:37 pm
Subject: Re: instructions for installing macvim

On Mar 19, 2:35 pm, Yvonne Watkins <ehr...@gmail.com> wrote:

> I'm going to preface this post with: I'm not a complete idiot, just a PC user trying to hop the fence to the mac world.

> I'm attempting to install MacVim on my Mac (Snow Leopard) I downloaded alexloveltroy-macvim zip file, and then unzipped it, but could not find a package file (*.pkg) within that file. (Normally, for my other mac apps, I have been double clicking a pkg file and then dragging the program icon into the application folder.)

> Then I tried down loading and untarring the .tar file. No .pkg file in that build either.

> Then on one of the forums I read that I can just place the macvim.app file in the path and update my path with this new file, and then I could be good to go, but I can't find the macvim.app file either.

> Can someone please provide the exact location within the build where the pkg file lives?
> Or please provide more detailed instructions on how to install?

> Thanks,
> n00b - Yvonne

Maybe your download was corrupted.

Go here:
<https://github.com/alexlovelltroy/macvim/downloads>

Download:
MacVim-snapshot-64-SL.tbz

Once xpanded it should contain:
mvim
MacVim
README.txt

Copy MacVim to your Applications folder.

It works great here, 10.6.8

Bill


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Andrew Stewart  
View profile  
 More options Mar 21 2012, 4:48 am
From: Andrew Stewart <b...@airbladesoftware.com>
Date: Wed, 21 Mar 2012 09:48:08 +0100
Local: Wed, Mar 21 2012 4:48 am
Subject: Re: instructions for installing macvim

On 20 Mar 2012, at 18:21, Darcy wrote:

> vim='mvim -v'

How does the -v flag work?  I can't find it documented in "Starting MacVim" and it's not used in the `mvim` script.

Thanks in advance,

Andy Stewart
----
http://airbladesoftware.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Phil Dobbin  
View profile  
 More options Mar 21 2012, 5:29 am
From: Phil Dobbin <phildob...@gmail.com>
Date: Wed, 21 Mar 2012 09:29:12 +0000
Local: Wed, Mar 21 2012 5:29 am
Subject: Re: instructions for installing macvim
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 21/03/2012 08:48, Andrew Stewart wrote:

> On 20 Mar 2012, at 18:21, Darcy wrote:
>> vim='mvim -v'

> How does the -v flag work?  I can't find it documented in "Starting MacVim" and it's not used in the `mvim` script.

It aliases console Vim to GUI vim rather than creating a symlink a la
`sudo ln -s $(which gvim) $(which vim)` which is the way personally I'd
do it.

Cheers,

  Phil...

- --
But masters, remember that I am an ass.
Though it be not written down,
yet forget not that I am an ass.

        Wm. Shakespeare - Much Ado About Nothing

-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
Comment: §auto-key-locate cert pka ldap hkp://keys.gnupg.net
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPaZ9kAAoJEKpMeDHWT5ADqHcIAKPsgOYT8gPOXOF6zRy+Svde
8ZUgqZlpFpilyA9wSv53z2OoX9BDPHfCf1WK7RrXSdrzTyIx1zU48LIt1TgsPzkw
ygTS2E6RSQZ8/h/k69RHaonalSKYIzCNt+0O4OmBgoyAxn8hmazbVcgV2c8PoM8O
JyCK+hg/aoyKnAaykCfNQ4/cYngP3ezoTVr7q7zJtQcCJrB1ci9x6Du9CXQTb+gH
HfL/zL8BYc4nBJ9Jq7vz8zi/EJbADGSSy1pAvv8ksUJ6TKRtC9Xx8s5sPdj+GuR7
hJEGHQfA/MqQTZJE5oVHu3nhNa66F+ddKJydcC5tCKJEoSNJ5tE836+f5QALEoc=
=eG42
-----END PGP SIGNATURE-----


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Andrew Stewart  
View profile  
 More options Mar 21 2012, 5:31 am
From: Andrew Stewart <b...@airbladesoftware.com>
Date: Wed, 21 Mar 2012 10:31:40 +0100
Local: Wed, Mar 21 2012 5:31 am
Subject: Re: instructions for installing macvim

On 21 Mar 2012, at 10:29, Phil Dobbin wrote:

> On 21/03/2012 08:48, Andrew Stewart wrote:
>> On 20 Mar 2012, at 18:21, Darcy wrote:
>>> vim='mvim -v'

>> How does the -v flag work?  I can't find it documented in "Starting MacVim" and it's not used in the `mvim` script.

> It aliases console Vim to GUI vim rather than creating a symlink a la
> `sudo ln -s $(which gvim) $(which vim)` which is the way personally I'd
> do it.

Thanks for the reply.  However I understand what the alias does, just not how it works.  Where is the `-v` flag handled?

Cheers,

Andy Stewart
----
http://airbladesoftware.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Phil Dobbin  
View profile  
 More options Mar 21 2012, 5:51 am
From: Phil Dobbin <phildob...@gmail.com>
Date: Wed, 21 Mar 2012 09:51:42 +0000
Local: Wed, Mar 21 2012 5:51 am
Subject: Re: instructions for installing macvim
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 21/03/2012 09:31, Andrew Stewart wrote:

> On 21 Mar 2012, at 10:29, Phil Dobbin wrote:
>> On 21/03/2012 08:48, Andrew Stewart wrote:
>>> On 20 Mar 2012, at 18:21, Darcy wrote:
>>>> vim='mvim -v'

>>> How does the -v flag work?  I can't find it documented in
>>> "Starting MacVim" and it's not used in the `mvim` script.

>> It aliases console Vim to GUI vim rather than creating a symlink
>> a la `sudo ln -s $(which gvim) $(which vim)` which is the way
>> personally I'd do it.

> Thanks for the reply.  However I understand what the alias does,
> just not how it works.  Where is the `-v` flag handled?

See :help -v

Cheers,

  Phil...

- --
But masters, remember that I am an ass.
Though it be not written down,
yet forget not that I am an ass.

        Wm. Shakespeare - Much Ado About Nothing

-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
Comment: §auto-key-locate cert pka ldap hkp://keys.gnupg.net
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPaaSqAAoJEKpMeDHWT5ADtXsH/iaqPrePuf9kC3duDS1FkUXX
fnKCcXhRU6riGEeGxWmZVcgN4VKc8Za9wbwmwf6K0ZL6gGvu9fyqi19iJwdrl8lv
EUJJpg2JR0GxhAlpj63Il4fHxgwHNpp3PLioPBVvbZParSpo6Uvlda0D42+5Dm/a
EguQRMRcml6qCzg26t5lXDPFni7gxYLxFJj8bQdPiD+4wQXOnAOe43XxemqZ5Ccf
3pZi/AgKb007gGjmMbkWMiPYGx/LRs/tfRGsOiF0ejebUvAmzJFfAlWcBE5ZpkNC
BwbDDyv8ZoFH34YnJ7OJsZud4MnrgpRHPHI9nZv2oEVwOrqPtop7RLrShkz7JIA=
=h/Wh
-----END PGP SIGNATURE-----


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Andrew Stewart  
View profile  
 More options Mar 21 2012, 6:03 am
From: Andrew Stewart <b...@airbladesoftware.com>
Date: Wed, 21 Mar 2012 11:03:09 +0100
Local: Wed, Mar 21 2012 6:03 am
Subject: Re: instructions for installing macvim

On 21 Mar 2012, at 10:51, Phil Dobbin wrote:

> See :help -v

Oh, right.  Thanks!

Cheers,
Andy Stewart


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Darcy  
View profile  
 More options Mar 22 2012, 9:53 am
From: Darcy <darcypar...@gmail.com>
Date: Thu, 22 Mar 2012 06:53:14 -0700 (PDT)
Local: Thurs, Mar 22 2012 9:53 am
Subject: Re: instructions for installing macvim
Just to clarify `sudo ln -s $(which gvim) $(which vim)` is different.
It does not include the -v option.  This just creates a link of gvim
to vim.

vim='mvim -v'
alias vim="${vim}"

The -v option for mvim  is to open vim inside a terminal rather than
opening the usual gui version of macvim. (try it) I like this because
the vim that comes with OS X is not compiled with as many options as
mvim.  And I like to run vim in a terminal...

I learned about it here:
http://stackoverflow.com/questions/2056137/how-to-run-mvim-macvim-fro...

Creating the vim environment variable is useful because notice I use
it for more than just the `alias vim="${vim}".  I also use it for
$EDITOR...

Darcy

On Mar 21, 6:03 am, Andrew Stewart <b...@airbladesoftware.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Phil Dobbin  
View profile  
 More options Mar 22 2012, 10:04 am
From: Phil Dobbin <phildob...@gmail.com>
Date: Thu, 22 Mar 2012 14:04:19 +0000
Local: Thurs, Mar 22 2012 10:04 am
Subject: Re: instructions for installing macvim
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 22/03/2012 13:53, Darcy wrote:

In which case you could pull the Vim sources from Mercurial & build a
console Vim to fit your requirements (the default build installs into
/usr/local/).

Or alternatively, use MacPorts for a console version (I currently use a
console version of Vim from MacPorts & a MacVim I compiled from Bjorn's
sources on OS X).

Cheers,

  Phil...

- --
But masters, remember that I am an ass.
Though it be not written down,
yet forget not that I am an ass.

        Wm. Shakespeare - Much Ado About Nothing
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
Comment: §auto-key-locate cert pka ldap hkp://keys.gnupg.net
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPazFgAAoJEKpMeDHWT5ADxY8H/2GjMhRJHutrv3fkgV6Gm6Jq
CA4R7dTLnd6dhHlMPbEp7SJN1VpgB0oUMsyBnIGVleH0D+VVDpJ6SUsZ5+NOymqV
LEWRN6iY2khe9btydMFRBZUR8LshME9o+qz9TH+g2RCrjvv0C/3k4L1I5kiOQcBZ
VoKe7kaOgPZl/VglT22c9q6Vaj39D0o2lWoTcxqCIW+cCpUHTrMKOz9KHSPAJFMC
20epTepKshUEC4dlP04HXWPvaz8TW6ODLqHeYyetq8Ub+SAxaM+uxSosieFMNBZF
B/qFkmbEwz9BX3fAuq/S/E3owDsCSyTELmX+dBEK7juADmpGz+T5AxMJsmqzH2o=
=5AvF
-----END PGP SIGNATURE-----


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »