首页 > 其他 > 详细

sublime2自定义配置

时间:2017-11-20 21:34:46      阅读:332      评论:0      收藏:0      [点我收藏+]

1.settings-User


// Settings in here override those in "Default/Preferences.sublime-settings", and

// are overridden in turn by file type specific settings.

{

"default_encoding": "UTF-8",

"font_size":10,

"ignored_packages":

[

"Vintage"

]

}


2.key Bindings-User

[

   { "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },

   { "keys": ["ctrl+alt+down"], "command": "duplicate_line" },// 复制行

   { "keys": ["ctrl+alt+up"], "command": "duplicate_line" },// 复制行

   { "keys": ["alt+up"], "command": "swap_line_up" }, // 切换行

   { "keys": ["alt+down"], "command": "swap_line_down" }, // 切换行

   { "keys": ["ctrl+up"], "command": "select_lines", "args": {"forward": false} }, // 多行操作

   { "keys": ["ctrl+down"], "command": "select_lines", "args": {"forward": true} }, // 多行操作

   { "keys": ["ctrl+u"], "command": "toggle_side_bar" } // 显示隐藏左边菜单

]


本文出自 “旅行者” 博客,谢绝转载!

sublime2自定义配置

原文:http://881206524.blog.51cto.com/10315134/1983589

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!