Sublime Text 2中文版下载
1
2
3
|
01.[
02. {
"keys"
: [
"ctrl+alt+f"
],
"command"
:
"alignment"
}
03.]
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
01.{
02.
"color_scheme"
:
"Packages/Color Scheme - Default/Monokai.tmTheme"
,
03.
"font_options"
:
04. [
05.
"subpixel_antialias"
06. ],
07.
"font_size"
: 14.0,
08.
"theme"
:
"Nexus.sublime-theme"
,
09.
10.
"highlight_line"
: true,
11.
"word_wrap"
: true,
12.
"trim_trailing_white_space_on_save"
: true,
13.
"line_numbers"
: true,
14.
"line_padding_top"
: 2,
15.
"line_padding_bottom"
: 0,
16.
"auto_indent"
: true,
17.
"auto_match_enabled"
: false,
18.
"draw_minimap_border"
: true,
19.
"draw_white_space"
:
"selection"
,
20.
"match_brackets"
: true,
21.
22.
"translate_tabs_to_spaces"
: false,
23.
"tab_size"
:4,
24.
"detect_indentation"
:true,
25.
"use_tab_stops"
:true
26.
27.}
|
1
|
"file_exclude_patterns": ["*.jpg", "*.gif","*.png"]
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
01.{
02.
"file_exclude_patterns"
: [
"*.jpg"
,
"*.gif"
,
"*.png"
],
03.
"auto_indent"
: true,
04.
"auto_match_enabled"
: true,
05.
"color_scheme"
:
"Packages/Color Scheme - Default/Monokai.tmTheme"
,
06.
"detect_indentation"
: true,
07.
"draw_minimap_border"
: true,
08.
"draw_white_space"
:
"selection"
,
09.
"font_options"
:
10. [
11.
"subpixel_antialias"
12. ],
13.
"font_size"
: 14.0,
14.
"highlight_line"
: true,
15.
"ignored_packages"
:
16. [
17.
"Vintage"
18. ],
19.
"line_numbers"
: true,
20.
"line_padding_bottom"
: 0,
21.
"line_padding_top"
: 2,
22.
"match_brackets"
: true,
23.
"tab_size"
: 4,
24.
"theme"
:
"Nexus.sublime-theme"
,
25.
"translate_tabs_to_spaces"
: false,
26.
"trim_trailing_white_space_on_save"
: true,
27.
"use_tab_stops"
: true,
28.
"word_wrap"
: false
29.}
|
Sublime Text主要快捷键列表:
Ctrl+L 选择整行(按住-继续选择下行)
Ctrl+KK 从光标处删除至行尾
Ctrl+Shift+K 删除整行
Ctrl+Shift+D 复制光标所在整行,插入在该行之前
Ctrl+J 合并行(已选择需要合并的多行时)
Ctrl+KU 改为大写
Ctrl+KL 改为小写
Ctrl+D 选词 (按住-继续选择下个相同的字符串)
Ctrl+M 光标移动至括号内开始或结束的位置
Ctrl+Shift+M 选择括号内的内容(按住-继续选择父括号)
Ctrl+/ 注释整行(如已选择内容,同“Ctrl+Shift+/”效果)
Ctrl+Shift+/ 注释已选择内容
Ctrl+Z 撤销
Ctrl+Y 恢复撤销
Ctrl+M 光标跳至对应的括号
Alt+. 闭合当前标签
Ctrl+Shift+A 选择光标位置父标签对儿
Ctrl+Shift+[ 折叠代码
Ctrl+Shift+] 展开代码
Ctrl+KT 折叠属性
Ctrl+K0 展开所有
Ctrl+U 软撤销
Ctrl+T 词互换
Tab 缩进 自动完成
Shift+Tab 去除缩进
Ctrl+Shift+↑ 与上行互换
Ctrl+Shift+↓ 与下行互换
Ctrl+K Backspace 从光标处删除至行首
Ctrl+Enter 光标后插入行
Ctrl+Shift+Enter 光标前插入行
Ctrl+F2 设置书签
F2 下一个书签
Shift+F2 上一个书签