Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 363 Bytes

File metadata and controls

25 lines (21 loc) · 363 Bytes
tags
command

/goto

Syntax

/goto :<labelname>

Description

This moves the macro execution to the location of :labelname in the macro.

Example

:MyLabel
/if ( ${Me.Moving} ) /goto :MyLabel
/echo I am no longer moving!