That's great to hear; thank you!OttoRobba wrote:I've been using ZB for a couple of days. I figured that I should give it a second look.
Well, color me impressed. I knew that the general functionality of it was great but it has by far been the better editor for Lua. I kinda have to make it my default editor now. Kudos, it is a nice piece of software.
> 1st - That "Clean UI" is really close to what I'm using here - not a fan of the toolbar with the icons and would love to be able to turn it off. Looking forward to a release that allows that.
yes, that's coming shortly. You will be able to turn the toolbar, the statusbar, and possibly the menubar off (although there are some challenger with the menubar to make shortcuts still work). One complication with the toolbar is that I'd like to make it a bit more dynamic and to show it when the script is being run or debugged. So, with the current plan, even if you turn it off, it will pop back up when the debugging is started; or would you like to turn it off completely?
I've check in several changes that we discussed earlier. I also added settings for different folding types; for example, you will be able to set "arrow" type, which will show fold markers as those are usually seen on OSX. Will push those later today as I complete the testing on all supported platforms.
> 2nd - Is it possible to wrap lines in the output? I've attached it to the right side so I can view more of my code while still getting the output for any errors and debugging. Messages tend to get a bit long though and I find myself scrolling around.
Yes, try "ide:GetOutput():SetWrapMode(wxstc.wxSTC_WRAP_WORD)" from the console. I'm thinking about enabling it by default or possible adding a configuration setting.
> 3rd - Something that would be a killer feature would be showing code hints when inputting function arguments. Brackets introduced that for javascript:
Yes, that looks nice, although it requires two things: be able to display the tooltip (it's already there) and to figure out parameters from custom functions (it's not there yet, but is planned). You do mean this for user functions, right?
> 4th - (Ok, I lied) Really happy with my current configs. Only one thing bugs me - The bright, white edge lines when something is folded. Is it possible to change this color? I tried the styles.fold options but they don't affect it.
This color seems to always match the default color, so it will be the same as the text foreground color. You can slightly change the appearance and disable it completely. For example, try "ide:GetEditor():SetFoldFlags(16)" to set one line or "ide:GetEditor():SetFoldFlags(0)" to disable them completely. "ide:GetEditor():SetFoldFlags(20)" will set it back to the default. I'll probably set it to one line by default and add a setting for those who want to disable them completely.