zishuiym / vim

Automatically exported from code.google.com/p/vim
0 stars 0 forks source link

Include icon in Windows context menu #249

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What version of the product are you using? On what operating system?
- GVim 7.4 (Aug 10, 2013)
- Windows 7, 64-bit

Please include the vim icon in the Windows context menu when right-clicking on 
a file to edit.  This would make it much easier to find the "Edit with Vim" 
entry, especially on context menus that have numerous other additional menus, 
many of which also already have icons.

Original issue reported on code.google.com by brian.ma...@betteradmin.com on 18 Aug 2014 at 9:00

GoogleCodeExporter commented 9 years ago
I have a fix. But I couldn't test it. I had trouble setting up the build 
environment.
Can someone test it for me, please?

The fix is here: 
https://code.google.com/r/marioweber88-vim/source/detail?r=ed13ee673efda7fdacf0c
db53e98bd6b97b30ee5

Original comment by marioweb...@gmail.com on 7 Apr 2015 at 11:04

GoogleCodeExporter commented 9 years ago
Thanks for stepping forward and making those changes. For building Vim with 
Windows, see this wiki entry: 
http://vim.wikia.com/wiki/Build_Vim_in_Windows_with_Visual_Studio

Note those changes need WINVER=0x0500 so you need to adjust the Makefile and 
have APPVER=5.0 then you can successfully build it.

I compiled it and installed it manually as described in the readme (e.g. copied 
the dll to c:\windows\system32, merged the reg file, changed the path in the 
registry to point to the actual gvim.exe binary and right clicked on a file. 
Unfortunately, there was no icon in the popup menu. 

So could you please have another look? Thanks.

Original comment by chrisbr...@googlemail.com on 8 Apr 2015 at 8:37

GoogleCodeExporter commented 9 years ago
I'll look at it again.

I'm using Windows 8.1 64-bit and VS2013.

I couldn't build with the makefile at all. I got an error for a missing file.

So I created a new project in VS and copied the source files. I had to make 
some more changes, because the variable oldenv was not defined. I didn't commit 
those changes, because I thought this error was due to my build setup being 
wrong.

But using this I could compile and I saw the icons in the context menu. Only 
problem was an error message when I selected an entry. I think this was because 
of the oldenv problem I didn't use unicode when creating the process for vim.

Original comment by marioweb...@gmail.com on 9 Apr 2015 at 4:22

GoogleCodeExporter commented 9 years ago
Think I fixed it =)

https://code.google.com/r/marioweber88-vim/source/detail?r=b3ed4ffac395f73e2e693
6a3b51be132f669ba14#

Works fine on my system.
Let me know if it works for you too.

Original comment by marioweb...@gmail.com on 9 Apr 2015 at 9:39

Attachments:

GoogleCodeExporter commented 9 years ago
Works fine now. 

Only needed to change APPVER to 5.0 in Makefile, as described above, when 
compiled with MSVC compiler. And also add -lgdi32 to LIBS in Make_ming when 
compiled with MinGW (MinGW64 in my case).

Original comment by andrei.o...@gmail.com on 9 Apr 2015 at 11:58