Procscript
Editor and Debugger
App Builder & Automation Expert
Stay Updated with ProcFu!
Subscribe to our newsletter for the latest tips, updates, and automation insights.
Subscribe NowThe ProcFu editor makes working with ProcScript code a lot easier. It does syntax highlighting, debugging, and a lot more.
Keyword Suggestions
As you type in the editor, it will suggest matching keywords for you to choose from. Clicking one of these suggestions will insert it where your cursor is.

Help for Keywords
If you press F1
while your cursor is on a keyword, the editor will show a help menu for that specific keyword.

Running Your Code
To see how your code works, just hit the Run
button. The console will display errors, outputs, and the return values.

If your code produces an array or object, you can explore it in the console by opening and closing sections of it.

Using Breakpoints
You can set breakpoints by clicking on a line number. These breakpoints are marked with a red dot.

When you run your code with breakpoints, the code will stop running at those points. You can then check the values of your variables.

From there, you have a few options:
- Continue running your code until it finishes or hits another breakpoint.
- Step through your code one line at a time.
- Stop running your code.
And like with output, you can examine any variables that are objects or arrays in more detail by looking into their components.
