[Coke] What's that? 02:03
microsoft.github.io/language-server-protocol/ ? I don't think so. Comma is the only IDE, and it's based on IntelliJ. 02:05
(that wouldn't preclude it, I don't think, but no, I don't think LSP support exists) 02:06
unixcat64 Coke: fair enough. Raku is still a baby yet, so I'm sure there will be LSP support eventually 13:51
Anton Antonov Yesterday was experimenting with regex extractions from a large set of files. I found that using a regex with 3 captions is ~20 slower than using a version of it with only 1 caption. Is this expected and/or documented somewhere? E.g. `XMLSearch0` is ~20 times slower than `XMLSearch1`: 14:19
```
my regex XMLSearch0 {
<header>=('<FactData>')
$<data>=(<-[<>]>*)
<ender>=('</FactData>')
}
my regex XMLSearch1 {
'<FactData>'
$<data>=(<-[<>]>*)
'</FactData>'
}
Yesterday I was experimenting with regex extractions from a large set of files. I found that using a regex with 3 captions is ~20 slower than using a version of it with only 1 caption. Is this expected and/or documented somewhere? E.g. `XMLSearch0` is ~20 times slower than `XMLSearch1`:
```
my regex XMLSearch0 {
<header>=('<FactData>')
$<data>=(<-[<>]>*)
<ender>=('</FactData>')
}
my regex XMLSearch1 {
'<FactData>'
$<data>=(<-[<>]>*)
'</FactData>'
}
```