vote up 3 vote down star
1

I thought I'd have a try at using Win32 GVim, and I'm finding that it's much more versatile than I realised. At this point I'm finding that for myself a lot of its features are still hidden. As an example I'm used to having a button on the toolbar to run external commands and capturing the output but I found in Vim it's :%!<command> to get this.

I'm wondering what are the limitations of Vim itself (i.e. not Vi's). What, if any, are the features that you've found missing in Vim? Also have you subsequently found a way to enable this feature after all?

flag

You can also do that (%!<cmd>) with :r!<cmd> – Aaron H. Nov 14 '08 at 19:49

10 Answers

vote up 5 vote down check

A programmable shell mode (like emacs) that would make VIM a true IDE for any language. I don't want to switch to emacs just for that...

There is a vim-shell patch http://www.wana.at/vimshell but since it's not part of the standard distribution it is not available on machines I use (and universal availability has always been one of VI's key features!)

link|flag
1  
And it will never be added. See :h shell-window – Zathrus Nov 6 '08 at 19:30
Never say never. See the link in the post. The shell-patch is not that big considering its usefulness. – nimrodm Nov 7 '08 at 5:16
1  
I've seen the patch. It hasn't been maintained and doesn't work anymore, nor did it ever work on non-POSIX systems, which means it would never be integrated into vim. Bram is quite forceful about this -- this feature will not be in vim. – Zathrus Nov 7 '08 at 16:01
vote up 1 vote down

For people who aren't used to use Vim I think all features are hidden without a Cheat Sheet

Put your question as Wiki; it is very subjective

link|flag
vote up 0 vote down

There are lots of features and you just keep discovering new ones as you go. Reading random parts of the docs from time to time can help speed up your knowledge of features.

link|flag
vote up 3 vote down

There have been several other questions very close to this one here, here, here and here.

link|flag
1  
I don't agree. This question is about what features Vim doesn't have. All those questions are about features Vim does have. – Sergio Acosta Nov 5 '08 at 23:41
vote up 1 vote down

A feature that I found very useful to have is a File Explorer, for browsing your file system folders and open files, you can get this feature with this scripts:

Another feature that I found very nice is to have templates or bundles, snippetsEmu emulates TextMate's snippet expansion...

I also like to save my most used macros, so I can use them later when needed, for that I use marvim.

link|flag
vote up 0 vote down

According to this thread, the ability to find a file in a tree-list of files (Command-T in TexMate) is missed in VIM.

One possible solution is:

map "" to ":b 0", then make sure to always open up a "files.txt" file (or some other file that has a list of file names in it) which was usually made by just running "find . -type f -not -path './.svn/.*' > files.txt".

It shows all the files in a tree-like view, I can search through them with ”/”, and when I find the one that I want I can just type “gf”.

link|flag
1  
Its has been added through several external plugins (at least 3 that I know of) – Luc Hermitte Nov 1 '08 at 17:44
One example is fuzzyfinder_textmate: github.com/jamis/fuzzyfinder_textmate – Ton van den Heuvel Nov 25 at 12:16
vote up 2 vote down

Lately, on one of the Vim mailing-lists, there has been a discussion about the lack of (maintained) interaction with external programs.

link|flag
vote up 0 vote down

My main concern is not directly related to vim itself, but to exhuberant ctags: its understanding of C++ is quite limited and it does not provides me as much information as I'd like to to develop my C++ ftplugins. As a consequence we have to do a lot of clumsy parsings in VimL in order to extract the static type of an expression, the namespaces imported in the current scope, etc. [EDIT: most have already be developed in omnicppcomplete]

link|flag
vote up 1 vote down

If you miss a few gui-like features, but you love Vim, perhaps try PIDA, an IDE which embeds GVim itself. It's Linux-only, so sorry about that for you Windows/Mac users.

link|flag
vote up 3 vote down

I would like to be able to undo-redo between vim sessions.

Edit a file, save it, quit vim.

Edit the file a day later and undo the change you made last day.

link|flag
2  
That would be nice, but are there any editors that do this? – Adam Neal Mar 3 at 15:04
Stupid question but what forces you to close the editor? – ojblass Mar 25 at 6:14
@Adam Vim could be the first one :-) @ojblass A single computer may be used by many users. It's better to close your session in that case. – Luc M Mar 25 at 13:38
use git then .. edit close .. commit if you need to revert just revert to previouse version and then edit it ;) – nightingale2k1 Jul 28 at 8:00
@nightingale2k1 Do you keep ALL files into git ? :-) – Luc M Aug 6 at 20:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.