How do I turn off automatic code run on typing?
Sometimes there is a need to disable automatic code running on typing.
For example:
- Running the code slows down your computer and it starts to make noise.
- There is a recursive function in your code that can cause the computer to freeze. However, we have automatic
Loop protection
forfor
,while
,while do
construction.
How to turn of:
- Hover on the
green triangle
. - Set
Live view
switch todisabled
state.
By the way, you can simply Postpone the run of the code.
For example, it will run only 2 seconds after you have finished typing code
:
Updated on: 21/03/2022
Thank you!