如何更好地使用eclipse代码模板(PHP)?

时间:2010-04-04 19:41:01

标签: eclipse eclipse-pdt eclipse-templates

我遇到的一个特殊问题是在Eclipse PDT模板中使用$ {word_selection}。

我最近尝试在Eclipse PDT 2.1中使用一些代码模板来加速一些常见任务。我们使用了很多getter / setter,所以我写了下面的模板。

function get${word_selection}() {
return $$this->getData('${word_selection}');
}

function set${word_selection}($$${word_selection}) {
$$this->setData('${word_selection}', $$${word_selection});
}

我将模板命名为“getset”,我知道使用Code Assist的唯一方法是键入:“getset”然后点击我的代码辅助键(我将它设置为Esc,但我认为默认为Ctrl +空间)。问题是,这实际上并没有让我选择$ {word_selection}使用的单词。

如何键入我的模板名称,点击组合键,并同时选择一个单词?

我还想知道人们设置了哪些模板以及使用模板加速编程的任何其他技巧。

1 个答案:

答案 0 :(得分:3)

请看这个链接:http://2tbsp.com/node/104 它描述了两件事:pdt代码模板和代码片段。

  

如何键入我的模板名称,点击组合键,并同时选择一个单词?

我认为使用代码模板无法实现这一点,但使用代码段。我个人根本不使用它们,但我可能会开始: - )