Questions tagged [macvim]

MacVim is a version of the Vim text editor for Mac OS X.

https://web.archive.org/web/20160827085726/http://macvim.googlecode.com/files/MacVim-screenshot-10-detail.jpg

MacVim supports multiple windows with tabbed editing and a host of other features such as:

  • bindings to standard OS X keyboard shortcuts (⌘Z, ⌘V, ⌘A, ⌘G, etc.),
  • transparent backgrounds,
  • full-screen mode,
  • multibyte editing with OS X input methods and automatic font substitution,
  • ODB editor support,

and more. Most importantly, MacVim brings you the full power of Vim 7.3 to Mac OS X.

Legacy versions are available for OS X 10.4, 10.5 and 10.6. Current build is available for "Lion".

For further details see the MacVim website.

959 questions
11
votes
1 answer

Disable Vim plugin for certain filetypes

I'd like to disable a plugin for certain filetypes in Vim. I'm a Vim newbie, so take it slow with me :) I have the autocomplpop plugin, and I really like it. However, if I'm editing a LaTeX file, it shows completions for every single English…
cflewis
  • 7,251
  • 7
  • 28
  • 37
11
votes
1 answer

Disabling vim's -- INSERT -- message

When I go to insert mode, vim displays -- INSERT -- below my status bar (happens with all modes of course, just showing an example): Given I'm already showing the current mode in my status bar, is there a way to disable this -- INSERT -- for pure…
jviotti
  • 17,881
  • 26
  • 89
  • 148
11
votes
2 answers

Motion to target the matching brace/paren in Vim?

So, Vim, like most programming-minded text editors, highlights a matching "scope" character (such as ( and ), < and >, and { and }). I'm wondering, is there a motion to reach that character from the other? Like, with the caret on a <, to move to…
ele
  • 6,021
  • 5
  • 25
  • 35
10
votes
1 answer

What do I specify for "Rope project root folder: . " with python files and RopeVim plugin?

I've installed the plugin RopeVim (using Pathogen) and it seems to be working. Now when I call :RopeGoToDefinition with my vim cursor (in command mode) on a function I'd like to see the definition of...I get: Rope project root folder: . displayed…
Bodhi
  • 1,437
  • 1
  • 13
  • 21
10
votes
3 answers

Find/Grep in all VI buffers

With many buffers open, I need a simple way to search all buffers for a regex and navigate the search result (quick list?) I know I can :bufdo command, and it is easy to search and replace with %s, but I can't find a way to do just a simple search…
Samer Buna
  • 8,821
  • 9
  • 38
  • 55
10
votes
3 answers

MacVim start is really slow

I have been using MacVim in graphical mode for several weeks now but I am quite disappointed with its start time. When I run MacVim as an OSx App bundle then it starts for several seconds. The same goes for opening a new window. I read somewhere…
Martin Macak
  • 3,507
  • 2
  • 30
  • 54
10
votes
5 answers

Mac Vim: How can I change the default text color to be green? Default font? Macvim manual?

I have installed MacVim but I cannot figure out how to do some formatting things. The screen shot below shows: the file class1.jak (custom file type I have defined) open in both macvim and vim the left one is macvim the right one is the…
sixtyfootersdude
  • 25,859
  • 43
  • 145
  • 213
10
votes
1 answer

MacVim: Thicker font rendering compared to TextMate

This is bothering me for some time now. With same source file, same theme (almost) the thickness of text between MacVim and Textmate is different. I have linked to the screenshot .. here. There are 3 editors in it. Leftmost is sublime v3, middle is…
bitflood
  • 441
  • 5
  • 15
10
votes
3 answers

I need to test something by changing vimrc

However already opened mvim windows do not load changed done to vimrc until I close all mvim windows and start fresh. Is there a way I can tell existing mvim windows to load new vimrc file without closing and opening all windows every time.
Nick Vanderbilt
  • 36,724
  • 29
  • 83
  • 106
10
votes
2 answers

macvim can not fold code "E490: No fold found"

I can not fold my code in macvim my environment and settings is at the gist link https://gist.github.com/poc7667/7035979 is there any idead ? hi Comment ctermfg=6 "function SetCafeOptions() "CoffeeCompile ":set nonu ":res -24 …
newBike
  • 14,385
  • 29
  • 109
  • 192
10
votes
4 answers

Splits managing in Vim

Working on a big and medium sized project I often end up with lots of splits on my screen as well as several tabs opened with 5-6 splits in each. Usually I use different tabs for different directories and logical workspaces to separate the work on…
imslavko
  • 6,596
  • 2
  • 34
  • 43
10
votes
3 answers

macvim failed to start after connecting to a extra display and disconnected

I run into a very strange problem when using macvim. Env: OS: OS X Mountain Lion, Macvim: https://github.com/b4winckler/macvim/archive/snapshot-66.tar.gz Steps to reproduce: 1. connecting my labtop to a extra display. 2. open macvim 3.…
Nicholas Ren
  • 263
  • 2
  • 8
10
votes
3 answers

Is there a way to have window navigation wrap around in VIM

I would like it so that typing Ctrl-Wk from the right most window would focus the left most window in VIM. Obviously it would be handy for this to work in all directions. My main motivation is for use with NERDTree. I typically have the following…
Wes
  • 101
  • 3
10
votes
2 answers

Disable use of MacVim keyboard shortcuts

Is there any way to disable keyboard shortcuts in MacVim? I mean the shortcuts like Cmd + s for example, I want to convince myself to use things like :w, but I can't do so if I can save the file using Cmd + s, you get me? But I of course, still want…
greduan
  • 4,770
  • 6
  • 45
  • 73
10
votes
2 answers

Cursor color in vim terminal OS X Mountain Lion

I want to make the cursor and selected text easier to read in vim (white background, black foreground), so i've done hi Visual guibg=white guifg=black gui=NONE ctermfg=black ctermbg=white cterm=reverse hi Cursor guibg=white guifg=black gui=NONE…
Jose187
  • 449
  • 1
  • 7
  • 15