src/Pure/PIDE/markup.scala
changeset 63474 f66e3c3b0fb1
parent 63347 e344dc82f6c2
child 63475 31016a88197b
--- a/src/Pure/PIDE/markup.scala	Wed Jul 13 14:28:15 2016 +0200
+++ b/src/Pure/PIDE/markup.scala	Wed Jul 13 15:19:16 2016 +0200
@@ -372,7 +372,17 @@
   val COMMAND_TIMING = "command_timing"
 
 
-  /* toplevel */
+  /* command indentation */
+
+  object Command_Indent
+  {
+    val name = "command_indent"
+    def unapply(markup: Markup): Option[Int] =
+      if (markup.name == name) Indent.unapply(markup.properties) else None
+  }
+
+
+  /* goals */
 
   val SUBGOALS = "subgoals"
   val PROOF_STATE = "proof_state"