Drop support for Sublime Text
No longer supporting Sublime Text. End of an era...
This commit is contained in:
parent
9ab630f8cf
commit
a3e1239eab
3 changed files with 0 additions and 92 deletions
|
@ -1,58 +0,0 @@
|
|||
[
|
||||
{ "keys": ["super+\\"], "command": "toggle_side_bar" },
|
||||
{ "keys": ["ctrl+tab"], "command": "next_view" },
|
||||
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
|
||||
{
|
||||
"keys": ["super+enter"],
|
||||
"command": "run_macro_file",
|
||||
"args": {
|
||||
"file": "res://Packages/Default/Add Line Before.sublime-macro"
|
||||
}
|
||||
},
|
||||
{
|
||||
"keys": ["j", "j"],
|
||||
"command": "_enter_normal_mode",
|
||||
"args": { "mode": "mode_insert" },
|
||||
"context": [{"key": "vi_insert_mode_aware"}]
|
||||
},
|
||||
{
|
||||
"keys": ["super+o"],
|
||||
"command": "show_panel",
|
||||
"args": { "panel": "console", "toggle": true }
|
||||
},
|
||||
{
|
||||
"keys": ["super+shift+o"],
|
||||
"command": "reveal_in_side_bar"
|
||||
},
|
||||
{
|
||||
"keys": ["super+shift+r","p"],
|
||||
"command": "repl_open",
|
||||
"args": {
|
||||
"cmd": ["python", "-i", "-u"],
|
||||
"cwd": "$file_path",
|
||||
"encoding": "utf8",
|
||||
"extend_env": { "PYTHONIOENCODING": "utf-8" },
|
||||
"external_id": "python",
|
||||
"syntax": "Packages/Python/Python.tmLanguage",
|
||||
"type": "subprocess"
|
||||
}
|
||||
},
|
||||
{
|
||||
"keys": ["super+shift+r","j","s"],
|
||||
"command": "repl_open",
|
||||
"args": {
|
||||
"autocomplete_server": true,
|
||||
"cmd": {
|
||||
"linux": ["node", "${packages}/SublimeREPL/config/NodeJS/repl.js"],
|
||||
"osx": ["node", "${packages}/SublimeREPL/config/NodeJS/repl.js"],
|
||||
"windows": ["node.exe", "${packages}/SublimeREPL/config/NodeJS/repl.js"]
|
||||
},
|
||||
"cwd": "$file_path",
|
||||
"encoding": "utf8",
|
||||
"extend_env": { "NODE_NO_READLINE": 1 },
|
||||
"external_id": "js",
|
||||
"syntax": "Packages/JavaScript/JavaScript.tmLanguage",
|
||||
"type": "subprocess"
|
||||
}
|
||||
}
|
||||
]
|
|
@ -1,27 +0,0 @@
|
|||
{
|
||||
"auto_complete_triggers":
|
||||
[
|
||||
{
|
||||
"characters": "<",
|
||||
"selector": "text.html"
|
||||
},
|
||||
{
|
||||
"characters": "/",
|
||||
"selector": "string.quoted.double.html,string.quoted.single.html, source.css"
|
||||
}
|
||||
],
|
||||
"color_scheme": "Packages/User/SublimeLinter/Oceanic Next (SL).tmTheme",
|
||||
"font_face": "Operator Mono",
|
||||
"font_size": 16,
|
||||
"ignored_packages":
|
||||
[
|
||||
"Vintage",
|
||||
"VintageousOrigami"
|
||||
],
|
||||
"tab_size": 2,
|
||||
"theme": "Oceanic Next.sublime-theme",
|
||||
"translate_tabs_to_spaces": true,
|
||||
"vintage_start_in_command_mode": true,
|
||||
"vintageous_use_ctrl_keys": true,
|
||||
"rulers": [80]
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
<snippet>
|
||||
<content><![CDATA[
|
||||
console.log('${1:what}' + ${1:what});
|
||||
]]></content>
|
||||
<tabTrigger>clog</tabTrigger>
|
||||
<scope>source.js</scope>
|
||||
</snippet>
|
Loading…
Reference in a new issue