Use K to easily run a Windows program for the current word
Talk0
1,599pages on
this wiki
this wiki
Tip 642 Printable Monobook Previous Next
created January 21, 2004 · complexity basic · author David Risner · version 6.0
To get the K command to open a Windows program without creating a command prompt window that needs to be closed, you can do the following:
In your vimrc add:
map K yiw:exec "silent !".&kp." ".@0<CR>
You can then set the keywordprg (abbreviated kp above) to the program you want to run.