plugin.xml 596 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?eclipse version="3.4"?>
  3. <plugin>
  4. <extension
  5. point="org.eclipse.ui.handlers">
  6. <handler
  7. class="de.itemis.xtext.utils.jface.internal.handlers.ContentAssistHandler"
  8. commandId="org.eclipse.ui.edit.text.contentAssist.proposals">
  9. <activeWhen>
  10. <with
  11. variable="activeFocusControlId">
  12. <equals
  13. value="org.eclipse.swt.custom.StyledText">
  14. </equals>
  15. </with>
  16. </activeWhen>
  17. </handler>
  18. </extension>
  19. </plugin>