Bug 367720 - lookAhead does not work with dynamic
Summary: lookAhead does not work with dynamic
Status: RESOLVED WORKSFORME
Alias: None
Product: frameworks-syntax-highlighting
Classification: Frameworks and Libraries
Component: framework (show other bugs)
Version: unspecified
Platform: Ubuntu Linux
: NOR normal
Target Milestone: ---
Assignee: KWrite Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-08-23 13:15 UTC by Ivan Gagis
Modified: 2019-09-14 15:39 UTC (History)
3 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ivan Gagis 2016-08-23 13:15:09 UTC
In syntax highlighting description, when rule has both "lookAhead" and "dynamic" set to true then matched string is not passed to destination context as if "lookAhead" was set to false.


Reproducible: Always
Comment 1 Dominik Haumann 2019-08-27 14:38:28 UTC
@Jonathan and Nibaldo: You may be interested in also looking into this issue, since you have a good understanding of how the syntax highlighting engine works.
Comment 2 Jonathan Poelen 2019-09-01 18:48:03 UTC
I tried to make an example to reproduce the problem, but without success.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE language SYSTEM "language.dtd">
<language name="Test" kateversion="5.0" version="1" section="Scripts" extensions="*.test" license="MIT">
  <highlighting>
    <contexts>
      <context name="base" attribute="Normal" lineEndContext="#stay">
        <RegExpr String="(.)" context="a" attribute="Normal" lookAhead="1"/> <!-- a -->
      </context>
      <context name="a" attribute="Normal" lineEndContext="#stay">
        <RegExpr String="(%1b)" context="b" attribute="Normal" dynamic="1" lookAhead="1"/> <!-- ab -->
      </context>
      <context name="b" attribute="Label" lineEndContext="#stay" dynamic="true">
        <StringDetect String="%1" context="#stay" attribute="Keyword" dynamic="true"/>  <!-- ab -->
      </context>
    </contexts>
    <itemDatas>
      <itemData name="Normal"	defStyleNum="dsNormal"/>
      <itemData name="Keyword"	  defStyleNum="dsKeyword"/>
      <itemData name="Label"	  defStyleNum="dsString"/>
    </itemDatas>
  </highlighting>
</language>

With

ab
ca
ab

All `ab` are Keyword
Comment 3 Dominik Haumann 2019-09-01 20:31:58 UTC
@Ivsn: if you read this, could you please comment and try again?
Comment 4 Ivan Gagis 2019-09-01 20:45:20 UTC
I submitted this bug because of the problem I had when I was adding syntax highlighting from my own markup language. It was several years ago and I don't remember now details of the problem. The syntax highlight file is here:

https://github.com/igagis/stob/blob/master/syntaxHighlight/katepart/stob.xml

and there is a TODO: comment there for that problem.

I will have a look when I have time and try to recall what I was trying to achieve there.

Just for info, there is a small spec of how syntax highlighting of my markup language is supposed to work:
https://github.com/igagis/stob/blob/master/syntaxHighlight/katepart/stob.xml

And the markup file I was using to test syntax highlighting was this one:
https://github.com/igagis/stob/blob/master/syntaxHighlight/test.stob

I don't know when I'll have time to refresh my memory about all this, I'll try to do it during next week and let you know.
Comment 5 Ivan Gagis 2019-09-14 12:34:54 UTC
I could not figure out what was wrong. The bug is very old, from 2016, so, perhaps it was already fixed since then.
Please close the bug.
Comment 6 Dominik Haumann 2019-09-14 15:39:32 UTC
Ok thanks for getting back. In that case we currently have no real issue and we close it. If this issue appears again, let's reopen.