...
Undo is a staple command of virtually all computer software. Shogun Shogun Post maintains a history stack of 20 operations, and enables you to undo in one step an optional [nLevels] number of those operations.
...
Name | Flag arguments | Argument type | Exclusive to | Comments |
---|---|---|---|---|
enable | 0 | — | disable | — |
disable | 0 | — | enable | — |
Return value
void
Examples
Code Block | ||
---|---|---|
| ||
undo; //undo the previous operation |
...
undo 6; // undo the previous 6 operations. |
Additional information
Related commands
...