SCITE设置修改说明

SCITE设置修改说明
选项→打开全局设置文件:
1、启动时最大化:
position.width=-1
position.height=-1
2、用于中文系统,要修改语言。
code.page=936
output.code.page=936
#character.set=134不启用的话,在输出区中文可能会乱码
#character.set=134
#Big5:code.page=950
#UTF8:code.page=65001
3、字体大小,搜索font.base,设置示例:
if PLAT_WIN
font.base=font:Verdana,size:14
font.small=font:Verdana,size:14
font.comment=font:宋体,size:14
font.code.comment.box=$(font.comment)
font.code.comment.line=$(font.comment)
font.code.comment.doc=$(font.comment)
font.code.comment.nested=$(font.comment)
font.text=font:Times New Roman,size:11
font.text.comment=font:宋体,size:9
font.embedded.base=font:Verdana,size:9
font.embedded.comment=font:Comic Sans MS,size:8
font.monospace=font:Consolas,size:15
font.vbs=font:Candara,size:10
4、只启动一个SCITE实例
check.if.already.open=1
5、显示工具栏:
toolbar.visible=1
6、关于文件编码:在windows下通常有两种ANSI和UTF-8,对应于SCITE里面的系统内码和UTF-8带BOM。
7、右键增加用SCITE编辑的选项:用注册表文件,reg文件中路径根据自己的情况自己改。
Windows Registry Editor Version 5.00
8、显示行号
line.margin.visible=1

9、注册表添加右击用SCITE编辑:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOTcmdfileshell用SciTE编辑]

[HKEY_CLASSES_ROOTcmdfileshell用SciTE编辑command]
@=""F:\bak\2下载的文件\Scite413中文版\SciTE.exe" "%1""

[HKEY_CLASSES_ROOTatfileshell用SciTE编辑]

[HKEY_CLASSES_ROOTatfileshell用SciTE编辑command]
@=""F:\bak\2下载的文件\Scite413中文版\SciTE.exe" "%1""

 用批处理也行:

@echo off
reg add "HKCRcmdfileshell用SciTE编辑" /f
reg add "HKCRcmdfileshell用SciTE编辑command" /ve /d ""F:ak2下载的文件Scite413中文版SciTE.exe" "%%1"" /f
reg add "HKCRatfileshell用SciTE编辑" /f
reg add "HKCRatfileshell用SciTE编辑command" /ve /d ""F:ak2下载的文件Scite413中文版SciTE.exe" "%%1"" /f

 

原文地址:https://www.cnblogs.com/liuzhaoyzz/p/11416537.html