src/Tools/jEdit/src/text_structure.scala
author wenzelm
Fri, 27 Mar 2020 22:01:27 +0100
changeset 71601 97ccf48c2f0c
parent 68730 0bc491938780
child 73105 578a33042aa6
permissions -rw-r--r--
misc tuning based on hints by IntelliJ IDEA;
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
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    12
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
    13
import org.gjt.sp.jedit.textarea.{TextArea, StructureMatcher, Selection}
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    14
import org.gjt.sp.jedit.buffer.JEditBuffer
63423
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
    15
import org.gjt.sp.jedit.Buffer
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
    16
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
    17
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    18
object Text_Structure
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
    19
{
63425
wenzelm
parents: 63424
diff changeset
    20
  /* token navigator */
wenzelm
parents: 63424
diff changeset
    21
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
    22
  class Navigator(syntax: Outer_Syntax, buffer: JEditBuffer, comments: Boolean)
63425
wenzelm
parents: 63424
diff changeset
    23
  {
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
wenzelm
parents: 63424
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
    {
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    28
      val it = Token_Markup.line_token_iterator(syntax, buffer, line, line + lim)
68730
0bc491938780 tuned signature;
wenzelm
parents: 67014
diff changeset
    29
      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
    30
    }
63425
wenzelm
parents: 63424
diff changeset
    31
63427
wenzelm
parents: 63425
diff changeset
    32
    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
    33
    {
5761bb8592dc observe comments in indentation, but not in fold structure;
wenzelm
parents: 63442
diff changeset
    34
      val it = Token_Markup.line_token_reverse_iterator(syntax, buffer, line, line - lim)
68730
0bc491938780 tuned signature;
wenzelm
parents: 67014
diff changeset
    35
      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
    36
    }
63425
wenzelm
parents: 63424
diff changeset
    37
  }
wenzelm
parents: 63424
diff changeset
    38
wenzelm
parents: 63424
diff changeset
    39
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    40
  /* indentation */
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    41
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    42
  object Indent_Rule extends IndentRule
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    43
  {
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    44
    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
    45
    private val keyword_close = Keyword.proof_close
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    46
64518
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
    47
    def apply(buffer: JEditBuffer, current_line: Int, prev_line0: Int, prev_prev_line0: Int,
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    48
      actions: java.util.List[IndentAction])
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    49
    {
63425
wenzelm
parents: 63424
diff changeset
    50
      Isabelle.buffer_syntax(buffer) match {
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
    51
        case Some(syntax) =>
63425
wenzelm
parents: 63424
diff changeset
    52
          val keywords = syntax.keywords
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
    53
          val nav = new Navigator(syntax, buffer, true)
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
    54
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    55
          val indent_size = buffer.getIndentSize
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    56
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
          def line_indent(line: Int): Int =
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    59
            if (line < 0 || line >= buffer.getLineCount) 0
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    60
            else buffer.getCurrentIndentForLine(line, null)
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    61
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    62
          def line_head(line: Int): Option[Text.Info[Token]] =
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    63
            nav.iterator(line, 1).toStream.headOption
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    64
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    65
          def head_is_quasi_command(line: Int): Boolean =
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    66
            line_head(line) match {
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    67
              case None => false
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    68
              case Some(Text.Info(_, tok)) => keywords.is_quasi_command(tok)
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    69
            }
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    70
64518
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
    71
          val prev_line: Int =
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
    72
            Range.inclusive(current_line - 1, 0, -1).find(line =>
66176
b51a40281016 tuned signature;
wenzelm
parents: 66175
diff changeset
    73
              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
    74
              (!Token_Markup.Line_Context.after(buffer, line).structure.improper ||
5f02bf37324f clarified prev_line: stop at blank line;
wenzelm
parents: 66176
diff changeset
    75
                Token_Markup.Line_Context.after(buffer, line).structure.blank)) getOrElse -1
64518
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
    76
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    77
          def prev_line_command: Option[Token] =
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
    78
            nav.reverse_iterator(prev_line, 1).
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    79
              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
    80
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    81
          def prev_line_span: Iterator[Token] =
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    82
            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
    83
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    84
          def prev_span: Iterator[Token] =
63477
f5c81436b930 clarified indentation: 'begin' is treated like a separate command without indent;
wenzelm
parents: 63474
diff changeset
    85
            nav.reverse_iterator(prev_line).map(_.info).takeWhile(tok => !tok.is_begin_or_command)
63450
afd657fffdf9 indentation of brackets;
wenzelm
parents: 63447
diff changeset
    86
63434
c956d995bec6 more indentation for quasi_command keywords;
wenzelm
parents: 63431
diff changeset
    87
63481
wenzelm
parents: 63480
diff changeset
    88
          val script_indent: Text.Info[Token] => Int =
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    89
          {
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)
64882
c3b42ac0cf81 tuned signature;
wenzelm
parents: 64621
diff changeset
    95
                    doc_view <- Document_View.get(text_area)
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63450
diff changeset
    96
                  } yield doc_view.get_rendering).toStream.headOption
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
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   110
            else if (keywords.is_command(tok, keyword_close)) - indent_size
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 =
wenzelm
parents: 63479
diff changeset
   133
            (0 /: prev_line_span)(
wenzelm
parents: 63479
diff changeset
   134
              { case (i, tok) =>
wenzelm
parents: 63479
diff changeset
   135
                  if (tok.is_open_bracket) i + indent_size
wenzelm
parents: 63479
diff changeset
   136
                  else if (tok.is_close_bracket) i - indent_size
wenzelm
parents: 63479
diff changeset
   137
                  else i })
wenzelm
parents: 63479
diff changeset
   138
wenzelm
parents: 63479
diff changeset
   139
          def indent_extra: Int =
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 68730
diff changeset
   140
            if (prev_span.exists(keywords.is_quasi_command)) indent_size
63480
wenzelm
parents: 63479
diff changeset
   141
            else 0
wenzelm
parents: 63479
diff changeset
   142
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   143
          val indent =
66179
148d61626014 indent = 0 for blank lines: produce less whitespace by default;
wenzelm
parents: 66178
diff changeset
   144
            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
   145
              line_indent(current_line)
148d61626014 indent = 0 for blank lines: produce less whitespace by default;
wenzelm
parents: 66178
diff changeset
   146
            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
   147
            else {
64518
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   148
              line_head(current_line) match {
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   149
                case Some(info @ Text.Info(range, tok)) =>
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   150
                  if (tok.is_begin ||
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   151
                      keywords.is_before_command(tok) ||
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   152
                      keywords.is_command(tok, Keyword.theory)) 0
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   153
                  else if (keywords.is_command(tok, Keyword.proof_enclose))
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   154
                    indent_structure + script_indent(info) - indent_offset(tok)
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   155
                  else if (keywords.is_command(tok, Keyword.proof))
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   156
                    (indent_structure + script_indent(info) - indent_offset(tok)) max indent_size
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   157
                  else if (tok.is_command) indent_structure - indent_offset(tok)
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   158
                  else {
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   159
                    prev_line_command match {
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   160
                      case None =>
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   161
                        val extra =
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   162
                          (keywords.is_quasi_command(tok), head_is_quasi_command(prev_line)) match {
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   163
                            case (true, true) | (false, false) => 0
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   164
                            case (true, false) => - indent_extra
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   165
                            case (false, true) => indent_extra
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   166
                          }
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   167
                        line_indent(prev_line) + indent_brackets + extra - indent_offset(tok)
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   168
                      case Some(prev_tok) =>
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   169
                        indent_structure + indent_brackets + indent_size - indent_offset(tok) -
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   170
                        indent_offset(prev_tok) - indent_indent(prev_tok)
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   171
                    }
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
   172
                  }
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
   173
                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
   174
                  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
   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
                      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
   177
                      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
   178
                    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
   179
                      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
   180
                      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
   181
                  }
64518
b87697eec2ac skip over inner syntax for indentation;
wenzelm
parents: 63483
diff changeset
   182
              }
63428
005b490f0ce2 indentation in reminiscence to Proof General (see proof-indent.el);
wenzelm
parents: 63427
diff changeset
   183
            }
63423
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
   184
63425
wenzelm
parents: 63424
diff changeset
   185
          actions.clear()
63439
5ad98525e918 more robust;
wenzelm
parents: 63434
diff changeset
   186
          actions.add(new IndentAction.AlignOffset(indent max 0))
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
   187
        case None =>
63423
ed65a6d9929b more operations;
wenzelm
parents: 63422
diff changeset
   188
      }
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   189
    }
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   190
  }
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   191
66173
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   192
  def line_content(buffer: JEditBuffer, keywords: Keyword.Keywords,
66175
wenzelm
parents: 66173
diff changeset
   193
    range: Text.Range, ctxt: Scan.Line_Context): (List[Token], Scan.Line_Context) =
66173
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   194
  {
67014
e6a695d6a6b2 tuned signature;
wenzelm
parents: 66183
diff changeset
   195
    val text = JEdit_Lib.get_text(buffer, range).getOrElse("")
66175
wenzelm
parents: 66173
diff changeset
   196
    val (toks, ctxt1) = Token.explode_line(keywords, text, ctxt)
66173
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   197
    val toks1 = toks.filterNot(_.is_space)
66175
wenzelm
parents: 66173
diff changeset
   198
    (toks1, ctxt1)
66173
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   199
  }
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   200
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   201
  def split_line_content(buffer: JEditBuffer, keywords: Keyword.Keywords, line: Int, caret: Int)
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   202
    : (List[Token], List[Token]) =
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   203
  {
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   204
    val line_range = JEdit_Lib.line_range(buffer, line)
66176
b51a40281016 tuned signature;
wenzelm
parents: 66175
diff changeset
   205
    val ctxt0 = Token_Markup.Line_Context.before(buffer, line).get_context
66175
wenzelm
parents: 66173
diff changeset
   206
    val (toks1, ctxt1) = line_content(buffer, keywords, Text.Range(line_range.start, caret), ctxt0)
wenzelm
parents: 66173
diff changeset
   207
    val (toks2, _) = line_content(buffer, keywords, Text.Range(caret, line_range.stop), ctxt1)
66173
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   208
    (toks1, toks2)
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   209
  }
6c71a3af85a3 clarified modules;
wenzelm
parents: 64882
diff changeset
   210
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   211
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   212
  /* structure matching */
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   213
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   214
  object Matcher extends StructureMatcher
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   215
  {
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   216
    private def find_block(
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   217
      open: Token => Boolean,
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   218
      close: Token => Boolean,
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   219
      reset: Token => Boolean,
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   220
      restrict: Token => Boolean,
58754
wenzelm
parents: 58752
diff changeset
   221
      it: Iterator[Text.Info[Token]]): Option[(Text.Range, Text.Range)] =
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   222
    {
58754
wenzelm
parents: 58752
diff changeset
   223
      val range1 = it.next.range
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   224
      it.takeWhile(info => !info.info.is_command || restrict(info.info)).
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   225
        scanLeft((range1, 1))(
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   226
          { case ((r, d), Text.Info(range, tok)) =>
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   227
              if (open(tok)) (range, d + 1)
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   228
              else if (close(tok)) (range, d - 1)
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   229
              else if (reset(tok)) (range, 0)
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   230
              else (r, d) }
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   231
        ).collectFirst({ case (range2, 0) => (range1, range2) })
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   232
    }
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   233
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   234
    private def find_pair(text_area: TextArea): Option[(Text.Range, Text.Range)] =
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   235
    {
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   236
      val buffer = text_area.getBuffer
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   237
      val caret_line = text_area.getCaretLine
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   238
      val caret = text_area.getCaretPosition
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   239
59074
7836d927ffca tuned signature;
wenzelm
parents: 58901
diff changeset
   240
      Isabelle.buffer_syntax(text_area.getBuffer) match {
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
   241
        case Some(syntax) =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   242
          val keywords = syntax.keywords
58750
1b4b005d73c1 added option jedit_structure_limit;
wenzelm
parents: 58749
diff changeset
   243
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
   244
          val nav = new Navigator(syntax, buffer, false)
58750
1b4b005d73c1 added option jedit_structure_limit;
wenzelm
parents: 58749
diff changeset
   245
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   246
          def caret_iterator(): Iterator[Text.Info[Token]] =
63425
wenzelm
parents: 63424
diff changeset
   247
            nav.iterator(caret_line).dropWhile(info => !info.range.touches(caret))
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   248
63427
wenzelm
parents: 63425
diff changeset
   249
          def reverse_caret_iterator(): Iterator[Text.Info[Token]] =
wenzelm
parents: 63425
diff changeset
   250
            nav.reverse_iterator(caret_line).dropWhile(info => !info.range.touches(caret))
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   251
63425
wenzelm
parents: 63424
diff changeset
   252
          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
   253
          match {
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   254
            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
   255
              find_block(
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   256
                keywords.is_command(_, Keyword.proof_goal),
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   257
                keywords.is_command(_, Keyword.qed),
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   258
                keywords.is_command(_, Keyword.qed_global),
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   259
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   260
                  keywords.is_command(t, Keyword.diag) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   261
                  keywords.is_command(t, Keyword.proof),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   262
                caret_iterator())
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   263
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   264
            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
   265
              find_block(
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   266
                keywords.is_command(_, Keyword.proof_goal),
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   267
                keywords.is_command(_, Keyword.qed),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   268
                _ => false,
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   269
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   270
                  keywords.is_command(t, Keyword.diag) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   271
                  keywords.is_command(t, Keyword.proof),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   272
                caret_iterator())
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   273
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   274
            case Some(Text.Info(range1, tok)) if keywords.is_command(tok, Keyword.qed_global) =>
63427
wenzelm
parents: 63425
diff changeset
   275
              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
   276
              match {
58750
1b4b005d73c1 added option jedit_structure_limit;
wenzelm
parents: 58749
diff changeset
   277
                case Some(Text.Info(range2, tok))
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   278
                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
   279
                case _ => None
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   280
              }
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   281
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   282
            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
   283
              find_block(
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   284
                keywords.is_command(_, Keyword.qed),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   285
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   286
                  keywords.is_command(t, Keyword.proof_goal) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   287
                  keywords.is_command(t, Keyword.theory_goal),
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   288
                _ => false,
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   289
                t =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   290
                  keywords.is_command(t, Keyword.diag) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   291
                  keywords.is_command(t, Keyword.proof) ||
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   292
                  keywords.is_command(t, Keyword.theory_goal),
63427
wenzelm
parents: 63425
diff changeset
   293
                reverse_caret_iterator())
58755
fc822ca2428a support for proof structure matching;
wenzelm
parents: 58754
diff changeset
   294
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   295
            case Some(Text.Info(range1, tok)) if tok.is_begin =>
58762
4fedc5d4b2fe restricted scanning;
wenzelm
parents: 58756
diff changeset
   296
              find_block(_.is_begin, _.is_end, _ => false, _ => true, caret_iterator())
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   297
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   298
            case Some(Text.Info(range1, tok)) if tok.is_end =>
63427
wenzelm
parents: 63425
diff changeset
   299
              find_block(_.is_end, _.is_begin, _ => false, _ => true, reverse_caret_iterator())
58763
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   300
              match {
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   301
                case Some((_, range2)) =>
63427
wenzelm
parents: 63425
diff changeset
   302
                  reverse_caret_iterator().
58800
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   303
                    dropWhile(info => info.range != range2).
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   304
                    dropWhile(info => info.range == range2).
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   305
                    find(info => info.info.is_command || info.info.is_begin)
58763
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   306
                  match {
58800
bfed1c26caed explicit keyword category for commands that may start a block;
wenzelm
parents: 58763
diff changeset
   307
                    case Some(Text.Info(range3, tok)) =>
63424
e4e15bbfb3e2 clarified signature;
wenzelm
parents: 63423
diff changeset
   308
                      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
   309
                      else Some((range1, range2))
58763
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   310
                    case None => None
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   311
                  }
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   312
                case None => None
1b943a82d5ed find main command keyword of 'begin';
wenzelm
parents: 58762
diff changeset
   313
              }
58752
2077bc9558cf support for begin/end matching;
wenzelm
parents: 58750
diff changeset
   314
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   315
            case _ => None
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   316
          }
66183
c67933ea9234 tuned signature;
wenzelm
parents: 66179
diff changeset
   317
        case None => None
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   318
      }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   319
    }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   320
58749
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   321
    def getMatch(text_area: TextArea): StructureMatcher.Match =
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   322
      find_pair(text_area) match {
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   323
        case Some((_, range)) =>
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   324
          val line = text_area.getBuffer.getLineOfOffset(range.start)
63422
5cf8dd98a717 clarified modules;
wenzelm
parents: 59122
diff changeset
   325
          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
   326
        case None => null
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   327
      }
83b0f633190e some structure matching, based on line token iterators;
wenzelm
parents: 58748
diff changeset
   328
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   329
    def selectMatch(text_area: TextArea)
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   330
    {
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   331
      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
   332
        for {
59074
7836d927ffca tuned signature;
wenzelm
parents: 58901
diff changeset
   333
          syntax <- Isabelle.buffer_syntax(text_area.getBuffer)
58803
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   334
          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
   335
        } yield span.range
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   336
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   337
      find_pair(text_area) match {
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   338
        case Some((r1, r2)) =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   339
          (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
   340
            case (Some(range1), Some(range2)) =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   341
              val start = range1.start min range2.start
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   342
              val stop = range1.stop max range2.stop
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   343
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   344
              text_area.moveCaretPosition(stop, false)
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   345
              if (!text_area.isMultipleSelectionEnabled) text_area.selectNone
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   346
              text_area.addToSelection(new Selection.Range(start, stop))
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   347
            case _ =>
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
        case None =>
7a0f675eb671 proper selectMatch, e.g. relevant for S-click on gutter;
wenzelm
parents: 58800
diff changeset
   350
      }
58748
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   351
    }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   352
  }
8f92f17d8781 support for structure matching;
wenzelm
parents:
diff changeset
   353
}