Tagged Questions
vi is a family of screen-oriented text editors.
570
votes
41answers
174k views
What is your most productive shortcut with Vim?
I've heard a lot about Vim, both pros and cons.
It really seems you should be (as a developer) faster with Vim than with any other editor.
I'm using Vim to do some basic stuff and I'm at best 10 times ...
263
votes
74answers
27k views
What are the dark corners of Vim your mom never told you about? [closed]
There is a plethora of questions where people talk about common tricks, notably "Vim+ctags tips and tricks".
However, I don't refer to commonly used shortcuts that someone new to Vim would find cool. ...
99
votes
15answers
9k views
In vim is there a way to delete without putting text in the register?
Using vim I often want to replace a block of code with a block that I just yanked.
But when I delete the block of code that is to be replaced, that block itself goes into the register which erases the ...
97
votes
4answers
50k views
Tab key == 4 spaces and auto-indent after curly braces in VIM
How do I make Vi-Vim never use tabs (converting spaces to tabs, bad!), makes the tab key == 4 spaces, and automatically indent code after curly brace blocks like emacs does?
Also, how do I save these ...
85
votes
60answers
9k views
What is the best way to force yourself to master vi? [closed]
A good while ago, I read an article by the creator of viemu, clearing up a lot of the misconceptions about vi, as well as explaining why it's a good idea (and why it's been very popular for the last ...
72
votes
28answers
6k views
Making Vim ubiquitous? [closed]
The Pragmatic Programmer recommends that you should use one
text editor for everything. My chosen
weapon editor is Vim.
So I want to collect all the ways in which Vim (and the Vim
keybindings) can be ...
72
votes
11answers
9k views
Getting root permissions on a file inside of vi?
Often while editing config files, I'll open one with vi and then when I go to save it realize that I didn't type
sudo vi filename
Is there any way to give vi sudo privileges to save the file? ...
69
votes
12answers
32k views
How to effectively work with multiple files in Vim?
I've started using Vim to develop Perl scripts and am starting to find it very powerful.
One thing I like is to be able to open multiple files at once with e.g. vi main.pl maintenance.pl and then ...
64
votes
9answers
16k views
How do I fix the indentation of an entire file in Vi?
In Vim, what is the command to correct the indentation of all the lines?
Often times I'll copy and paste code into a remote terminal and have the whole thing messed up. I want to fix this in one ...
62
votes
40answers
9k views
Will Emacs make me a better programmer?
Steve Yegge wrote a comment on his blog:
All of the greatest engineers in the
world use Emacs. The world-changer
types. Not the great gal in the cube
next to you. Not Fred, the amazing guy
...
60
votes
9answers
19k views
Make Vim show ALL white spaces as a character
I can't find a way to make Vim show all white spaces as a character.
All I found was about tabs, trailing spaces etc.
52
votes
5answers
13k views
40
votes
13answers
25k views
How to move to end of line in vim
I am somewhat clumsy in my vi knowledge. I know how to generally move around in command mode, specifically, jumping to lines, etc. But what is the command to jump to the end of the line that I am ...
40
votes
6answers
6k views
In vim, how do I go back to where I was before a search?
Programming in vim I often go search for something, yank it, then go back to where I was, insert it, modify it.
The problem is that after I search and find, I need to MANUALLY find my way back to ...
30
votes
15answers
2k views
Has anyone ever attempted to re-imagine Vim?
Firstly, I want to state for the record that I am not attempting to be a troll, and I do not intend this question to be flamebait.
I asked an earlier question in an attempt to discover what other ...
21
votes
7answers
22k views
Auto-indent spaces with C in vim?
I've been somewhat spoiled using Eclipse and java. I started using vim to do C coding in a linux environment, is there a way to have vim automatically do the proper spacing for blocks?
So after ...
21
votes
6answers
17k views
Tabs and spaces in vim
How do I prevent vim from replacing spaces with tabs when autoindent is on?
An example: if I have two tabs and 7 spaces in the beginning of the line, and tabstop=3, and I press Enter, the next line ...
21
votes
8answers
4k views
Best way to insert timestamp in Vim?
EditPad Lite has a nice feature (CTRL-E, CTRL-I) which inserts a time stamp e.g. "2008-09-11 10:34:53" into your code.
What is the best way to get this functionality in Vim?
(I am using Vim 6.1 on a ...
20
votes
9answers
9k views
Move entire line up and down in Vim
In Notepad++, I can use ctrl + shift + up/down to move the current line up and down. Is there a similar command to this in Vim? I have looked through endless guides, but have found nothing.
If there ...
18
votes
4answers
4k views
Package management for Vim
Emacs 24 looks like it will have a package manager. What package management options are there for Vim?
18
votes
9answers
4k views
vim - yank entire file
I often write something in gvim, then need to copy-paste it into another application.
Is there an easy way to yank the entire file? I usually do something like this, but is there a better way that ...
18
votes
7answers
3k views
Vim: how to paste over without overwriting register
Does anyone know of a way that I can paste over a visually selected area without having the selection placed in the default register?
I know I can solve the problem by always pasting from an expicit ...
16
votes
2answers
16k views
VIM Background
When I am trying to change background in vimrc or directly in vim using
set background=dark
it doesn't affect my background at all, same with light option, however it looks okay when I run gvim.
Is ...
16
votes
5answers
6k views
Vim encryption: how to break it?
Recently I decided to encrypt my engineering log using vim's :X
encryption feature. I wrote down the password, but evidently I
misspelled something or messed something up because decrypting the file ...
15
votes
4answers
1k views
Is there any way to have VIM keybindings in Xcode 4?
Is there any way to have VIM keybindings in Xcode 4 ?
I've become a recent fan of vim, due to vicoapp...
15
votes
13answers
985 views
What can I do in VIM that I cant already do in Visual Studio?
I heard it takes 30 days minimum to get comfortable with vi. I'm on day 2 hehe. Right now, I seem to be merely memorizing different shortcuts for things I already did in visual studio. (incremental ...
15
votes
9answers
4k views
What's the point of viEmu plugin for Visual Studio?
This may sound a bit provocative but it actually is a real question. Feel free to edit if you don't like the tone.
Now, as much as I understand vi from my short experience with it like 10 years ago, ...
15
votes
5answers
9k views
Search for string and get count in VI editor
Well I want to search for a string and find number of occurrences in a file opened using Vi editor.
15
votes
35answers
3k views
Vim / vi Survival Guide
What are the essential vim commands? What does a new-user need to know to keep themselves from getting into trouble? One command per comment, please.
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 ...
14
votes
15answers
4k views
Does any IDE have a vi keybindings options?
One of the reasons I usually don't use an IDE for development is that I'm so used to vi keybindings that I usually end up messing up my text and putting in lots of ":w"s, and I can't use vi's powerful ...
14
votes
4answers
3k views
13
votes
4answers
3k views
What is the most useable VI/VIM plugin for eclipse?
I used to be a huge fan of Intelli-J and there is a fantastic VI plugin for Idea. Now I'm shifting to the Spring Source Tool Suite for my primary IDE and need to find a VI plugin that will allow me ...
13
votes
4answers
7k views
How do I “source” something in my .vimrc file?
I've been working on expanding my vim-foo lately and I've run across a couple of plugins (autotag.vim for example) that require them to be "sourced" in my .vimrc file. What exactly does this mean and ...
13
votes
4answers
3k views
How can I spellcheck in gvim?
What is the best way to spellcheck in gvim? Is there an add-on or something?
Update:
I would like it to offer corrections as well.
13
votes
4answers
1k views
Customising word separators in vi
vi treats dash and space as word separators for commands such as dw and cw.
Is there a way to add underscore as well ?
I quite often want to change part of a variable name containing underscores
...
13
votes
8answers
3k views
Is there any way to enable code completion for Perl in vim?
Surprisingly as you get good at vim, you can code even faster than standard IDEs such as Eclipse. But one thing I really miss is code completion, especially for long variable names and functions.
Is ...
13
votes
12answers
2k views
Why are there so few modal-editors that aren't vi*?
Pretty much every other editor that isn't a vi descendant (vim, cream, vi-emu) seems to use the emacs shortcuts (ctrl+w to delete back a word and so on)
12
votes
12answers
1k views
Opening files in the same folder as the current file, in vim
In vim, when I have a buffer open, I often need to load another file in the same directory that file is in, but since I don't usually cd into it, the pwd is a parent folder, so I have to retype the ...
11
votes
7answers
2k views
Delete newline in Vim
Is there a way to delete the newline at the end of a line in Vim, so that the next line is appended to the current line?
For example:
Evaluator<T>():
_bestPos(){
}
I'd like to put this ...
11
votes
2answers
6k views
How do I tidy up an HTML file's indentation in VI?
The other day my friend asked me how to fix the indentation of his huge html files which was all messed up.
I tried the usual "gg=G" command, which is what I use to fix the indentation of code files. ...
11
votes
3answers
2k views
How to detect vi (not vim) in .vimrc?
I carry a vimrc to all the machines that I work on and it naturally contains options that are not present in old vi.
If I accidentally start a vi session on a machine where vi is not an alias to vim ...
10
votes
3answers
101 views
mysql and vim lost query
i would like to know how to retreive file using vi in mysql.
i am logged in mysql using:
mysql -uuser -p -hserver -A database
then i do:
\e
the editor opens and i type my query (200 lines) andd ...
10
votes
3answers
552 views
How to copy to clipboard using vim?
Is it possible to copy to clipboard directly from vim? e.g I want to be able to use all the functionality that a normal vim command allows, like lets say if cc means copy line to clipboard, then 4cc ...
10
votes
3answers
230 views
Easiest way to swap occurrences of two strings in Vim?
What is the easiest way to replace all occurrences of string_a with string_b while at the same time changing anything that was already string_b into string_a? My current method is as follows:
...
10
votes
6answers
7k views
How can I prepend text to multiple lines in vim?
Say I have 10 lines and I want to prepend text to some word that occurs in those lines? It does not have to be at the beginning of the line.
sdfsd foo sdfsd
sfsd foo fsdf
sdfsdf foo sdfsdf
...
10
votes
6answers
2k views
regex with negative matching (ie, find string that _doesn't_ match regex)
I have a log file with the string "ERROR" on some lines. I want to delete every line that doesn't have ERROR so that I can see just what needs fixing. I was going to do something like the following in ...
10
votes
3answers
3k views
Hide all (not)matching lines in VIM
Is it possible to show/hide all matching lines in vi or vim? Not highlight but just show only that lines.
For example I have a text with ERROR word. How to show only lines containing ERROR and how to ...
10
votes
1answer
4k views
Is it possible to use VI or VIM keymap in NetBeans?
Vim is my favorite tool for programming in OSX, but my team mate all use NetBeans. Some of them use Eclipse Keymap. Any suggestion plug-in to enable VI command in NetBeans 6.5?
Related:
Does any ...
10
votes
8answers
2k views
Recommendations for a good vi reference?
As I don't use vi all that much and certainly not for my primary editor, I can't remember any of the vi commands. Does anyone have a recommendation for a quick start guide or command summary?