tags:

views:

526

answers:

7

What's your favorite thing about vim?

I personally enjoy omnicompletion, cscope integration, and ctags all working together.

+4  A: 

The bit that maximizes the window in Windows, "au GUIEnter * simalt ~x" in my _vimrc file.

paxdiablo
I'm really surprised that so many people use Vim on Windows.
Adam Byrtek
Why? Sometimes you don't have a choice of OS, but you can always run vim.
Wahnfrieden
+2  A: 

I enjoy the following things about vim:

  1. The ability to access the command line right from inside vim
  2. Its two modes, which allow me to work faster
  3. The fact that I can extend it with Python, although I haven't taken advantage of that yet.
batbrat
What exactly do you mean under "to access the command line right from inside vim?".
ldigas
Probably he means executing shell commands (see http://vimdoc.sourceforge.net/htmldoc/usr_21.html#21.2 ) This is very handy, for example if you want to use a directory listing in a text.
migu
Ya, that's what I thought.
ldigas
I am sorry, I had computer trouble so I couldn't respond. Yes, I meant what migu said.
batbrat
+1  A: 

Views, syntax highlighting, code folding.

Plugins: Minibufexplorer, NERD_Tree

skinp
+2  A: 

Purely aesthetic, but for me it's the zenburn colour scheme.

link appears to be dead :(
inkedmn
For that matter, I am really fond of wombat theme - http://dengmao.wordpress.com/2007/01/22/vim-color-scheme-wombat/
Victor Farazdagi
+1  A: 

macros, registers, syntax highlighting

Plugins : Latex-suite, taglist, matrix

Taurus Olson
What exactly is Latex suite./ Does it make latex way easier?
mikelikespie
Latex-suite is a plugin to do Latex with Vim. It integrates macros for latex, compilation...http://vim-latex.sourceforge.net/
Taurus Olson
A: 

I like my custom syntax highlighting which helps me remember syntax rules for languages I'm learning.

too much php
A: 

Taglist, the C/C++ IDE and the awesome bufferexplorer, with the bufferexplorer being the most awesome enhancement for me personally.

First off i coded using a tabbed aproach and switching to tabs with gt and gT. I was fairly content with that approach until i started using the bufferexplorer. It simply shows you a list of open buffers with \be (probably a mnemonic for buffer explore) and i enjoy that even more than the tabbed approach.

tr9sh