Setting up vim under Win 10

I try to setup vim, which is quite difficult for me.

Personally I prefer to run programs via the cmd.

So I set the home path of my vim 7.4 via advance settings,

so that I can use the command gvim.exe in the cmd.

But I would prefer to use a shorter command to run the gvim.exe.

How can I make such a shortcut?

Instead of typing gvim.exe I would prefer typing vim or gvim.

best greetings

Tim

1

2 Answers

Firstly, you can rename it to whatever you want so you don't have to type out gvim.exe. You could call it v.exe if you really wanted, as long as nothing clashes with it. The .exe is entirely optional as well. So you could just call v file.txt.

Then you can place it on your machine somewhere and add it's path to the environmental variable PATH, meaning it can be run from anywhere on your machine (You can also place it somewhere that already is in PATH, but it's a lot neater to give it it's own location, say C:\Tools\GVIM\).

To add to the PATH variable: (guide here for general use, the interface is actually a lot nicer in Windows 10):

  1. Go to Control Panel -> System
  2. Click Advanced system settings
  3. Click the Environment Variables button.
  4. Under System Variables, select Path, then click Edit. (You can choose if you want it for just your User, the list at the top, or the whole machine, the list at the bottom)

enter image description here

  1. Click New and add your folder path (C:\Tools\GVIM\)
  2. Click OK to all screens, you can now use your command from any folder in CMD.
3

Just install cygwin from cygwin.org! It handles all your unix utilities as exe files and gvim is included. After installing, go to a cygwin shell and cd /cygdrive/c to get to the root of your C:\ drive.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like