作者:zhanhailiang 日期:2014-11-21
Sublime Text设置(perfernces > Settings - User)
{ // 使用tab来实现自动完成 "auto_complete_commit_on_tab": true, // 使用颜色主题 "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", // 默认以unix行结束符(\n,LF)作为行结束符 "default_line_ending": "unix", // 对所有空白字符使用点填充 "draw_white_space": "all", // 默认字体集 "font_face": "Courier New", // 默认字体大小 "font_size": 20.0, // 忽略包:Vintage,即忽略vim模式 "ignored_packages": [ "Vintage" ], // 限制你每行代码不超过80个字符 "rulers": [ 80 ], // tab长度 "tab_size": 4, // 主题,需要package install Soda包 "theme": "Soda Dark.sublime-theme", // 将tab自动转成空格 "translate_tabs_to_spaces": true, // 过滤行尾的空白符 "trim_trailing_white_space_on_save": true, // 单词分隔符 "word_separators": "./\\()\"‘-:,.;<>[email protected]#%^&*|+=[]{}`~?:,。!();?“”——、", // 是否自动换行 "word_wrap": true }
Sublime Text扩展包列表
1. Package Control
1、打开 Sublime Text 2,按下 Control + ` 调出 Console,通常这个快捷键会与PC上的其它软件起冲突,需要修改其它软件的这个快捷键。
2、将以下代码粘贴进命令行中并回车:
import urllib2,os;pf=‘Package Control.sublime-package‘;ipp=sublime.installed_packages_path();os.makedirs(ipp) if not os.path.exists(ipp) else None;open(os.path.join(ipp,pf),‘wb‘).write(urllib2.urlopen(‘http://sublime.wbond.net/‘+pf.replace(‘ ‘,‘%20‘)).read())
3、重启 Sublime Text 2,如果在 Preferences → Package Settings中见到Package Control这一项,就说明安装成功了。
2. WordHighlight
通过Package Control Install安装即可,安装完成后Sublime Text就可以支持高亮所有选中文本的功能。
3. Pretty JSON
Preference → Package Settings → Pretty JSON → Settings User:
{ "indent" : 4, "sort_keys" : true }
详情请见:【Sublime】Pretty
JSON插件安装与配置
4. ctags
5. TortoiseSVN
通过Package Control Install安装即可,修改配置如下:
Preference → Package Settings → TortoiseSVN → Settings User:
{ // Auto close commit dialog when no errors, conflicts and merges "autoCloseCommitDialog": false, // 指向TortoiseSVN安装路径下的TortoiseProc.exe "tortoiseproc_path": "C:\\Program Files\\TortoiseSVN\\bin\\TortoiseProc.exe" }
Sublime Text添加PHP Build System
Tools → Build System → New Build System…:
{ // 其中cmd指向php.exe即可 "cmd": ["D:/php/php.exe", "-l", "$file"], "file_regex": "php$", "selector": "source.php" } 最后保存到默认路径,通过使用快捷键Ctrl+B即可完成指定构建任务。
写在最后
因为某种原因导致国内网络访问不了Package Center的问题,请配Hosts:
50.116.34.243 sublime.wbond.net
每个问题总有解决的方案!
时间: 2024-12-08 04:25:46