A Plugin for running Aql Queries commands in Sublime Text.
{ "keys": ["ctrl+e", "ctrl+enter"], "command": "arango_exec" },
{ "keys": ["ctrl+y", "ctrl+enter"], "command": "arango_explain" },
{ "keys": ["ctrl+alt+y"], "command": "arango_list_connection" }
- Package Control: Install Package
ArangoExec
- Restart Sublime Text
- Clone to your packages folder
git clone git@github.com:jjchiw/ArangoExec.git
- Restart Sublime Text
'Preferences' -> 'Package Settings' -> 'ArangoExec'
{
"connections": {
"someConnection" : {
"host" : "127.0.0.1",
"port" : 8529,
"username": "user",
"password": "password",
"database": "super_graphs"
},
"TestStress" : {
"host" : "127.0.0.1",
"port" : 8529,
"username": "user",
"password": "password",
"database": "test_stress"
}
}
}
- Use credentials
Function Intellisense (autocompletion)Collections, Edges intellisense- I know there are more things, but I'm not really sure right now what else :)
Inspired and Based on SQLExec & SublimeHttpRequester