You can move selected code right or left. Move right with TAB and move left with SHIFT + TAB.
True but beware, especially of the first line - still messy when pasting blocks of code to match the indent level of the destination.
The thing is that this even happens when you copy the script from an event handler into another event handler, you still get the indents which you need to bulk select and shift+tab back which is mildly annoying.
:cough: dark modeā¦ :cough:
You young whippersnappers need to kick that habit. Induces eyestrain, headaches, and early onset presbyopia. Bright backgrounds with dark text are always superior. Look up how camera aperture affects depth of field and apply that to a human's pupils.
Dark mode was actually kicked around a little bit, but having it just in script editors didnāt really make sense. The entire rest of the designer would still be locked in ālight modeā, so itād just be weird. And having theming support for the entire designer is basically a non-starter; itās too tied into Vision.
Yeahā¦ you canāt do that anymore
I'll still take just editors over nothing haha!
@PGriffith
Been using 8.1.18 on Windows machines and Iām loving the new editor. However there is one change/regression that is bugging me.
On prior script editors, the opening parentheses, curly braces, brackets etcā¦ are highlighted when you are one the closing of the same. However in 8.1.18 it doesnāt seem to be doing that.
Example:
8.1.11
8.1.18
On longer statements it is super handy to try and find those errors where you are missing a closing braces or something.
Any idea if this is getting put back in? Or is there a setting Iām missing to bring this back?
Updated to 8.1.18 yesterday, I was excited to use the new editorā¦
But the first frustration came very quicky:
start typing "{}".format
ā¦
Oh cool, autocompletetion and all !
type the first parenthesis, end up with this:
Wait, what just happened ?
edit: little gif showcasing it. Iām not pressing enter or selecting anything, just typing my regular .format()
.
And another thingā¦
When opening up a scripts that is quite longā¦ the right hand side where there are normally all the functions created by the script is blank. This is super annoying.
It does throw and error in the designer console:
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at org.fife.ui.rsyntaxtextarea.folding.PythonFoldParser.getFolds(PythonFoldParser.java:87)
at org.fife.ui.rsyntaxtextarea.folding.DefaultFoldManager.reparse(DefaultFoldManager.java:445)
at org.fife.ui.rsyntaxtextarea.folding.DefaultFoldManager$1.parse(DefaultFoldManager.java:477)
at org.fife.ui.rsyntaxtextarea.ParserManager.actionPerformed(ParserManager.java:163)
at java.desktop/javax.swing.Timer.fireActionPerformed(Unknown Source)
at java.desktop/javax.swing.Timer$DoPostEvent.run(Unknown Source)
at java.desktop/java.awt.event.InvocationEvent.dispatch(Unknown Source)
at java.desktop/java.awt.EventQueue.dispatchEventImpl(Unknown Source)
at java.desktop/java.awt.EventQueue$4.run(Unknown Source)
at java.desktop/java.awt.EventQueue$4.run(Unknown Source)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
at java.desktop/java.awt.EventQueue.dispatchEvent(Unknown Source)
at com.inductiveautomation.snap.swing.RibsEventQueue.dispatchEvent(RibsEventQueue.java:99)
at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.desktop/java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.desktop/java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.desktop/java.awt.EventDispatchThread.run(Unknown Source)
Can you post (or DM me) the script you're using here?
Thanks to @bschroeder and @mazeyrat for sending in samples (and @bschroeder for noticing the crucial insight) - the issue with parsing is with continuation lines/expressions wrapped to multiple lines. Iām going to do my best to work around it (ideally for 8.1.19) but for now, avoid patterns like this:
for key in ["abc-%s" % site,
"def-%s" % site,
"ghi-%s" % site]:
Or other continuations with mixed indentation:
def abc2():
doSomething(
a,
)
VERY cool! Definitely excited for this one!!
Really cool, super excited for this. I see you keep showing it in script editor/script console. I assume (hope) this functionality extends when I am writing a script on a button onAction
? That is what irks me the most currently - having to switch from a vision window to the script library to see my functions documentation.
Hi! Iāve encountered this bug wherein the right side of the Scripting is empty. This applies to all of our projects and scripts under Scripting.
Read like 4 posts up where this exact bug is addressed.