SCITE設置修改說明
選項→打開全局設置文件:
一、啓動時最大化:
position.width=-1
position.height=-1
二、用於中文系統,要修改語言。
code.page=936
output.code.page=936
#character.set=134不啓用的話,在輸出區中文可能會亂碼
#character.set=134
#Big5:code.page=950
#UTF8:code.page=65001
三、字體大小,搜索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
四、只啓動一個SCITE實例
check.if.already.open=1
五、顯示工具欄:
toolbar.visible=1
六、關於文件編碼:在windows下一般有兩種ANSI和UTF-8,對應於SCITE裏面的系統內碼和UTF-8帶BOM。
七、右鍵增長用SCITE編輯的選項:用註冊表文件,reg文件中路徑根據本身的狀況本身改。
Windows Registry Editor Version 5.00
八、顯示行號
line.margin.visible=1shell
九、註冊表添加右擊用SCITE編輯:windows
Windows Registry Editor Version 5.00工具
[HKEY_CLASSES_ROOT\cmdfile\shell\用SciTE編輯]字體
[HKEY_CLASSES_ROOT\cmdfile\shell\用SciTE編輯\command]
@="\"F:\\bak\\2下載的文件\\Scite413中文版\\SciTE.exe\" \"%1\""編碼
[HKEY_CLASSES_ROOT\batfile\shell\用SciTE編輯]spa
[HKEY_CLASSES_ROOT\batfile\shell\用SciTE編輯\command]
@="\"F:\\bak\\2下載的文件\\Scite413中文版\\SciTE.exe\" \"%1\""code
用批處理也行:ci
@echo off
reg add "HKCR\cmdfile\shell\用SciTE編輯" /f
reg add "HKCR\cmdfile\shell\用SciTE編輯\command" /ve /d "\"F:\bak\2下載的文件\Scite413中文版\SciTE.exe\" \"%%1\"" /f
reg add "HKCR\batfile\shell\用SciTE編輯" /f
reg add "HKCR\batfile\shell\用SciTE編輯\command" /ve /d "\"F:\bak\2下載的文件\Scite413中文版\SciTE.exe\" \"%%1\"" /fcmd