2
votes
2answers
29 views
How can I toggle smartcase in Vim?
I love smartcase, but there are times that I'd like to turn it off and search for just lowercase. Is there a builtin that will toggle smartcase, or do I need to write a function t …
2
votes
0answers
13 views
Vim Spell options
Hello,
Is there any option in vim spell checker to ignore words containing underscore, multiple uppercase letters, minus, numbers in a plain text file. I could not find anything i …
2
votes
1answer
35 views
Vim: Lock top line of a window
Is it possible in Vim to lock the top line of a window so that the first line in buffer is always seen on top of the window?
I have a file, say, dump of a database table. On the f …
54
votes
42answers
5k views
What is in your .vimrc?
Vi and Vim allow for really awesome customization, typically stored inside a .vimrc file. Typical features for a programmer would be syntax highlighting, smart indenting and so on. …
4
votes
5answers
343 views
How do I make text wrapping match current indentation level in vim?
Does anyone know of a way to get vim to wrap long lines of text such that the position of the wrapped text is based on the indentation of the current line? I don't want to reformat …
0
votes
0answers
32 views
Using vim as the editor for the It’s All Text! Firefox Add-on [closed]
I am trying to use vim as the external editor for It's All Text! within Firefox. This works fine for standard http:// web pages, but when I try to use it within TiddlyWiki, 89 inst …
23
votes
21answers
2k views
Favorite (G)Vim plugins/scripts?
What are your favorite (G)Vim plugins/scripts?
87
votes
113answers
8k views
What are your favorite Vim tricks?
Post your favorite Vim tricks (or plug-ins or scripts). One trick per answer.
Try to come up with something other than the basics, btw. :D
3
votes
16answers
320 views
Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for?
For those who are using vim/emacs/terminals,etc (ie, not an IDE proper) what sort of projects are you working on? Are they big? Production? Are these the tools you use at work? Or …
3
votes
3answers
65 views
Tips for Setting Up Complex CTAGS Search Paths
I want to be able to start up vim in an arbitrary subdirectory in my project and have it search up to the project root for the tags file, and then to search in an unrelated directo …
0
votes
0answers
15 views
How to indent ActionScript associative array with VIM
I'm trying to use VIM to format AS3 codes, but have some problems for object definitions.
VIM formats it as below:
var object = {
a : b,
c : d
}
However what I want …
1
vote
2answers
24 views
Call a function in Vim’s `autocmd` command
I want to use the expand function in an autocmd. In particular, I am adapting a tip by Paul Biggar and I wanted to use the following auto command in my .gvimrc:
autocmd FileType t …
1
vote
1answer
33 views
How to set “:make” to use scons?
I know there is a way to make vim run scons instead of make when I press :make.
I had an option that did this in my ~/.vimrc but I removed it a while ago and forgot what it was.
3
votes
0answers
54 views
Vim: wrap text (ie, “gq”) without breaking strings?
I often use gq to warp code… But it isn't very smart when it comes to strings. For example, wrapping:
foo = bar("a b c d e f")
Might result in:
foo = bar("a b c
d e f …
3
votes
1answer
34 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 …
