Magesh K

Results 57 comments of Magesh K

@kbilsted I can verify the latest state of master branch with its prior state before my first PR #56 by diffing with the snapshot. I will report back when I...

Issue #70, #74 and #68 might be caused due to regression

Yeah that sounds nice, but if you want something quickly, you could look upto scintilla and notepad ++ APIs from the notepad++ repository coz this project should act just as...

@Ekopalypse is it newly added to scintilla interface definitions, if so the ILexer class doesn't need to be added manually, instead there is a generator script which updates the C#...

@Ekopalypse , There are auto generated enums in GatewayDomain.cs file, this was intentional to have more meaning to the flag grouping. ``` public enum FoldFlag { LINEBEFORE_EXPANDED = 0x0002, LINEBEFORE_CONTRACTED...

Oops sorry for the confusion, I meant to refer you to FoldLevel enum in the Gatewaydomain.cs, Could you please check that enum satisfies your request

@Ekopalypse checkout this ``` /// The number of display lines needed to wrap a document line (Scintilla feature SC_FOLDLEVEL) public enum FoldLevel { BASE = 0x400, WHITEFLAG = 0x1000, HEADERFLAG...

okay there is a slight discrepancy in [Scintilla.iface](https://github.com/notepad-plus-plus/notepad-plus-plus/blob/9a2dcaa5f8eb678e2b0c6494c16a8b9df37f06bb/scintilla/include/Scintilla.iface#L1339) file and the [official documentation](https://www.scintilla.org/ScintillaDoc.html#SCI_SETFOLDLEVEL) which we have to fix. The documentation states: ``` SCI_SETFOLDLEVEL(line line, int level) SCI_GETFOLDLEVEL(line line) → int...

@Ekopalypse , a quick fix can be made for this particular field for now, but the inventory of affected fields will be performed later some time and a fix will...

@Ekopalypse, The fix is created as a pull request, review the commit and see if the issue will be resolved after this merge. Thanks.