How to use vim as your IDE
Vim can be transformed into a powerful Integrated Development Environment (IDE) through the use of plugins and custom configurations. In this article we are going to use the latter to allow you to compile a project from vim Once you are able to compile your code without having to leave the vim window, you can say that vim is your IDE. However, in order to do so, you will need to use a powerful vim feature called the Location List. It is a small window that pops up at the bottom of the current window, and we are going to use it for displaying the compilation result. If there are compilation errors, we will be able to navigate directly to them from the Location List window. First, we need to setup the command that we are going to use for compiling the source code. For example, we can use nmake to compile a project in Windows: set makeprg=nmake Vim comes with some predefined patterns for the error formats of the compilers, so that vim can parse them and navigate from the err...