首页 > 代码库 > sublime安装配置

sublime安装配置

打华东师范大学校赛的时候,学长谈论到这个编辑器。自定义背景多行多光标同时编辑酷炫爆了。感觉这是一个万能的文本编辑器。通过配置可以写多种语言,支持vim模式,而且只有不到10M。

技术分享

1,首先要配置能打acm的环境。自带编译环境修改为dos环境。

配置编译环境变量。

tool –> Build System –> New Build System

重命名,然后改代码为(我也只是复制粘贴,不知道代码什么意思)

技术分享
{  
  
"encoding": "utf-8",  
  
"working_dir": "$file_path",  
  
"shell_cmd": "g++ -Wall -std=c++11 \"$file_name\" -o \"$file_base_name\"",  
  
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",  
  
"selector": "source.c++",  
  
"variants":  
  
[  
  
{  
  
"name": "Run",  
  
         "shell_cmd": "g++ -Wall -std=c++11 \"$file\" -o \"$file_base_name\" && start cmd /c \"${file_path}/${file_base_name} & pause\""  
  
}  
  
]  
  
}  
View Code

 2,装package control包,view->show console 敲入代码

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())

 技术分享

 

sublime安装配置