Vim is a free and open-source modal text editor available for most major platforms. It allows high efficiency in many text editing tasks but has a steep learning curve. To learn the basics, try ":help vimtutor".
6
votes
1answer
607 views
Vim “annoyance” with keyboard layouts
Here's the thing. I have two keyboard layouts, HR (Croatian, my native language) and EN (English). Well, actually I have some more but they're not important at the moment.
When working with Vim I ...
13
votes
5answers
9k views
How to map CAPS LOCK key in VIM?
I'm using GVIM under Windows.
And want to map CAPSLOCK to Ctrl+^
Any way to do this?
Btw, I see tons of samples over the web how to swap CAPS and Esc using registry hack, but none of them use VIM ...
9
votes
3answers
2k views
Why is vim drawing underlines on the place of tabs and how to avoid this?
Without any specific regularity my vim displays underlines on the place of tabs (see below).
Sometimes it also happens to the text: I type and it's underlined.
What could be a reason?
5
votes
2answers
420 views
Selecting text inside paranthesis from outside the parenthesis in Vim
I know that I can select text inside quotes/doublequotes by issuing vi' or vi". For example, with cursor at H, I can select World by issuing vi"
Hello "World"
But this does not seem to work if I ...
4
votes
2answers
3k views
Vim: gg=G aligns left, does not auto-indent
When I try to fix the indentation of an HTML file with gg=G, each line looses its indentation and becomes left-justified. Does anybody know what could be going on here?
Thanks.
::EDIT::
test.html
...
3
votes
3answers
390 views
stopping vim from removing indentation on empty lines
When the cursor is placed at the end of a line containing nothing but withspace characters, vim will, when i press enter, remove that whitespace. I find this irritating, as it breaks my script for ...
254
votes
5answers
123k 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 ...
343
votes
12answers
137k views
How to replace a character for a newline in Vim?
I'm trying
:%s/,/\n/g
but it inserts what looks like a ^@ instead of an actual newline. The file is not in DOS mode or anything.
What should I do?
EDIT: If you are curious, like me, check the ...
82
votes
7answers
31k views
Changing Vim indentation behavior by file type
Could someone explain to me simply the easiest way to change the indentation behavior of vim based on the file type? For instance if I open a python file it would indent with 2 spaces, but if I open ...
68
votes
15answers
8k views
What specific productivity gains do Vim/Emacs provide over GUI text editors?
This isn't meant as a troll or flamebait or anything like that. I've been using Vim as my console-editor of choice for a couple months now (for editing configuration files while in my terminal), but ...
42
votes
9answers
21k views
A more useful statusline in vim? [closed]
I would like to make my statusline in vim more informative and interesting and for that I need some ideas. How did you costumize your statusline?
91
votes
7answers
18k views
82
votes
5answers
15k views
How do I make vim do normal (bash like) tab completion for file names?
When I'm opening a new file in vim and I use tab completion, it completes the whole file name instead of doing the partial match like bash does. Is there an option to make this file name tab ...
52
votes
5answers
8k views
Search for selection in vim
I use vim and vim plugins for visual studio when writing C++. Often, I find myself wanting to search for a string within a function, for example every call to object->public_member.memberfunc(). I ...
41
votes
4answers
22k views
How to prevent vim from creating (and leaving) temporary files?
Why does vim create <filename>~ files? Is there a way to disable that?
If it's for backup (or something), I use git for that.
Also, these .<filename.with.path.hints>.swp files too.
How ...
33
votes
6answers
10k views
Smart Wrap in Vim
I have been wondering if Vim has the capability to smart wrap lines of code, so that it keeps the same indentation as the line that it is indenting. I have noticed it on some other text editor, such ...
28
votes
4answers
5k views
Saving vim macros
Does anyone know how to properly save/reuse macros recorded inside of a vim editor?
28
votes
5answers
12k views
What is the most useable VI/Vim plugin for Eclipse? [closed]
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 ...
23
votes
4answers
8k views
use vimdiff with a diff file
How can I use vimdiff to view the differences described in a diff file?
9
votes
4answers
1k views
Indenting in VIM with all the files in Folder
I have a folder containing hundreds of TTL (TeraTermLanguage) files.
Now I wanted indent all these files.
I have created teraterm.vim for indentation and I open a file using VIM and do "gg=G" and ...
26
votes
7answers
16k views
How do I join two lines in vi?
I have a two lines in a text file like below:
S<Switch_ID>_F<File type>
_ID<ID number>_T<date+time>_O<Original File name>.DAT
I want to append the two lines in vi like ...
13
votes
2answers
1k views
Automatically go to next line in vim
One frustrating behavior in vim is that when i move my cursor right or left (respectively "l" or "h)" and i am at the end or the beginning of the line, my cursor doesn't move to first column of next ...
9
votes
6answers
3k views
Alt key shortcuts not working on gnome terminal with Vim
I'm running Vim on a gnome terminal. But the alt key mappings are not working.
For example (this is just an example):
:imap <A-i> <Esc>
It works fine in GVim. But when I run the same ...
22
votes
8answers
3k views
^M at the end of every line in vim
When I am editing source files using vim and other editors sometimes at the end of the line I get these ^M characters at the end of each line. I think that it has something to do with editing a file ...
13
votes
6answers
2k views
How can I automatically add some skeleton code when creating a new file with vim
When creating a new file with vim, I would like to automatically add some skeleton code.
For example, when creating a new xml file, I would like to add the first line:
<?xml version="1.0"?>
...
11
votes
1answer
1k views
Using Vim with the Greek language
So I am giving Vim a serious try for coding my Python apps.
However Vim is proving so flexible, I was thinking to use it as my main editor at work (lawyer/legal documents). The problem is that my ...
9
votes
4answers
6k views
How to sort numeric and literal columns in Vim
Using Vim 6.0. Say I'm editing this file:
sdfsdg
dfgdfg
34 12
2 4
45 1
34 5
How do I sort the second column?
5
votes
3answers
2k views
gVim find/replace with counter
Is there a way to insert the value from some sort of counter variable in gVim search/replace?
e.g. convert this document:
<SomeElement Id="F" ... />
<SomeElement Id="F" ... />
...
4
votes
2answers
560 views
In VIM, how can I mix syntax/ident rules of both jinja and javascript in the same file?
I'm using jinja template language to generate html and javascript for a website. How can I make vim understand that everything between '{{'/'}}' and '{%'/'%}' is Jinja code and the rest it javascript ...
6
votes
3answers
1k views
vim — not recognizing aliases when in interactive mode?
Same question as Commands executed from vim are not recognizing bash command aliases however the solution there didn't work.
I set these variables in my ~/.vimrc:
set shellcmdflag=-ic
set ...
6
votes
1answer
405 views
Central european characters in Vim and printing (PDFing) them out
I'm trying to persuade GVim 7.3 to correctly print (:hardcopy) central european characters (šđčćž ŠĐČĆŽ) to PDF. Settings which I believe to be relevant
set encoding=utf8
set ...
7
votes
3answers
2k views
Emacs equivalent of Vim's foldmethod = indent
Question: Does Emacs have a canonical equivalent of Vim's Folding with Foldmethod=indent?
I am particularly interested in something that can work alongside any Emacs major mode and any file. The ...
5
votes
2answers
906 views
Can I make vim do syntax highlighting on C++ headers that don't have extensions?
I have a project with a bunch of C++ header files that follow the standard C++ header naming convention; that is, a class called Foo would be declared in a file called Foo, not Foo.h or Foo.hh. Is ...
2
votes
2answers
156 views
vim toggling buffer overwrite behavior when deleting
Vim is great, but like many people I get really annoyed when I want to copy, delete, then paste -- the yank buffer gets overwritten by the delete action.
Now I know there are 101 work-arounds and ...
0
votes
3answers
97 views
Repeat match pattern and replace
I'd like to repeat a search and replace as below:
Example:
set_path 1 -start -from [get_obj { A_1[0] B_2[1] .... Z_n[100] }]
replace to
set_path 1 -start -from [get_obj {xyz/A_1[0] xyz/B_2[1] ...
253
votes
12answers
43k views
How to use vim registers?
I only know of one instance using registers is via CtrlR* whereby I paste text from a clipboard.
What are other uses of registers? How to use them?
Everything you know about VI registers (let's ...
241
votes
3answers
23k views
154
votes
9answers
43k 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 ...
303
votes
4answers
51k 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.
105
votes
10answers
56k views
How do I insert text at beginning of a multi-line selection in VI/VIM?
In vim, how would I go about inserting characters at the beginning of each line in a selection? For instance, let's say I want to comment out a block of code by prepending '//' at the beginning of ...
65
votes
3answers
25k views
cscope or ctags why choose one over the other?
I primarily use vim / gvim as an editor and am looking at using a combination of lxr (the Linux Cross Reference) and either cscope or ctags for exploring the kernel source. However, I haven't ever ...
73
votes
9answers
37k views
How to run a terminal inside of vim?
I am used to emacs but I am trying out vim to see which one I like better. One thing that I like about emacs is the ability to run a terminal inside emacs. Is this possible inside of vim? I know that ...
44
votes
12answers
5k views
What are your suggestions for an ideal Vim configuration for Perl development?
There are a lot of threads pertaining to how to configure Vim/GVim for Perl development on PerlMonks.org. My purpose in posting this question is to try to create, as much as possible, an ideal ...
83
votes
4answers
65k views
How can I change a file's encoding with vim?
I'm used to using vim to modify a file's line endings:
$ file file
file: ASCII text, with CRLF line terminators
$ vim file
:set ff=mac
:wq
$ file file
file: ASCII text, with CR line terminators
Is ...
168
votes
8answers
47k views
How do I make git use the editor of my choice for commits?
For example, I would prefer to write my commit messages in vim, but it is opening emacs.
How do I configure git to always use vim instead? Note that I want to do this globally, not just for a single ...
122
votes
7answers
39k 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 ...
108
votes
10answers
24k views
39
votes
5answers
14k views
Vim, Python, and Django autocompletion (pysmell?)
Does anyone know how to set up auto completion to work nicely with python, django, and vim?
I've been trying to use pysmell, but I can't seem to get it set up correctly (or maybe I don't know how it ...
64
votes
9answers
23k views
How can one close HTML tags in Vim quickly?
It's been a while since I've had to do any HTML-like code in Vim, but recently I came across this again. Say I'm doing a simple bit of a HTML page:
<html><head><title>This is a ...
104
votes
6answers
24k views
How can I make my match non greedy in vim?
I have a big HTML file that has lots of markup that looks like this:
<p class="MsoNormal" style="margin: 0in 0in 0pt;">
<span style="font-size: small; font-family: Times New ...