Difference between revisions of "Redo"

From PyMOLWiki
Jump to navigation Jump to search
(Incentive PyMOL 2.5 redo)
 
Line 1: Line 1:
 +
''(Incentive PyMOL only feature)''
  
'''redo''' reapplies the conformational change of the object currently being edited.
+
See [[undo]] for guidance on PyMOL's undo feature.
  
===USAGE===
+
== Usage ==
  redo
+
  redo [, steps]
  
===SEE ALSO===
+
* '''steps''' = integer: number of steps to undo
[[Undo]], [[Push undo]]
+
 
 +
== PyMOL API ==
 +
<source lang="python">
 +
cmd.redo(int steps=1)
 +
</source>
 +
 
 +
== Example ==
 +
  redo
 +
  redo 5
 +
 
 +
== SEE ALSO ==
 +
[[Undo]]
  
 
[[Category:Commands|Redo]]
 
[[Category:Commands|Redo]]
 
[[Category:Editing Module|Redo]]
 
[[Category:Editing Module|Redo]]

Latest revision as of 13:12, 29 April 2021

(Incentive PyMOL only feature)

See undo for guidance on PyMOL's undo feature.

Usage

redo [, steps]
  • steps = integer: number of steps to undo

PyMOL API

cmd.redo(int steps=1)

Example

 redo
 redo 5

SEE ALSO

Undo