如何在记事本++编辑器中为新文档设置默认文本?
how to set default text for new document in notepad++ editor?
我在 Notepad++ 中成功将默认语言设置为 java,但没有设置默认代码。所以请有人建议我在创建新文档时如何将此代码设置为默认代码。
自动生成的默认代码是:
public class Main{
public static void main(String args[])throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line;
while((line=br.readLine())!=null){
}
}
}
您可以为此目的使用插件 NewFileBrowser。它带有一些默认值,使您能够创建自己的模板。
它可以通过插件管理器获得。
有关详细信息,请参阅 this tutorial。
编辑:
您可以通过插件的选项菜单编辑模板的初始文本:
我在 Notepad++ 中成功将默认语言设置为 java,但没有设置默认代码。所以请有人建议我在创建新文档时如何将此代码设置为默认代码。
自动生成的默认代码是:
public class Main{
public static void main(String args[])throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line;
while((line=br.readLine())!=null){
}
}
}
您可以为此目的使用插件 NewFileBrowser。它带有一些默认值,使您能够创建自己的模板。
它可以通过插件管理器获得。 有关详细信息,请参阅 this tutorial。
编辑:
您可以通过插件的选项菜单编辑模板的初始文本: