Skip to content

Commit

Permalink
Add necessities for package control
Browse files Browse the repository at this point in the history
  • Loading branch information
s-clerc committed Jul 29, 2020
1 parent 23d5b51 commit 4d5060b
Show file tree
Hide file tree
Showing 4 changed files with 109 additions and 0 deletions.
78 changes: 78 additions & 0 deletions Main.sublime-menu
Original file line number Diff line number Diff line change
@@ -1,4 +1,82 @@
[
{
"caption": "Preferences",
"mnemonic": "n",
"id": "preferences",
"children":
[
{
"caption": "Package Settings",
"mnemonic": "P",
"id": "package-settings",
"children":
[
{
"caption": "Slyblime",
"children":
[
{
"caption": "Upgrade SublimeREPL to work with Sly",
"command": "sly_upgrade_sublime_repl"
},
{
"caption": "Downgrade SublimeREPL to the original version of Python",
"command": "sly_downgrade_sublime_repl"
},
{"caption": "-"},
{
"command": "open_file", "args":
{
"file": "${packages}/Slyblime/sly.sublime-settings"
},
"caption": "Settings – Default"
},
{
"command": "open_file", "args":
{
"file": "${packages}/User/sly.sublime-settings"
},
"caption": "Settings – User"
},
{ "caption": "-" },
{
"command": "open_file", "args":
{
"file": "${packages}/Slyblime/sly.sublime-keymap"
},
"caption": "Keybindings – Default"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (OSX).sublime-keymap",
"platform": "OSX"
},
"caption": "Key Bindings – User"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (Linux).sublime-keymap",
"platform": "Linux"
},
"caption": "Key Bindings – User"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (Windows).sublime-keymap",
"platform": "Windows"
},
"caption": "Key Bindings – User"
},
{ "caption": "-" },
]
}
]
}
]
},
{
"caption": "Sly",
"id": "sly",
Expand Down
8 changes: 8 additions & 0 deletions dependencies.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{

"*": {
"*": [
"SublimeREPL"
]
}
}
3 changes: 3 additions & 0 deletions messages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"install": "messages/install.md"
}
20 changes: 20 additions & 0 deletions messages/install.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
___ ___ ___ ___ ___ ___ ___
/\ \ /\__\ |\__\ /\ \ /\__\ ___ /\__\ /\ \
/::\ \ /:/ / |:| | /::\ \ /:/ / /\ \ /::| | /::\ \
/:/\ \ \ /:/ / |:| | /:/\:\ \ /:/ / \:\ \ /:|:| | /:/\:\ \
_\:\~\ \ \ /:/ / |:|__|__ /::\~\:\__\ /:/ / /::\__\ /:/|:|__|__ /::\~\:\ \
/\ \:\ \ \__\ /:/__/ /::::\__\ /:/\:\ \:|__| /:/__/ __/:/\/__/ /:/ |::::\__\ /:/\:\ \:\__\
\:\ \:\ \/__/ \:\ \ /:/~~/~ \:\~\:\/:/ / \:\ \ /\/:/ / \/__/~~/:/ / \:\~\:\ \/__/
\:\ \:\__\ \:\ \ /:/ / \:\ \::/ / \:\ \ \::/__/ /:/ / \:\ \:\__\
\:\/:/ / \:\ \ \/__/ \:\/:/ / \:\ \ \:\__\ /:/ / \:\ \/__/
\::/ / \:\__\ \::/__/ \:\__\ \/__/ /:/ / \:\__\
\/__/ \/__/ ~~ \/__/ \/__/ \/__/

# Slyblime

Hi thanks for installing slyblime.

To get started, you'll need to **upgrade SublimeREPL to use Python 3.8**.
To do that, type `Sly: Upgrade SublimeREPL to work with Sly` into the command palette and follow the instructions.

Then, to connect to a Slynk server just use the `Sly: Connect to Slynk` command and start lisping.

0 comments on commit 4d5060b

Please sign in to comment.