Sublime Configuration

简介: 配置空格,中文支持,制表符
Sublime

# Build system
{
    "cmd": ["/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6", "-u", "$file"],
    "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
    "selector": "source.python",
    "env": {"PYTHONIOENCODING": "utf8"},
}

# User setting
{
	"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
	"expand_tabs_on_save": true,
	"font_size": 14,
	"ignored_packages":
	[
		"Vintage"
	],
	"tab_size": 4,
	"translate_tabs_to_spaces": true,
	"update_check": false,
}

相关文章
|
4月前
|
XML Java 数据格式
idea application context not configured for this file的问题的解决
idea application context not configured for this file的问题的解决
49 0
vscode配置eslint自动格式化报错“The setting is deprecated. Use editor.codeActionsOnSave instead with a source“
vscode配置eslint自动格式化报错“The setting is deprecated. Use editor.codeActionsOnSave instead with a source“
528 0
vscode配置eslint自动格式化报错“The setting is deprecated. Use editor.codeActionsOnSave instead with a source“
IDEA 出现问题:pom.xml提示Element connectors is not allowed here解决方案
IDEA 出现问题:pom.xml提示Element connectors is not allowed here解决方案
1808 0
sublime text里添加对Gradle配置文件的支持
sublime text里添加对Gradle配置文件的支持
113 0
sublime text里添加对Gradle配置文件的支持
|
开发工具 git HTML5
SubLime Text3 常用插件总结
近来开始恶补前端知识,在一定的技能基础上,逐渐开始进阶的学习和使用。因此在这里罗列下,SubLime Text3 常用插件: 1、Emmet 提高HTML & CSS3编写速度。 2、Theme – Soda 一直用的一款皮肤 3、sideBarEnhancements 侧边栏右键增效插件,提高页面处理速度。
1168 0
|
Java Android开发 开发工具
eclipse 关于*.properties 文件 中文显示为Unicode,无法显示中文的问题(Properties Editor)
只要使用Properties Editor编辑*.properties 文件 即可:一、以下为在线安装Properties Editor的过程1、在eclipse下 "帮助"(help)--- 2、Install New Software3、Add4、Name:Properties Editor Location:http://propedit.
5124 0
sublime--package control的配置与插件安装
自动配置:   准备一个安装好的 sublime text 。这里我的是版本3;   1. 快捷键:ctrl + ~;调出控制台,因为我的是版本3,所以在控制台中输入下边这段代码: 1 import urllib.
1204 0