Intellij
是否具有auto replace
之类的Toad
功能?
键盘:ss + spacebar ==> select * from
答案 0 :(得分:1)
IntelliJ有live templates
。
例如,输入以下代码,然后将光标放在花括号内:
public class MyClass {
// put cursor under this line
}
现在输入psvm
并点击TAB
,将显示以下内容
public class MyClass {
// put cursor under this line
public static void main(String[] args) {
}
}
有许多实时模板。此示例中的一个表示“ public static void main”(psvm
)-您可以自己研究它们。请注意,许多取决于上下文。
IntelliJ文档:Live Templates