我正在编写一些 XML 模板来加快编写模式的速度。我想知道是否可以使用多个光标位置进行“创建元素”,类似于 Eclipse 在 java 类中生成一个方法,它允许您通过返回类型、方法名称和参数进行选项卡(它们显示为由矩形选择)。
这是我尝试过的模板:
<xs:element name="${cursor}" type="${cursor}" />
它将光标移动到名称属性,但我无法选择类型属性。有没有办法在 Eclipse 中使用 xml 来做到这一点?
从eclipseonetips中提取,它适用于我:
<xs:element name="${whateverUniqueNameYouWant}" type="${cursor}" />