I have been programming almost exclusively in Vim since 1/1/2001, and I feel that Vim fulfulls all my needs as an editor/IDE, but I can't help but wonder if perhaps there have been some new killer features developed for other IDEs in the last decade that would allow me to be more productive than I can be using Vim. So I ask: What are the most important IDE features missing in Vim??
|
2
|
|||||||
|
|
|
|
||||||||||||||
|
|
|
It's like the old question "What's worn under a kilt?" Answer: "Nothing. Everything's in perfect working order!". But seriously, I'd like to see a more intuitive (easy to use) help system added to Vim. |
||||
|
|
|
The real question is: what do VIM have that IDEs are missing. |
||||||||||
|
|
|
I miss the excellent refactoring support and code tips from tools such as Resharper. Regexs are powerful for code modification, but understanding the code as Resharper does is just a tad better IMO. Fortunately I can get both Resharper and Vim in Visual Studio so I am happy. |
||||||
|
|
|
I find that refactoring would be a real nice thing to have. Changing a java package name in vim with lots of source files can be pretty cumbersome. |
||||||
|
|
|
There is nothing missing in Vim that an IDE has. The only thing we could argue about is; Vim needs to be customized and IDE comes out of the box. Let me comment the other answeres and how to solve such "needs".
As mentioned, use :make and learn how to customize it.
Use the very well known ropevim (for Python), it makes a great reafactoring tool. You won't need more than that. There are many others, search for your language.
I use this snippet together with mapping to TAB (I think supertab plugin does that)
in Vim is perfect, you just have to learn it's system. It has it's own conventions how are things organized.
I don't know for other languages than Python, but running pdb and !python % does it's job. |
||
|
|
|
Search in files: In most editors, there is a separate window doing the search in files, and simultaneously editing can continue on the main window. The search results are updated as and when they are found. Also the current results can be viewed by clicking on it, even when the searching is ongoing, without waiting for the entire search to be completed.(whereas in cim one has to wait till vimgrep/ctags has finished to view the results) This is particularly useful for search in large number of files. So basically something like a search in background and simultaneously show results which can be clicked on to view them simultaneously. (something like Microsoft Visual Studio 6.0 does) |
||||||||||
|
|
|
The things I missed were code completion and debugging. That's why I started using eclim http://eclim.sourceforge.net/index.html so I could use vim for what it does best and eclipse when I actually need it. Try it out - it's a fantastic combination. |
||
|
|
|
|
Originally the refactoring was the killer feature that made us switch from Emacs. I have now used Eclipse extensively for Java for the last 6 years, and I expect any replacement to have:
Plus some more :) Edit: I occasionally miss the Emacs functionality inside Eclipse, but the Eclipse editor has become stronger so it is not so bad anymore. In this regard the Save Action allowing a Format at every save was a killer. This ensures that changes show up properly in the source repository. |
|||
|
|
