Tuesday, June 23, 2015

How to get autocomplete of CSS3 properties on Eclipse inside the tag of GWT UiBinder?

(Cross-posted from StackOverflow: http://stackoverflow.com/questions/30823483/how-to-get-autocomplete-of-css3-properties-on-eclipse-inside-the-uistyle-tag - I got 0 answers and comments there so far)

I can enable autocomplete of CSS3 properties for .css and .gss files on Eclipse by following this answer by Nitin DahyabhaiFriend:

The default profile in Luna is still CSS2. Bring up the Properties dialog for your web project and you can change the default CSS profile for that project on the Web Content Settings page. If the CSS file is not in a web project, or if you don't want to use the project default, you can also set it using the file's Properties dialog (also Web Content Settings page).

... but that doesn't enable the autocompletion of CSS3 properties (such as background-position, border-radius and so on) inside *.ui.xml files (GWT UiBinder). For example:


<ui:style>      .randomStuff {          background-repeat: no-repeat;          background-position: center;          background-s <ctrl+space... no luck!>      }  </ui:style>

How can I enable autocomplete of CSS3 inside those files?


--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment