From a3826762bd62977d43b78d5d4fcddc36a3387d7b Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Wed, 31 Dec 2014 17:23:15 +0000 Subject: [PATCH] Lua Scripts: add recommended editors --- chapters/lua.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/chapters/lua.md b/chapters/lua.md index 8dc68a2..778ca1d 100644 --- a/chapters/lua.md +++ b/chapters/lua.md @@ -57,6 +57,14 @@ end For example, keywords in the above snippet are highlighted, such as if, then, end, return. table.insert is a function which comes with Lua by default. +### Recommended Editors + +Other editors are available, of course. + +* Windows: [Notepad++](http://notepad-plus-plus.org/), [Atom](http://atom.io/) +* Linux: Kate, Gedit, [Atom](http://atom.io/) +* OSX: [Atom](http://atom.io/) + ### Integrated Programming Environments IDEs allow you to debug code like a native application.