一、怎么修改文件的保存路径
在Editplus安装目录下,打开editplus_u.ini此配置文件,修改Workspace Path=D:Program FilesToolsEditPlus 路径
二、Editplus调整字体大小
Tools-->Preferences-->Fonts,然后选择合适的字体大小点击OK(18号字体就行)
三、修改背景色
四、怎么取消自动备份bak文件
tools—>preference —>File,取消Create backup file when saving前面的勾
五、EditPlus添加到右键菜单
tools-->Preferences-->General 在Add EditPlus to reght mouse button前打对勾
六、点击Document下的WordWrap进行换行
七、一键编译Java运行环境
1、Tools——>Configure User Tools."——>User tools
2、修改工作组名字
点击Group Name将New中的Group 1修改成Java
3、点击AddTool下的Program,在"Menu Text"中输入:编译Java程序、在"Command"中输入:javac、在"Argument"中输入:-d.$(FileName)、在"Initial"中输入:$(FileDir)、Action中选择:Capture output
4、重复以上步骤,
在"Menu Text"中输入:运行Java程序、在"Command"中输入:java、在"Argument"中输入:$(FileNameNoExt)、在"Initial"中输入:$(FileDir)、在Action中选择:None
在"Menu text"中输入:编译java package、在"Command"中输入:javac -d . 在"Argument"中输入$(FileName) 、在"Initial"中输入:$(FileDir)、在Action中选择:Capture output
在"Menu Text"中输入:运行java package、在"Command"中输入:java、在"Argument"中输入:$(CurSel).$(FileNameNoExt) 、在"Initial"中输入:$(FileDir)、在Action中选择:Capture output
5、点击OK,完成设置