sciTE for ruby设置

修改SciTEGlobal.properties文件
if PLAT_WIN
02 position . left = 30
03 position . top = 20
04 # Internationalisation设置编码
05 code . page = 936
06 character . set = 132
07
08 # Indentation设置缩进
09 # 默认是缩排8位,最好是统一改为4位
10 tabsize = 4
11 indent . size = 4
12 # 自动缩进
13 indent . auto = 1
14 indent . automatic = 1
15 indent . opening = 1
16 tab . indents = 1
17 backspace . unindents = 1
18
19 # Wrapping of long lines设置换行
20 wrap = 1
21 output . wrap = 1
22
23 # Sizes and visibility in edit pane控制面板
24 # 去掉行号右边空白
25 line . margin . width = 0
26 # 显示行号
27 line . margin . visible = 1
28
29 # Window sizes and visibility界面
30 # 输出窗在下面
31 # split . vertical = 0
32 # 默认设置中,光标在文件最后一行时垂直滑动条无法再向下滚动,不符合使用习惯
33 end . at . last . line = 0
34 # 显示状态栏
35 statusbar . visible = 1
36
37 # 自动完成
38 autocompleteword . automatic = 1
39
40 # 缺省语言 , 改成 . rb
41 default . file . ext =. rb
42 title . full . path = 1
43 title . show . buffers = 1
其他的修改可以去sciTE官网查看。。

你可能感兴趣的:(Ruby)