src/Tools/jEdit/src/isabelle.scala
changeset 63422 5cf8dd98a717
parent 63421 3bf02e7fa8a3
child 63444 8191c3e9f2d3
--- a/src/Tools/jEdit/src/isabelle.scala	Thu Jul 07 12:08:00 2016 +0200
+++ b/src/Tools/jEdit/src/isabelle.scala	Thu Jul 07 20:54:41 2016 +0200
@@ -84,19 +84,13 @@
   }
 
 
-  /* indentation */
+  /* text structure */
 
-  def mode_indent_rule(mode: String): Option[IndentRule] =
-    mode match {
-      case "isabelle" => Some(Token_Markup.Indent_Rule)
-      case _ => None
-    }
+  def indent_rule(mode: String): Option[IndentRule] =
+    if (mode == "isabelle") Some(Text_Structure.Indent_Rule) else None
 
-
-  /* structure matchers */
-
-  def structure_matchers(name: String): List[StructureMatcher] =
-    if (name == "isabelle") List(Structure_Matching.Isabelle_Matcher) else Nil
+  def structure_matchers(mode: String): List[StructureMatcher] =
+    if (mode == "isabelle") List(Text_Structure.Matcher) else Nil
 
 
   /* dockable windows */