I downloaded vim-7.3.tar.bz2, which is said containing source and runtime. I unpacked it but I cannot find the executable for vim program. Where is it?
I downloaded vim-7.3.tar.bz2, which is said containing source and runtime. I unpacked it but
Share
The usual steps are:
There are many ways to customize the whole process, you should do
$ ./configure --helpbefore anything to have an idea of what you can do.The first step is where you define all the options used for building.
$ ./configurewithout options just uses the default settings.The second step is the building itself.
The last step is where the executable is moved to the path given at configuration time,
/home/username/bin/vimin my example.Another solution is to simply do
$ make, move the executable where you want and make sure this location belongs to your pathorcreate an alias.