Martin
Martin
Follow up an #238 I believe I found a workaround to fix it.... https://github.com/User4martin/lazarus/commit/0e05c525dc8e0e28e5a07d79604b0a367710ec00 The first time the emoji IME opens it takes the position given by IMR_QUERYCHARPOSITION (or (not...
Could shipit allow to use ssh ControlMaster ? http://stackoverflow.com/questions/20410252/how-to-reuse-an-ssh-connection This would avoid a new connection for each command I can put the conf into my .ssh/config. But then I must...
The following example fails with ``` Unhandled rejection SequelizeDatabaseError: column reference "name" is ambiguous ``` ``` var S = require('sequelize'); var sequelize = new S('seq_test', 'postgres', '', { //var sequelize...
This is a request to discuss/define the desired behaviour. I might (depending on the outcome) be willing to work on it. I don't think the current behaviour is desired. `ejs.render('...
This is to serve as an overview for the changes/pullrequests that I made. ---- ## refactor-generate-source basic refactor: move functionality into scanLine. Making it easier for future plugins to change...
I am aware of #251 and #252 Please have a look at: https://github.com/User4martin/ejs/tree/template_subclass This is not production ready / just proof of concept It entirely optional: - It does not...
``` IsMatching('Recursive', '^(?''A''(?:b[^b]+(?&A)?x+))', 'baaabaaaaaxx', [1,12, 1,12]); ``` https://regex101.com/r/g3pDSW/1 ``` ^(?'A' (?: b[^b]+ (?&A)? ## This sub-call will match ALL the "x", but when the outer match fails, it backtracks, and...
I have not further analysed this... `FindRepeated` (for unicode) calls `IncUnicode2` which may (for surrogates) increment by 2. For the OPs that can match a surrogate this will be a...
``` IsNotMatching('no loop linebreak', 'a\R\Rb', 'a'#13#10'b'); IsNotMatching(' loop linebreak', 'a\R+\Rb', 'a'#13#10'b'); ``` - The first test works, \R eats the entire `#13#10`. The 2nd #R does not match. - Yet...
Getting the next opcode is sometimes done with `PRENextOff(AlignToPtr(scan + REOpSz))^ ` and sometimes `Inc(s, REOpSz + RENextOffSz)` It doesn't fail on many arch: ``` function AlignToPtr(const p: Pointer): Pointer;...