Intellij有像Toad这样的自动替换功能吗?

问题描述 投票:0回答:1

Intellij有像auto replace这样的Toad功能吗?

键盘:ss + spacebar ==> select * from

intellij-idea editor
1个回答
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

© www.soinside.com 2019 - 2024. All rights reserved.