Introducing GËL (Beta) = Gedit + LÖVE
Posted: Wed Jan 08, 2014 12:34 am
Newest build: 2014-13-01
Fixed a glaring mistake with the keyboard snippets, they were love.image instead of love.keyboard. Oops.
GËL is an advanced LÖVE snippet system along with syntax highlighting & custom commands for Gedit.
- Add brackets around selected code
- Input functions & commands through shorthand and tab
- Edit functions by tabbing through them (dollar sign represent caret position)
- Helpful definitions that you can tab through when using snippets
- View all of LÖVE's possible commands with:
- Run the game from Gedit with a shortcut
- Run the script using Lua from Gedit with a shortcut
- Search LÖVE's wiki in a browser from Gedit with a shortcut
- Proper LÖVE syntax highlighting
Now available on Github!
There is bound to be bugs and better ways to do things so be sure to report things and whatnot
Fixed a glaring mistake with the keyboard snippets, they were love.image instead of love.keyboard. Oops.
GËL is an advanced LÖVE snippet system along with syntax highlighting & custom commands for Gedit.
- Add brackets around selected code
Code: Select all
isGorgeous >> ({"['isGorgeous']"})
- Input functions & commands through shorthand and tab
Code: Select all
point + tab >> love.graphics.point(x, y)
- Edit functions by tabbing through them (dollar sign represent caret position)
Code: Select all
love.graphics.point($x, y) + tab >> love.graphics.point(x, $y)
- Helpful definitions that you can tab through when using snippets
Code: Select all
newquad + tab >> love.graphics.newQuad(x, y, width, height, width_of_the_image, height_of_the_image)
- View all of LÖVE's possible commands with:
Code: Select all
Ctrl+Spacebar
- Run the game from Gedit with a shortcut
Code: Select all
Ctrl+L >> Your_Game :D
- Run the script using Lua from Gedit with a shortcut
Code: Select all
Shift+Ctrl+L >> Lunar Power! :D
- Search LÖVE's wiki in a browser from Gedit with a shortcut
Code: Select all
Select code >> Ctrl+Shift+F >> Wiki Search :D
- Proper LÖVE syntax highlighting
Now available on Github!
There is bound to be bugs and better ways to do things so be sure to report things and whatnot