@evs, did you create the completion tags yourself? Someplace where you want to share that with others? Sublimetext is the only generic TextEditor that does Autocomplete (for macs) and also gives you a visual map of where you are in the code.
To install on a Mac: copy the Gideros folder to ~/Library/Application Support/Sublime Text 2/Packages
Completion and Colouring (Coloring for non-english speakers out there ) should be ok on all platforms, just put the folder where it's supposed to go!
To set up: Open a Lua file in ST2 then go to View->Syntax->Open all with current extension as... and check Lua (Gideros)
There is a build system in the included folder for Mac which will start the currently open project in Gideros Studio, so you can have Gideros Studio minimised and run the current project from ST2 using whatever connection is set up in Gideros Studio. This uses an applescript which is included (with source if you want to modify it, see what it does).
I'm sure the applescript could be replaced with a shell command for other systems!
To set the build in ST2 go to Tools->Build System and check Gideros
@festival I don't know if this is the reason, but the project you are editing in Sublime Text has to be at the top of the recently opened projects in Gideros Studio for the script to work
Hi, I can get this to launch the player from sublime. But it will not play the project automatically. I have to press the play button in the studio. help?
@zakkwylde with the next version, we'll provide command line tools to control the player. so that you won't need studio to play, stop and get the output contents.
1. Add path of folder with gdbridge.exe to PATH environment variable. 2. Add new build system to Sublime text with such config { "cmd": ["gdrbridge.exe", "play", "%full path to your project file%"], } 3. Run player 4. Ctrl+B
Hi guys, one of the problem I found while using other alternative editor instead of gideros editor is how to sync physical file system with gideros configuration file ([project-name].gproj). You can update it manually but it really reduce productivity.
This is nice task to solve this problem. You need to install nodejs and gideros node command. That's it. Check it out github.com/henrytao-me/gideros
Comments
Author of Learn Lua for iOS Game Development from Apress ( http://www.apress.com/9781430246626 )
Cool Vizify Profile at https://www.vizify.com/oz-apps
Here's the stuff I made for Sublime Text 2.
To install on a Mac:
copy the Gideros folder to ~/Library/Application Support/Sublime Text 2/Packages
Completion and Colouring (Coloring for non-english speakers out there ) should be ok on all platforms, just put the folder where it's supposed to go!
To set up:
Open a Lua file in ST2 then go to View->Syntax->Open all with current extension as...
and check Lua (Gideros)
There is a build system in the included folder for Mac which will start the currently open project in Gideros Studio, so you can have Gideros Studio minimised and run the current project from ST2 using whatever connection is set up in Gideros Studio. This uses an applescript which is included (with source if you want to modify it, see what it does).
I'm sure the applescript could be replaced with a shell command for other systems!
To set the build in ST2 go to Tools->Build System and check Gideros
I think that's it
cheers
evs
Likes: phongtt, gorkem, mrc
Author of Learn Lua for iOS Game Development from Apress ( http://www.apress.com/9781430246626 )
Cool Vizify Profile at https://www.vizify.com/oz-apps
cheers
evs
Are you using a custom color scheme? Would you mind sharing it as well? Or maybe you did already and I didn't do it right. :P
cheers
evs
Likes: avo
edit: geez and now I just realized that is the default. #-o
I can get this to launch the player from sublime. But it will not play the project automatically. I have to press the play button in the studio. help?
Great! You know I have to ask.......when will that be?
Z
2. Add new build system to Sublime text with such config
{
"cmd": ["gdrbridge.exe", "play", "%full path to your project file%"],
}
3. Run player
4. Ctrl+B
This is nice task to solve this problem. You need to install nodejs and gideros node command. That's it.
Check it out github.com/henrytao-me/gideros
Likes: ianchia