Tagged Questions

107
votes
4answers
13k views

What is the <leader> in a .vimrc file?

I see <leader> in many .vimrc files, and I am wondering what the meaning of it is? What is it used for? Just a general overview of the purpose and usage. Thanks!
50
votes
5answers
18k views

How to run mvim (MacVim) from Terminal?

I have MacVim installed and I am trying to set it up as the editor for Git (version control), but I can't run 'mvim' from the command line as it isn't recognised. How do I setup mvim so I can run it ...
14
votes
2answers
3k views

Changing the Leader in MacVim?

I'm trying to change <Leader> in MacVim to be something less carpal-tunnel inducing. I have added this line let mapleader="," to my .gvimrc, but "\" is still the only key that works. Am I ...
13
votes
2answers
1k views

Vim: Highlight keyword pairs in Ruby (def/end, do/end, etc)

In one of the Eclipse-based editors that I tried out recently (I think it was RubyMine), when a Ruby keyword that either opened or closed a method or block was selected, the corresponding open/close ...
10
votes
2answers
231 views

Dynamic vim font size based on file length

I want vim (MacVim) to default to a large font for new/short files and dynamically scale down to a smaller font (to a set minimum) as the number of lines grows. Is this possible to do with a plugin? ...
10
votes
5answers
3k views

VIM Color scheme not loading by default

When I do :colorscheme vilight it loads the color scheme fine. So I added colorscheme vilight to my .vimrc but its not loading it on start. Am I missing something? Also in my config set ...
9
votes
2answers
241 views

How do I get back to where I was before after hitting gg in Vim?

For example, let's say I am happily editing a document in Vim when I accidentally hit gg. I then end up on the first row of the document, and of course I have no idea which was the exact row that I ...
9
votes
12answers
3k views

Reasons for using command line Vim versus GUI Vim

Background I'm building an application where it detects what documents you're using from the file system. To do this it must access the AXDocument attribute of the active window. MacVim provides ...
8
votes
2answers
869 views

What are the advantages of MacVim over Vim?

I'm reasonably new to OS X, but I'm familiar with Vim from using it in various *nix systems. I've seen many people recommend running MacVim over Vim in the terminal. Can anyone tell me what advantages ...
8
votes
1answer
1k views

Vim cursor shape question

I currently use MacVim for a lot of my editor needs but occasionally I need to edit files remotely over ssh. In MacVim the shape of the cursor varies depending on your current mode, i.e. command mode ...
8
votes
2answers
2k views

Changing background color in vim at a certain column

I'd like to be able to highlight the wrap margin/text width in vim by changing the background color (or maybe just a line?). A lot of IDEs have this. I mocked up what I'm talking about: Anyone ...
7
votes
1answer
157 views

Mark block based on indentation level in Vim

Is it possible to mark a block in Vim based on the indentation already in place? Similarly to v{ . It would be extremely useful for programming languages with whitespace-sensitive syntax (like ...
7
votes
3answers
112 views

Is there a way to dynamically examine html output with vim?

When I write html in MacVim I keep the same file open in a web browser so that I can examine the html output. One of the things I dislike about this method is that I constantly have to leave vim, go ...
7
votes
5answers
536 views

How to break a line in vim in normal mode?

I would like to break a line (at the location of the cursor) in to two lines without leaving normal mode (entering insert or command-line mode). Is this possible? I currently get to the location I ...
7
votes
4answers
930 views

vim: delete all whitespace characters up to my cursor

is there anyway to delete every character on the same line as a cursor, all the way up to the cursor? for instance, I might have a line of code that looks like the following: foo = [cursor] ...
7
votes
3answers
2k views

vimdiff and MacVim

I'd like to run vimdiff on MacVim. Is there an easy way I'd be able to do it?
6
votes
2answers
360 views

Vim auto complete

So I know you can get Vim autocompletion with Ctrl-X, Ctrl-O but I'm wondering if you could rework it so it works with just pressing Tab (more like Textmate's snippets), or even just how I could remap ...
6
votes
9answers
622 views

What are the most-used vim commands/keypresses?

I'm a Ruby programming trying to switch from Textmate to MacVim, and I'm having trouble wading through the gargantuan lists of things you can do in VIM and all of the keypresses for them. I'm tired of ...
6
votes
6answers
2k views

Using Macvim over ssh

My project involves working on a large codebase on a remote server. I'm constantly editing multiple files, so scp'ing files back an forth is not possible. I've got my local Macvim setup just the way ...
6
votes
1answer
117 views

Is there a way to list all the default normal, visual and insert mode bindings in vim?

When you use the :map command without any parameters, it seems that it only lists custom and plugin bindings. Is there a way to view ALL bindings? It would be nice to know if a custom binding would ...
6
votes
1answer
862 views

Disable Scrollbar in NERDtree with MacVim

I have been able to fully disable scrollbars in MacVim. However, when I startup NERDtree, NERDtree brings up a scrollbar of it's on the left. How can I disable NERDtree's scrollbar? Thank you in ...
6
votes
2answers
544 views

Configure Macvim's text selection to not include character under cursor

Using macvim, when I copy a text selection, it always includes the character under the cursor. For example, if the cursor is at the far left and I press shift-down arrow, it selects the entire line ...
6
votes
3answers
1k views

Can vim commands be mapped to key combinations with >1 modifier (e.g. ctrl-alt-v)

Is it possible to map a vim command to a combination of keys involving more than one modifier? For example: ctrl-alt-v. As far as I can tell, the only modifier key that can be used in combination ...
5
votes
1answer
240 views

GVim: Different colors of odd and even lines

Can I create color scheme for GVim (MacVim) where odd lines and even lines will have different colors?
5
votes
3answers
428 views

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, ...
5
votes
1answer
2k views

MacVim: Turn off anti-aliased fonts with advanced rendering enabled

With MacVim, I use the Monaco font at size 10, which under the standard MacVim config is NOT anti-aliased. When I turned on Advanced Rendering in MacVim preferences (advanced tab), Monaco 10pt is now ...
5
votes
2answers
510 views

How can I run Ruby specs and/or tests in MacVim without locking up MacVim?

About 6 months ago I switched from TextMate to MacVim for all of my development work, which primarily consists of coding in Ruby, Ruby on Rails and JavaScript. With TextMate, whenever I needed to ...
5
votes
5answers
655 views

Execute a script directly within vim/mvim/gvim

TextMate has a nice feature that allows you to execute a script from within the current context and shows you the output in a separate window. This lets you write and test code on the go. I'm almost ...
5
votes
3answers
2k views

vim and NERD Tree: Can NERD Tree persist across tabs in MacVim?

When using NERD Tree on MacVim, I can open a file in a new tab by using 't' (or 'T' to open it in the background) in the NERD Tree window, but when I switch to that tab, the NERD Tree window is no ...
5
votes
2answers
3k views

Using SHIFT+Arrows to select text in vim / MacVim

One of the nicer features in MacVim is that it is possible to use the usual OS commands for copying and pasting text (namely command+C and command+V) in it. This is especially nice in situations when ...
4
votes
2answers
141 views

How can I select multiple lines that are not in a continuous chunk?

I am trying to select multiple lines that are not in a continuous chunk. E.g., I want to select line 1 and 3 simultaneously without selecting line 2: 1. this is line 1 2. this is line 2 3. this ...
4
votes
3answers
199 views

Create a “project” in VIM/MacVim/GVIM

I'm a VIM noob, and have revisited it time and again, and I'm hoping to actually stick with it this time. Primarily I'm programming in TextMate with Ruby on Rails. On advice from someone, I have ...
4
votes
1answer
61 views

Defining my own command

I'm trying to define my own command in MacVim to turn a c statement or range of statements into comments. So I put this in my vimrc: command -range Com :<line1>,<line2>s?^.*$?/*&*/? ...
4
votes
5answers
231 views

Opening a directory in vim

I'm a mac user giving vim a serious try. Most of the GUI editors I'm used to allow me to open a directory as a "project" by executing a command like: edit ~/www/example.com/ The vim equivalent ...
4
votes
4answers
909 views

What is the difference between MacVim and Vim?

I am trying to get started using VIM on OSX but I am having trouble trying to see which one I should use? I can go to terminal and type vim and the editor comes up, but I have also been reading up ...
4
votes
2answers
2k views

Autocompletion in Vim

after a long "training" , I'm finally switched to Vim; but I have some trouble with the autocompletion. How can I have a code suggestion while I'm typing? I usually develop with php,ruby,html,c and ...
4
votes
2answers
456 views

MacVim Command Window text coloring help (Rspec output)

I'm trying to transition to MacVim for ruby dev. One of the hangups I have is running specs quickly and getting results (passes/failures) easily. When I run :Rake (or :!rspec %) it runs the specs in ...
4
votes
6answers
523 views

Vim/sed/awk Find & Replace with Incremental Integer

I have a markdown file with words like [this][], [that][], ... , and [the other][]. I know how to find these words in MacVim, but how do I replace them with [this][1], [that][2], ..., and [the ...
4
votes
3answers
605 views

macvim html5 syntax highlighting in erb templates

I am trying to get syntax highlighting for HTML 5 elements in erb templates working. I have installed newest rails.vim plugin as well as html5.vim and can't seem to get it to work. Works fine on ...
4
votes
2answers
405 views

using rails.vim Rake run spec in MacVim, how to get colored output

when using Rake to run a spec, the output in quickfix is not colored, meaning, it doesn't have green for passing specs and red for failing specs. Is this something solvable? Thanks for any hints.
4
votes
9answers
596 views

VIM: highlight all occurrence of a selected word?

How can I highlight all occurrence of a selected word in gvim? (like notepad++..)
4
votes
1answer
439 views

vim/macvim: locate where a method/symbol is defined

I'm using macvim/vim for most of my Ruby + Ruby on Rails development. Is there currently a way to jump to where a method was defined within a project, even if it's not in the same file as where it's ...
4
votes
4answers
2k views

Is there a quick way with macvim/NERDtree plugin to find a file?

What's the fastest way to find and open a file with MacVim? NERDtree is a great plugin, but I still have to navigate (sometimes very deep) directory trees in order to get to the file I want to get to. ...
4
votes
3answers
860 views

How do I increase the spacing of the line number margin in vim?

I have a problem with my colorscheme in vim: The line numbers are too close to the code. How I can increase the width of the line numbers' right margin?
4
votes
3answers
793 views

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 ...
4
votes
6answers
2k views

tips and tricks for using vim with ruby/ruby on rails

I'm one of those developers who isn't using TextMate with any of his Ruby/Ruby on Rails work. My particular loyalty in this arena lies with vim. What are your favorite tips/tricks for using vim with ...
3
votes
5answers
147 views

macvim: how to paste several times the same yanked word?

Each time i copy a word and want to replace it for several words, i do: yank the word enter visual mode, select the word to be replaced and paste the yanked word. After this process, the replaced ...
3
votes
2answers
70 views

Shortcut to make all split screens have the same width?

When I open gvim -S (with a session) my split screens' widths are screwed up and I have to manually adjust them. Is there a shortcut to make all split screens the same width ? Thanks
3
votes
1answer
78 views

How do I remap control-shift-leftmouse in gvim?

I'd like to remap a modified click in gvim (and also MacVim), but certain combinations of modifiers work while others do not. In gvim on a Linux box, I would like to insert "hello" anywhere I type: ...
3
votes
1answer
77 views

vim autocommand doesn't run when opening file

I'm using QuickCursor for entering text to forms. My problem with that is I always have MacVim open, and with hidden enabled, so when I :wq from the temp file QuickCursor make, the buffer stays in ...

1 2 3 4 5