solarus-games / solarus-quest-editor

This repository was moved to GitLab: https://gitlab.com/solarus-games/solarus-quest-editor
Other
96 stars 30 forks source link

Script editor: Add autocomplete scripts function #99

Open maxamine opened 9 years ago

maxamine commented 9 years ago

it would be useful if the script editor offers us the option to complete scripts in coding as in notepad++ or sublime text. it will allow to code faster and to correct script syntax using the (tab key or spacebar).

christopho commented 9 years ago

Unfortunately, I don't think it cannot be done accurately. If someone knows a tool that provides auto-completion for Lua including with custom types, suggestions are welcome.

maxamine commented 9 years ago

https://atom.io/packages/autocomplete-emp-lua https://github.com/mydevelopergames/ComputerCraftStub

maxamine commented 8 years ago

Here is a text editor which allows those features...

http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-tools/2128920-lua-editor-beta-1-1_2-for-computercraft-with

christopho commented 8 years ago

Partial completion feature should be possible, for example to complete local variable names and require strings.

maxamine commented 8 years ago

good idea^^