What are your favorite (G)Vim plugins/scripts?
closed as not constructive by Nicol Bolas, animuson, BoltClock♦ Jan 28 '12 at 2:24
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
The NERD tree allows you to explore your filesystem and to open files and directories. It presents the filesystem to you in the form of a tree which you manipulate with the keyboard and/or mouse. It also allows you to perform simple filesystem operations. The tree can be toggled easily with :NERDTreeToggle which can be mapped to a more suitable key. The keyboard shortcuts in the NERD tree are also easy and intuitive. Edit: Added synopsis |
|||||||||
|
|
Pathogen plugin and more things commented by Steve Losh |
|||||
|
|
Taglist, a source code browser plugin for Vim, is currently the top rated plugin at the Vim website and is my favorite plugin. |
|||||
|
|
A very nice grep replacement for GVim is Ack. A search plugin written in Perl that beats Vim's internal grep implementation and externally invoked greps, too. It also by default skips any CVS directories in the project directory, e.g. '.svn'. This blog shows a way to integrate Ack with vim. |
||||
|
|
|
I love snipMate. It's simular to snippetsEmu, but has a much better syntax to read (like Textmate). |
||||
|
|
|
A.vim is a great little plugin. It allows you to quickly switch between header and source files with a single command. The default is |
||||
|
|
|
I really like the SuperTab plugin, it allows you to use the tab key to do all your insert completions. |
||||
|
|
|
I have recently started using a plugin that highlights differences in your buffer from a previous version in your RCS system (Subversion, git, whatever). You just need to press a key to toggle the diff display on/off. You can find it here: http://github.com/ghewgill/vim-scmdiff. Patches welcome! |
||||
|
|
|
||||
|
|
|
Not a plugin, but I advise any Mac user to switch to the MacVim distribution which is vastly superior to the official port. As for plugins, I used VIM-LaTeX for my thesis and was very satisfied with the usability boost. I also like the Taglist plugin which makes use of the |
||||
|
|
|
clang complete - the best c++ code completion I have seen so far. By using an actual compiler (that would be clang) the plugin is able to complete complex expressions including STL and smart pointers. |
||||
|
|
|
Tomas Restrepo posted on some great Vim scripts/plugins. He has also pointed out some nice color themes on his blog, too. Check out his Vim category. |
|||||
|
|
No one said matchit yet ? Makes HTML / XML soup much nicer http://www.vim.org/scripts/script.php?script_id=39 |
||||
|
|
|
My latest favourite is Command-T. Granted, to install it you need to have Ruby support and you'll need to compile a C extension for Vim. But oy-yoy-yoy does this plugin make a difference in opening files in Vim! |
|||||
|
|
Conque Shell : Run interactive commands inside a Vim buffer Conque is a Vim plugin which allows you to run interactive programs, such as bash on linux or powershell.exe on Windows, inside a Vim buffer. In other words it is a terminal emulator which uses a Vim buffer to display the program output. |
||||
|
|
|
With version 7.3, undo branches was added to vim. A very powerful feature, but hard to use, until Steve Losh made Gundo which makes this feature possible to use with a ascii representation of the tree and a diff of the change. A must for using undo branches. |
||||
|
|
|
The vcscommand plugin provides global ex commands for manipulating version-controlled source files and it supports CVS,SVN and some other repositories. You can do almost all repository related tasks from with in vim: |
||||
|
|
|
I like taglist and fuzzyfinder, those are very cool plugin |
|||||
|
|
This script is based on the eclipse Task List. It will search the file for FIXME, TODO, and XXX (or a custom list) and put them in a handy list for you to browse which at the same time will update the location in the document so you can see exactly where the tag is located. Something like an interactive 'cw' |
||||
|
|
|
One Plugin that is missing in the answers is NERDCommenter, which let's you do almost anything with comments. For example {add, toggle, remove} comments. And more. See this blog entry for some examples. |
||||
|
|
|
I really love the snippetsEmu Plugin. It emulates some of the behaviour of Snippets from the OS X editor TextMate, in particular the variable bouncing and replacement behaviour. |
||||
|
|
|
Zenburn color scheme and good fonts - Droid Sans Mono on Linux, Consolas on Windows. |
||||
|
|
|
Just gonna name a few I didn't see here, but which I still find extremely helpful:
|
||||
|
|
|
If you're on a Mac, you got to use peepopen, fuzzyfinder on steroids. |
||||
|
|
|
I use the following two plugins all the time:
|
||||
|
|
|
For vim I like a little help with completions. Vim has tons of completion modes, but really, I just want vim to complete anything it can, whenver it can. I hate typing ending quotes, but fortunately this plugin obviates the need for such misery. Those two are my heavy hitters. This one may step up to roam my code like an unquiet shade, but I've yet to try it. |
||||
|
|
|
Txtfmt (The Vim Highlighter) Screenshots The Txtfmt plugin gives you a sort of "rich text" highlighting capability, similar to what is provided by RTF editors and word processors. You can use it to add colors (foreground and background) and formatting attributes (all combinations of bold, underline, italic, etc...) to your plain text documents in Vim. The advantage of this plugin over something like Latex is that with Txtfmt, your highlighting changes are visible "in real time", and as with a word processor, the highlighting is WYSIWYG. Txtfmt embeds special tokens directly in the file to accomplish the highlighting, so the highlighting is unaffected when you move the file around, even from one computer to another. The special tokens are hidden by the syntax; each appears as a single space. For those who have applied Vince Negri's conceal/ownsyntax patch, the tokens can even be made "zero-width". |
||||
|
|
|
"I map the "Command + /" keys so i can just comment stuff out while in insert mode imap :i |
||||
|
|