src/Tools/jEdit/src/text_structure.scala
author paulson <lp15@cam.ac.uk>
Wed, 24 Apr 2024 20:56:26 +0100
changeset 80149 40a3fc07a587
parent 76765 c654103e9c9d
permissions -rw-r--r--
More tidying of proofs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
     1
/*  Title:      Tools/jEdit/src/text_structure.scala
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     3
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
     4
Text structure based on Isabelle/Isar outer syntax.
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     5
*/
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     6
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     7
package isabelle.jedit
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     8
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
     9
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
    10
import isabelle._
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
    11
73909
1d0d9772fff0 tuned imports;
wenzelm
parents: 73367
diff changeset
    12
import java.util.{List => JList}
1d0d9772fff0 tuned imports;
wenzelm
parents: 73367
diff changeset
    13
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    14
import org.gjt.sp.jedit.indent.{IndentRule, IndentAction}
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
    15
import org.gjt.sp.jedit.textarea.{TextArea, StructureMatcher, Selection}
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    16
import org.gjt.sp.jedit.buffer.JEditBuffer
63423
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
    17
import org.gjt.sp.jedit.Buffer
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
    18
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
    19
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    20
object Text_Structure {
63425
wenzelm
parents: 63424
diff changeset
    21
  /* token navigator */
wenzelm
parents: 63424
diff changeset
    22
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    23
  class Navigator(syntax: Outer_Syntax, buffer: JEditBuffer, comments: Boolean) {
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 68730
diff changeset
    24
    val limit: Int = PIDE.options.value.int("jedit_structure_limit") max 0
63425
wenzelm
parents: 63424
diff changeset
    25
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    26
    def iterator(line: Int, lim: Int = limit): Iterator[Text.Info[Token]] = {
63445
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    27
      val it = Token_Markup.line_token_iterator(syntax, buffer, line, line + lim)
68730
0bc491938780 tuned signature;
wenzelm
parents: 67014
diff changeset
    28
      if (comments) it.filterNot(_.info.is_space) else it.filter(_.info.is_proper)
63445
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    29
    }
63425
wenzelm
parents: 63424
diff changeset
    30
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    31
    def reverse_iterator(line: Int, lim: Int = limit): Iterator[Text.Info[Token]] = {
63445
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    32
      val it = Token_Markup.line_token_reverse_iterator(syntax, buffer, line, line - lim)
68730
0bc491938780 tuned signature;
wenzelm
parents: 67014
diff changeset
    33
      if (comments) it.filterNot(_.info.is_space) else it.filter(_.info.is_proper)
63445
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    34
    }
63425
wenzelm
parents: 63424
diff changeset
    35
  }
wenzelm
parents: 63424
diff changeset
    36
wenzelm
parents: 63424
diff changeset
    37
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    38
  /* indentation */
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    39
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    40
  object Indent_Rule extends IndentRule {
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    41
    private val keyword_open = Keyword.theory_goal ++ Keyword.proof_open
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    42
    private val keyword_close = Keyword.proof_close
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    43
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    44
    def apply(
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    45
      buffer: JEditBuffer,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    46
      current_line: Int,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    47
      prev_line0: Int,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    48
      prev_prev_line0: Int,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    49
      actions: JList[IndentAction]
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    50
    ): Unit = {
63425
wenzelm
parents: 63424
diff changeset
    51
      Isabelle.buffer_syntax(buffer) match {
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
    52
        case Some(syntax) =>
63425
wenzelm
parents: 63424
diff changeset
    53
          val keywords = syntax.keywords
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
    54
          val nav = new Navigator(syntax, buffer, true)
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    55
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    56
          val indent_size = buffer.getIndentSize
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    57
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    58
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    59
          def line_indent(line: Int): Int =
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    60
            if (line < 0 || line >= buffer.getLineCount) 0
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    61
            else buffer.getCurrentIndentForLine(line, null)
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    62
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    63
          def line_head(line: Int): Option[Text.Info[Token]] =
73345
8204f7b53007 tuned --- fewer warnings;
wenzelm
parents: 73344
diff changeset
    64
            nav.iterator(line, 1).nextOption()
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    65
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    66
          def head_is_quasi_command(line: Int): Boolean =
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    67
            line_head(line) match {
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    68
              case None => false
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    69
              case Some(Text.Info(_, tok)) => keywords.is_quasi_command(tok)
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    70
            }
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    71
64518
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
    72
          val prev_line: Int =
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
    73
            Range.inclusive(current_line - 1, 0, -1).find(line =>
66176
b51a40281016 tuned signature;
wenzelm
parents: 66175
diff changeset
    74
              Token_Markup.Line_Context.before(buffer, line).get_context == Scan.Finished &&
66178
5f02bf37324f clarified prev_line: stop at blank line;
wenzelm
parents: 66176
diff changeset
    75
              (!Token_Markup.Line_Context.after(buffer, line).structure.improper ||
5f02bf37324f clarified prev_line: stop at blank line;
wenzelm
parents: 66176
diff changeset
    76
                Token_Markup.Line_Context.after(buffer, line).structure.blank)) getOrElse -1
64518
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
    77
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    78
          def prev_line_command: Option[Token] =
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    79
            nav.reverse_iterator(prev_line, 1).
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    80
              collectFirst({ case Text.Info(_, tok) if tok.is_begin_or_command => tok })
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    81
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    82
          def prev_line_span: Iterator[Token] =
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    83
            nav.reverse_iterator(prev_line, 1).map(_.info).takeWhile(tok => !tok.is_begin_or_command)
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    84
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    85
          def prev_span: Iterator[Token] =
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    86
            nav.reverse_iterator(prev_line).map(_.info).takeWhile(tok => !tok.is_begin_or_command)
63450
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
    87
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    88
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
    89
          val script_indent: Text.Info[Token] => Int = {
64621
7116f2634e32 clarified module name;
wenzelm
parents: 64536
diff changeset
    90
            val opt_rendering: Option[JEdit_Rendering] =
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    91
              if (PIDE.options.value.bool("jedit_indent_script"))
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    92
                GUI_Thread.now {
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    93
                  (for {
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    94
                    text_area <- JEdit_Lib.jedit_text_areas(buffer)
76765
c654103e9c9d more robust Document.Pending_Edits: cover all nodes simulataneously, and thus support proper Snapshot.switch;
wenzelm
parents: 75423
diff changeset
    95
                    rendering <- Document_View.get_rendering(text_area)
c654103e9c9d more robust Document.Pending_Edits: cover all nodes simulataneously, and thus support proper Snapshot.switch;
wenzelm
parents: 75423
diff changeset
    96
                  } yield rendering).nextOption()
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    97
                }
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    98
              else None
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    99
            val limit = PIDE.options.value.int("jedit_indent_script_limit")
63481
wenzelm
parents: 63480
diff changeset
   100
            (info: Text.Info[Token]) =>
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   101
              opt_rendering match {
63481
wenzelm
parents: 63480
diff changeset
   102
                case Some(rendering) if keywords.is_command(info.info, Keyword.prf_script) =>
wenzelm
parents: 63480
diff changeset
   103
                  (rendering.indentation(info.range) min limit) max 0
wenzelm
parents: 63480
diff changeset
   104
                case _ => 0
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   105
              }
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   106
          }
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   107
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   108
          def indent_indent(tok: Token): Int =
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   109
            if (keywords.is_command(tok, keyword_open)) indent_size
75423
d164bf04d05e tuned --- accomodate scala3;
wenzelm
parents: 75393
diff changeset
   110
            else if (keywords.is_command(tok, keyword_close)) { - indent_size }
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   111
            else 0
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   112
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   113
          def indent_offset(tok: Token): Int =
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
   114
            if (keywords.is_command(tok, Keyword.proof_enclose)) indent_size
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   115
            else 0
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   116
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   117
          def indent_structure: Int =
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   118
            nav.reverse_iterator(current_line - 1).scanLeft((0, false))(
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   119
              { case ((ind, _), Text.Info(range, tok)) =>
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   120
                  val ind1 = ind + indent_indent(tok)
63479
wenzelm
parents: 63478
diff changeset
   121
                  if (tok.is_begin_or_command && !keywords.is_command(tok, Keyword.prf_script)) {
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   122
                    val line = buffer.getLineOfOffset(range.start)
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   123
                    line_head(line) match {
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   124
                      case Some(info) if info.info == tok =>
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   125
                        (ind1 + indent_offset(tok) + line_indent(line), true)
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   126
                      case _ => (ind1, false)
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
   127
                    }
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   128
                  }
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   129
                  else (ind1, false)
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   130
              }).collectFirst({ case (i, true) => i }).getOrElse(0)
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   131
63480
wenzelm
parents: 63479
diff changeset
   132
          def indent_brackets: Int =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73358
diff changeset
   133
            prev_line_span.foldLeft(0) {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73358
diff changeset
   134
              case (i, tok) =>
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73358
diff changeset
   135
                if (tok.is_open_bracket) i + indent_size
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73358
diff changeset
   136
                else if (tok.is_close_bracket) i - indent_size
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73358
diff changeset
   137
                else i
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73358
diff changeset
   138
            }
63480
wenzelm
parents: 63479
diff changeset
   139
wenzelm
parents: 63479
diff changeset
   140
          def indent_extra: Int =
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 68730
diff changeset
   141
            if (prev_span.exists(keywords.is_quasi_command)) indent_size
63480
wenzelm
parents: 63479
diff changeset
   142
            else 0
wenzelm
parents: 63479
diff changeset
   143
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   144
          val indent =
66179
148d61626014 indent = 0 for blank lines: produce less whitespace by default;
wenzelm
parents: 66178
diff changeset
   145
            if (Token_Markup.Line_Context.before(buffer, current_line).get_context != Scan.Finished)
148d61626014 indent = 0 for blank lines: produce less whitespace by default;
wenzelm
parents: 66178
diff changeset
   146
              line_indent(current_line)
148d61626014 indent = 0 for blank lines: produce less whitespace by default;
wenzelm
parents: 66178
diff changeset
   147
            else if (Token_Markup.Line_Context.after(buffer, current_line).structure.blank) 0
148d61626014 indent = 0 for blank lines: produce less whitespace by default;
wenzelm
parents: 66178
diff changeset
   148
            else {
64518
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   149
              line_head(current_line) match {
73105
578a33042aa6 clarified: command keyword position is sufficient (amending 693a39f2cddc);
wenzelm
parents: 71601
diff changeset
   150
                case Some(info) =>
578a33042aa6 clarified: command keyword position is sufficient (amending 693a39f2cddc);
wenzelm
parents: 71601
diff changeset
   151
                  val tok = info.info
64518
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   152
                  if (tok.is_begin ||
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   153
                      keywords.is_before_command(tok) ||
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   154
                      keywords.is_command(tok, Keyword.theory)) 0
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   155
                  else if (keywords.is_command(tok, Keyword.proof_enclose))
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   156
                    indent_structure + script_indent(info) - indent_offset(tok)
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   157
                  else if (keywords.is_command(tok, Keyword.proof))
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   158
                    (indent_structure + script_indent(info) - indent_offset(tok)) max indent_size
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   159
                  else if (tok.is_command) indent_structure - indent_offset(tok)
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   160
                  else {
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   161
                    prev_line_command match {
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   162
                      case None =>
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   163
                        val extra =
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   164
                          (keywords.is_quasi_command(tok), head_is_quasi_command(prev_line)) match {
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   165
                            case (true, true) | (false, false) => 0
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   166
                            case (true, false) => - indent_extra
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   167
                            case (false, true) => indent_extra
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   168
                          }
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   169
                        line_indent(prev_line) + indent_brackets + extra - indent_offset(tok)
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   170
                      case Some(prev_tok) =>
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   171
                        indent_structure + indent_brackets + indent_size - indent_offset(tok) -
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   172
                        indent_offset(prev_tok) - indent_indent(prev_tok)
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   173
                    }
64536
e61de633a3ed more uniform indentation of new line, even if it is empty (relevant for non-proof commands, e.g. 'definition', 'context');
wenzelm
parents: 64518
diff changeset
   174
                  }
e61de633a3ed more uniform indentation of new line, even if it is empty (relevant for non-proof commands, e.g. 'definition', 'context');
wenzelm
parents: 64518
diff changeset
   175
                case None =>
e61de633a3ed more uniform indentation of new line, even if it is empty (relevant for non-proof commands, e.g. 'definition', 'context');
wenzelm
parents: 64518
diff changeset
   176
                  prev_line_command match {
e61de633a3ed more uniform indentation of new line, even if it is empty (relevant for non-proof commands, e.g. 'definition', 'context');
wenzelm
parents: 64518
diff changeset
   177
                    case None =>
e61de633a3ed more uniform indentation of new line, even if it is empty (relevant for non-proof commands, e.g. 'definition', 'context');
wenzelm
parents: 64518
diff changeset
   178
                      val extra = if (head_is_quasi_command(prev_line)) indent_extra else 0
e61de633a3ed more uniform indentation of new line, even if it is empty (relevant for non-proof commands, e.g. 'definition', 'context');
wenzelm
parents: 64518
diff changeset
   179
                      line_indent(prev_line) + indent_brackets + extra
e61de633a3ed more uniform indentation of new line, even if it is empty (relevant for non-proof commands, e.g. 'definition', 'context');
wenzelm
parents: 64518
diff changeset
   180
                    case Some(prev_tok) =>
e61de633a3ed more uniform indentation of new line, even if it is empty (relevant for non-proof commands, e.g. 'definition', 'context');
wenzelm
parents: 64518
diff changeset
   181
                      indent_structure + indent_brackets + indent_size -
e61de633a3ed more uniform indentation of new line, even if it is empty (relevant for non-proof commands, e.g. 'definition', 'context');
wenzelm
parents: 64518
diff changeset
   182
                      indent_offset(prev_tok) - indent_indent(prev_tok)
e61de633a3ed more uniform indentation of new line, even if it is empty (relevant for non-proof commands, e.g. 'definition', 'context');
wenzelm
parents: 64518
diff changeset
   183
                  }
64518
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   184
              }
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   185
            }
63423
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
   186
63425
wenzelm
parents: 63424
diff changeset
   187
          actions.clear()
63439
5ad98525e918 more robust;
wenzelm
parents: 63434
diff changeset
   188
          actions.add(new IndentAction.AlignOffset(indent max 0))
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
   189
        case None =>
63423
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
   190
      }
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   191
    }
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   192
  }
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   193
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   194
  def line_content(
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   195
    buffer: JEditBuffer,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   196
    keywords: Keyword.Keywords,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   197
    range: Text.Range,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   198
    ctxt: Scan.Line_Context
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   199
  ): (List[Token], Scan.Line_Context) = {
67014
e6a695d6a6b2 tuned signature;
wenzelm
parents: 66183
diff changeset
   200
    val text = JEdit_Lib.get_text(buffer, range).getOrElse("")
66175
wenzelm
parents: 66173
diff changeset
   201
    val (toks, ctxt1) = Token.explode_line(keywords, text, ctxt)
66173
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   202
    val toks1 = toks.filterNot(_.is_space)
66175
wenzelm
parents: 66173
diff changeset
   203
    (toks1, ctxt1)
66173
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   204
  }
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   205
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   206
  def split_line_content(
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   207
    buffer: JEditBuffer,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   208
    keywords: Keyword.Keywords,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   209
    line: Int,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   210
    caret: Int
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   211
  ): (List[Token], List[Token]) = {
66173
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   212
    val line_range = JEdit_Lib.line_range(buffer, line)
66176
b51a40281016 tuned signature;
wenzelm
parents: 66175
diff changeset
   213
    val ctxt0 = Token_Markup.Line_Context.before(buffer, line).get_context
66175
wenzelm
parents: 66173
diff changeset
   214
    val (toks1, ctxt1) = line_content(buffer, keywords, Text.Range(line_range.start, caret), ctxt0)
wenzelm
parents: 66173
diff changeset
   215
    val (toks2, _) = line_content(buffer, keywords, Text.Range(caret, line_range.stop), ctxt1)
66173
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   216
    (toks1, toks2)
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   217
  }
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   218
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   219
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   220
  /* structure matching */
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   221
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   222
  object Matcher extends StructureMatcher {
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   223
    private def find_block(
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   224
      open: Token => Boolean,
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   225
      close: Token => Boolean,
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   226
      reset: Token => Boolean,
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   227
      restrict: Token => Boolean,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   228
      it: Iterator[Text.Info[Token]]
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   229
    ): Option[(Text.Range, Text.Range)] = {
73344
f5c147654661 tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   230
      val range1 = it.next().range
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   231
      it.takeWhile(info => !info.info.is_command || restrict(info.info)).
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   232
        scanLeft((range1, 1))(
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   233
          { case ((r, d), Text.Info(range, tok)) =>
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   234
              if (open(tok)) (range, d + 1)
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   235
              else if (close(tok)) (range, d - 1)
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   236
              else if (reset(tok)) (range, 0)
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   237
              else (r, d) }
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   238
        ).collectFirst({ case (range2, 0) => (range1, range2) })
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   239
    }
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   240
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   241
    private def find_pair(text_area: TextArea): Option[(Text.Range, Text.Range)] = {
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   242
      val buffer = text_area.getBuffer
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   243
      val caret_line = text_area.getCaretLine
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   244
      val caret = text_area.getCaretPosition
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   245
59074
7836d927ffca tuned signature;
wenzelm
parents: 58901
diff changeset
   246
      Isabelle.buffer_syntax(text_area.getBuffer) match {
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
   247
        case Some(syntax) =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   248
          val keywords = syntax.keywords
58750
1b4b005d73c1 added option jedit_structure_limit;
wenzelm
parents: 58749
diff changeset
   249
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
   250
          val nav = new Navigator(syntax, buffer, false)
58750
1b4b005d73c1 added option jedit_structure_limit;
wenzelm
parents: 58749
diff changeset
   251
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   252
          def caret_iterator(): Iterator[Text.Info[Token]] =
63425
wenzelm
parents: 63424
diff changeset
   253
            nav.iterator(caret_line).dropWhile(info => !info.range.touches(caret))
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   254
63427
wenzelm
parents: 63425
diff changeset
   255
          def reverse_caret_iterator(): Iterator[Text.Info[Token]] =
wenzelm
parents: 63425
diff changeset
   256
            nav.reverse_iterator(caret_line).dropWhile(info => !info.range.touches(caret))
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   257
63425
wenzelm
parents: 63424
diff changeset
   258
          nav.iterator(caret_line, 1).find(info => info.range.touches(caret))
58756
eb5d0c58564d ignore improper tokens to avoid ambiguity of Range.touches (assuming that relevant tokens are separated properly);
wenzelm
parents: 58755
diff changeset
   259
          match {
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   260
            case Some(Text.Info(range1, tok)) if keywords.is_command(tok, Keyword.theory_goal) =>
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   261
              find_block(
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   262
                keywords.is_command(_, Keyword.proof_goal),
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   263
                keywords.is_command(_, Keyword.qed),
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   264
                keywords.is_command(_, Keyword.qed_global),
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   265
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   266
                  keywords.is_command(t, Keyword.diag) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   267
                  keywords.is_command(t, Keyword.proof),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   268
                caret_iterator())
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   269
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   270
            case Some(Text.Info(range1, tok)) if keywords.is_command(tok, Keyword.proof_goal) =>
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   271
              find_block(
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   272
                keywords.is_command(_, Keyword.proof_goal),
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   273
                keywords.is_command(_, Keyword.qed),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   274
                _ => false,
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   275
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   276
                  keywords.is_command(t, Keyword.diag) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   277
                  keywords.is_command(t, Keyword.proof),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   278
                caret_iterator())
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   279
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   280
            case Some(Text.Info(range1, tok)) if keywords.is_command(tok, Keyword.qed_global) =>
63427
wenzelm
parents: 63425
diff changeset
   281
              reverse_caret_iterator().find(info => keywords.is_command(info.info, Keyword.theory))
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   282
              match {
58750
1b4b005d73c1 added option jedit_structure_limit;
wenzelm
parents: 58749
diff changeset
   283
                case Some(Text.Info(range2, tok))
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   284
                if keywords.is_command(tok, Keyword.theory_goal) => Some((range1, range2))
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   285
                case _ => None
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   286
              }
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   287
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   288
            case Some(Text.Info(range1, tok)) if keywords.is_command(tok, Keyword.qed) =>
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   289
              find_block(
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   290
                keywords.is_command(_, Keyword.qed),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   291
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   292
                  keywords.is_command(t, Keyword.proof_goal) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   293
                  keywords.is_command(t, Keyword.theory_goal),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   294
                _ => false,
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   295
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   296
                  keywords.is_command(t, Keyword.diag) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   297
                  keywords.is_command(t, Keyword.proof) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   298
                  keywords.is_command(t, Keyword.theory_goal),
63427
wenzelm
parents: 63425
diff changeset
   299
                reverse_caret_iterator())
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   300
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   301
            case Some(Text.Info(range1, tok)) if tok.is_begin =>
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   302
              find_block(_.is_begin, _.is_end, _ => false, _ => true, caret_iterator())
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   303
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   304
            case Some(Text.Info(range1, tok)) if tok.is_end =>
63427
wenzelm
parents: 63425
diff changeset
   305
              find_block(_.is_end, _.is_begin, _ => false, _ => true, reverse_caret_iterator())
58763
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   306
              match {
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   307
                case Some((_, range2)) =>
63427
wenzelm
parents: 63425
diff changeset
   308
                  reverse_caret_iterator().
58800
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   309
                    dropWhile(info => info.range != range2).
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   310
                    dropWhile(info => info.range == range2).
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   311
                    find(info => info.info.is_command || info.info.is_begin)
58763
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   312
                  match {
58800
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   313
                    case Some(Text.Info(range3, tok)) =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   314
                      if (keywords.is_command(tok, Keyword.theory_block)) Some((range1, range3))
58800
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   315
                      else Some((range1, range2))
58763
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   316
                    case None => None
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   317
                  }
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   318
                case None => None
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   319
              }
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   320
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   321
            case _ => None
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   322
          }
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
   323
        case None => None
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   324
      }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   325
    }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   326
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   327
    def getMatch(text_area: TextArea): StructureMatcher.Match =
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   328
      find_pair(text_area) match {
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   329
        case Some((_, range)) =>
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   330
          val line = text_area.getBuffer.getLineOfOffset(range.start)
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   331
          new StructureMatcher.Match(Matcher, line, range.start, line, range.stop)
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   332
        case None => null
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   333
      }
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   334
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73909
diff changeset
   335
    def selectMatch(text_area: TextArea): Unit = {
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   336
      def get_span(offset: Text.Offset): Option[Text.Range] =
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   337
        for {
59074
7836d927ffca tuned signature;
wenzelm
parents: 58901
diff changeset
   338
          syntax <- Isabelle.buffer_syntax(text_area.getBuffer)
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   339
          span <- Token_Markup.command_span(syntax, text_area.getBuffer, offset)
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   340
        } yield span.range
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   341
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   342
      find_pair(text_area) match {
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   343
        case Some((r1, r2)) =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   344
          (get_span(r1.start), get_span(r2.start)) match {
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   345
            case (Some(range1), Some(range2)) =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   346
              val start = range1.start min range2.start
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   347
              val stop = range1.stop max range2.stop
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   348
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   349
              text_area.moveCaretPosition(stop, false)
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   350
              if (!text_area.isMultipleSelectionEnabled) text_area.selectNone
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   351
              text_area.addToSelection(new Selection.Range(start, stop))
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   352
            case _ =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   353
          }
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   354
        case None =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   355
      }
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   356
    }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   357
  }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   358
}