I am currently going through the lua files of LaTeX's TikZ/PGF code and among other things I want to correct spelling errors because parts of these lua files are also used for the manual.
To do this I use Notepad++ but as it seems, stuff enclosed in [[" ... "]] is not spell-checked. Here an example from the file DistanceMatrix.lua were I introduced a spelling error.
declare {
key = "distance matrix verticess",
type = "string",
summary = [["
A list of verticess that are used in the parsing of the
|distance matrix| key. If this key is not used at all, all
vertices of the graph will be used for the computation of a
distance matrix.
"]],
In the left of the following image one sees the result when Lua is the active language and on the right when TeX is the active language.
As can be seen the word "verticess" is not underlined in the summary part when Lua is the active language.
Is it possible to extend/modify the Lua language in Notepad++ thus that also the parts enclosed in [[" ... "]] are spell-checked? (Maybe it would also be sufficient to spell-check stuff in [[ ... ]] thus without the quotes? Unfortunately I am not familiar with the Lua language.) And of course, if this is possible, how?



