sublime text3 配置

//Sublime Text3 配置


/**************************快捷键设置:打开Preferences -> Key Bindings - User***********************************/
[// 删除当前行
{ "keys": ["ctrl+d"], "command":"run_macro_file", "args": {"file":"Packages/Default/Delete Line.sublime-macro"} },
// 复制选中行到行后
{ "keys": ["ctrl+j"], "command":"duplicate_line" },
// 与上行互换
{ "keys": ["alt+up"], "command":"swap_line_up" },
// 与下行互换
{ "keys": ["alt+down"], "command":"swap_line_down" },
{ "keys": ["alt+/","alt+/"], "command":"insert_best_completion" },
//缩进
{ "keys": ["shift+tab"], "command":"unindent" },
]

/**************************设置自动换行 ,vi 模式:打开Preferences ->Settings - User***********************************/
"word_wrap":true,
"ignored_packages": [],
"vintage_start_in_command_mode": true

手动安装插件
去github 下载对应的zip 放在Installed Packages 里,注意文件名后缀

猜你喜欢

转载自www.cnblogs.com/sanmubai/p/10701049.html