Is there any way to inherit a lexer dynamically?

All questions regarding lexer highlighting schemes are discussed here...
Locked
runsun
Posts: 15
Joined: 16.12.2015 01:43

Is there any way to inherit a lexer dynamically?

Post by runsun »

Suppose we have a lexer A, and I want to make a lexer A2 that has 2 parts:

part1 comes from A
part2 newly added in A2

This A2 has a link to A, so when A is modified, the part1 of A2 is automatically updated.

Is it possible to do this ?
Alexey
Posts: 1633
Joined: 05.10.2012 22:10

Post by Alexey »

Sublexers tab of dialog--example is C# which uses xml, C++ uses Asm
Locked