I had WWD installed from Eclipse Marketplace but when I tried .yml
or .yaml
→ Open With → Other... there was no YAML Editor to choose:
I de- and re-installed WWD. To no avail.
Additional question:
Do I remember correctly that the need for an Eclipse restart after SW installation wasn't necessary somewhen in the past? (That's how OSGi's bundle:install
is supposed to work anyway, isn't it?) All of the recent installations I performed (in v2022-12) needed a restart.
UPDATE (answers add'l question)
See John Arthorne's answer to Why does Eclipse need to be restarted after installing a plugin? (And–Hooray!–I remembered correctly. No need to retire soon.)
The Eclipse platform does support dynamically installing plugins without restarting. In the past this option was made available via an "Apply Now" option. Unfortunately for this to work properly the plugin itself also needs to support dynamic behavior. The large majority of Eclipse plugins out there are not dynamic themselves - they don't clean up after themselves, and they don't dynamically react to services or extensions being added/removed after they have started. [...]
Eclipse Wild Web Developer supports different languages and formats via the Generic Text Editor.
To your additional question:
This has always depended on which extension points are used (whether the extensions are read at startup, lazy at first use or dynamically) and on the implementation of the plugins using these extension points, OSGi declarative services or other non-declarative, but programmatic ways of extension. If you deny Restart Now, then not everything might be available. In other words, Apply Now happens implicitly and you can choose Restart Now in addition. Quite some time ago a flag was considered for the plugin to install to suppress the Restart Now prompt. But the user experience of such a wrongly set flag would be much worse than a few unnecessary Restart Now prompts. To be sure that it works, you would have to test the whole functionality after installations in all combinations of plugins in different versions being present before installation and which might have been installed before with or without restart.