I am developing some reference documentation in a Java project in Eclipse. The resources folder has my HTML pages and several GIF and PNG images that will be displayed inside the HTML.
Now for my convenience, I want to view images in the file structure of the project, see what they show, and which one to include in the HTML page. If I double-click the image, the default action that Eclipse performs is this: it opens in Internet Explorer. Since I don't like IE, I want to change this default action. In fact, I would rather have it open some kind of image viewer inside Eclipse.
I know this is a file association issue. However, I could not get it to work.
What I tried to do so far:
As an example, I did this for * .gif.
I went to Preferences -> General -> Editors -> File Associations . There I clicked "Add ..." and added *.gif .
Then I clicked "Add ..." in the "Related Editors" section and added an external gif view:

I expected this to open the default image viewer from my Windows system, but for some reason, it still opens it in Internet Explorer.
So what can I do to change this? Does Eclipse have an internal image viewer?
source share