Python.sublime-build { "cmd": ["python", "-u", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "selector": "source.python", "encoding":"utf-8", "variants": [ { "name": "Run", "shell": true, "cmd" : ["start", "cmd", "/k", "python", "${file_path}/${file_base_name}.py"] } ] } Ruby.sublime-build { "cmd": ["ruby", "$file"], "file_regex": "^(...*?):([0-9]*):?([0-9]*)", "selector": "source.ruby", "encoding":"utf-8", "variants": [ { "name": "Run", "shell": true, "cmd" : ["start", "cmd", "/k", "ruby", "${file_base_name}.rb"] } ] } C++.sublime-build { "cmd": ["g++", "${file}", "-o", "${file_path}/${file_base_name}"], "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", "working_dir": "${file_path}", "selector": "source.c, source.c++", "encoding":"cp936", "variants": [ { "name": "Run", "shell": true, "cmd" : ["start", "cmd", "/k", "${file_path}/${file_base_name} &&echo. & pause && exit"] } ] } JavaC.sublime-build { "cmd": ["javac", "-encoding", "utf-8", "$file"], "file_regex": "^(...*?):([0-9]*):?([0-9]*)", "selector": "source.java", "encoding":"utf-8", "variants": [ { "name": "Run", "shell": true, "cmd" : ["start", "cmd", "/k", "java", "${file_base_name}"] } ] }
sublime text 各语言的sublime-build文件
标签:
  更新于:
2017/09/20
阅读:979
最近热门
- 美团DGIN模型:Deep Group Interest Modeling of Full Lifelong User Behaviors for CTR Prediction
- BPE(Byte pair encoding)分词
- jQuery字符串替换
- SSB - Sample Selection Bias - 样本选择偏差问题
- markdown \mathbb 黑板粗体(Blackboard bold)字符
- thriftpy2:一个用于 Python 的 Thrift 协议实现库
- 如何理解阿里Qwen3的发布,意味着大模型赛道迎来新变革?
- 华为昇腾910B:华为自主研发的高性能人工智能处理器芯片
- Graphormer:一种基于Transformer架构的图深度学习模型
- Minimum Detectable Effect(MDE)最小可检测效应
最常浏览
- 016 推荐系统 | 排序学习(LTR - Learning To Rank)
- 偏微分符号
- i.i.d(又称IID)
- 利普希茨连续条件(Lipschitz continuity)
- (error) MOVED 原因和解决方案
- TextCNN详解
- 找不到com.google.protobuf.GeneratedMessageV3的类文件
- Deployment failed: repository element was not specified in the POM inside distributionManagement
- cannot access com.google.protobuf.GeneratedMessageV3 解决方案
- CLUSTERDOWN Hash slot not served 问题原因和解决办法
×