{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":811333481,"defaultBranch":"main","name":"isscint","ownerLogin":"jrsoftware","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2024-06-06T11:52:25.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/1092483?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1721974269.0","currentOid":""},"activityList":{"items":[{"before":"a0586f17127a18f4e09c965b4bae5f86fbd52725","after":"1886eb54cd5fcdf32134d27c1b65c0e222115614","ref":"refs/heads/main","pushedAt":"2024-08-03T04:52:27.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Already update LineIndent and LineDedent numbers to the numbers Neil used even though these arent in 5.5.1 yet. Start the other isscint numbers at 3000 with gaps to avoid having to change these again and again.","shortMessageHtmlLink":"Already update LineIndent and LineDedent numbers to the numbers Neil …"}},{"before":"10096264108cc58a83da4116b62cd3982d67dd63","after":"a0586f17127a18f4e09c965b4bae5f86fbd52725","ref":"refs/heads/main","pushedAt":"2024-08-03T04:38:39.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Merge remote-tracking branch 'upstream/main'\n\n# Conflicts:\n#\t.hgtags\n#\tinclude/Scintilla.h\n#\tinclude/Scintilla.iface\n#\tinclude/ScintillaMessages.h\n#\tsrc/Editor.cxx\n#\tsrc/ScintillaBase.cxx\n#\ttest/simpleTests.py","shortMessageHtmlLink":"Merge remote-tracking branch 'upstream/main'"}},{"before":"63f127f610aeca55bba681047585a214c09d1120","after":"10096264108cc58a83da4116b62cd3982d67dd63","ref":"refs/heads/main","pushedAt":"2024-08-02T19:07:56.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Tweaks.","shortMessageHtmlLink":"Tweaks."}},{"before":"8e33e0d697b9bd061f86fa7838c6363c8cfe27d8","after":"63f127f610aeca55bba681047585a214c09d1120","ref":"refs/heads/main","pushedAt":"2024-07-27T17:34:30.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Add support for $&, $1..$9, and $$ as alternatives for \\0, \\1..\\9, and \\\\ since using $ is much more common: Notepad++, VSCode and VS all support $ but only Notepad++ supports \\ as well. Delphi unsurprisingly seems to support neither.\n\nAlso see https://www.boost.org/doc/libs/1_61_0/libs/xpressive/doc/html/boost_xpressive/user_s_guide/string_substitutions.html which says $ is ECMAScript just as Scintilla's C11 regex.","shortMessageHtmlLink":"Add support for $&, $1..$9, and $$ as alternatives for \\0, \\1..\\9, an…"}},{"before":"9c69d6034f69a2c323d84e9c931b763b0e565b9f","after":"8e33e0d697b9bd061f86fa7838c6363c8cfe27d8","ref":"refs/heads/main","pushedAt":"2024-07-26T10:43:33.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Also make it stop doing 'centre' on keys like up and down since that makes the listbox act inconsistent will all other listboxes. Did not try and fix compilation on other platforms.","shortMessageHtmlLink":"Also make it stop doing 'centre' on keys like up and down since that …"}},{"before":"5c0d52549f025ad339c6c8ab5532159cfeea8df9","after":"9c69d6034f69a2c323d84e9c931b763b0e565b9f","ref":"refs/heads/main","pushedAt":"2024-07-26T10:30:10.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"The way Scintilla makes the selected item appear in the middle of the list (and away from the caret and focus of the user) instead of at the top does not make a lot of sense to me, especially because it even does this when the items above the selection have no match of any kind and are completely pointless to display.\n\nIn VS the items above the selected one are only the partially matching ones (with this I mean: ABC partially matches XAYBZC because it has all letters in order). If there aren't any partial matches (like in Scintilla which doesn't do these: it matches ABC to ABCXYZ but not to XAYBZC) then the selection is at the top.\n\nVSCode improves on this: it puts the partial matches below the regular matches. So again the selection and best match is at the top, close to the caret and focus.\n\nIdeally there would be more Scintilla changes: it should try more variants of matchings and put those below the regular matches and should remove anything which does not match (even Delphi which is pretty bad at all of this does the latter).","shortMessageHtmlLink":"The way Scintilla makes the selected item appear in the middle of the…"}},{"before":"0c7fd0b8e7de0193b7c7d7a02f6582070a7059b1","after":"5c0d52549f025ad339c6c8ab5532159cfeea8df9","ref":"refs/heads/main","pushedAt":"2024-07-26T10:29:57.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"They way Scintilla makes the selected item appear in the middle of the list (and away from the caret and focus of the user) instead of at the top does not make a lot of sense to me, especially because it even does this when the items above the selection have no match of any kind and are completely pointless to display.\n\nIn VS the items above the selected one are only the partially matching ones (with this I mean: ABC partially matches XAYBZC because it has all letters in order). If there aren't any partial matches (like in Scintilla which doesn't do these: it matches ABC to ABCXYZ but not to XAYBZC) then the selection is at the top.\n\nVSCode improves on this: it puts the partial matches below the regular matches. So again the selection and best match is at the top, close to the caret and focus.\n\nIdeally there would be more Scintilla changes: it should try more variants of matchings and put those below the regular matches and should remove anything which does not match (even Delphi which is pretty bad at all of this does the latter).","shortMessageHtmlLink":"They way Scintilla makes the selected item appear in the middle of th…"}},{"before":"a61b2b089cba5d7b9f4ba55ee7e5c2ee8001b060","after":"0c7fd0b8e7de0193b7c7d7a02f6582070a7059b1","ref":"refs/heads/main","pushedAt":"2024-07-26T08:02:44.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Improve look of calltip arrows: add inset after down arrow + reverse colors.","shortMessageHtmlLink":"Improve look of calltip arrows: add inset after down arrow + reverse …"}},{"before":"c71e77bacd7b293d4a1352054285c8936d3b632e","after":"a61b2b089cba5d7b9f4ba55ee7e5c2ee8001b060","ref":"refs/heads/main","pushedAt":"2024-07-26T06:20:13.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Rename LineTab/BackTab to LineIndent/Dedent.","shortMessageHtmlLink":"Rename LineTab/BackTab to LineIndent/Dedent."}},{"before":"d1f27a028bf5655a2d6ed070ae7da4aa66985261","after":null,"ref":"refs/heads/vscode","pushedAt":"2024-07-26T06:11:09.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"}},{"before":"ee5ae66688e0fe7a66d5cd44659c532c6187c9a4","after":"c71e77bacd7b293d4a1352054285c8936d3b632e","ref":"refs/heads/main","pushedAt":"2024-07-26T06:11:04.000Z","pushType":"push","commitsCount":20,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Merge branch 'vscode'","shortMessageHtmlLink":"Merge branch 'vscode'"}},{"before":"021057446f5143cf5f0cf1bead2025deb93afcbd","after":"d1f27a028bf5655a2d6ed070ae7da4aa66985261","ref":"refs/heads/vscode","pushedAt":"2024-07-26T06:10:55.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Cleanup.","shortMessageHtmlLink":"Cleanup."}},{"before":"a98fce18e4e89ed73735bf4b2dd31e77296cb6d0","after":"021057446f5143cf5f0cf1bead2025deb93afcbd","ref":"refs/heads/vscode","pushedAt":"2024-07-26T06:01:22.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Reduce diff.","shortMessageHtmlLink":"Reduce diff."}},{"before":"f8b65f2f98a18e5d7f768bb08429885614915098","after":"a98fce18e4e89ed73735bf4b2dd31e77296cb6d0","ref":"refs/heads/vscode","pushedAt":"2024-07-19T11:56:45.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Cleanup.","shortMessageHtmlLink":"Cleanup."}},{"before":"d3212678ffbc4cbf5e8e280fe0f1159ce2de2928","after":"f8b65f2f98a18e5d7f768bb08429885614915098","ref":"refs/heads/vscode","pushedAt":"2024-07-19T11:44:47.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Fix reversed parameters.","shortMessageHtmlLink":"Fix reversed parameters."}},{"before":"ce0e9884c61c8494e151bd219647cc80352812e7","after":"d3212678ffbc4cbf5e8e280fe0f1159ce2de2928","ref":"refs/heads/vscode","pushedAt":"2024-07-03T12:03:14.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Merge branch 'main' into vscode. Updated new message numbers to 2814/2815 during merge.","shortMessageHtmlLink":"Merge branch 'main' into vscode. Updated new message numbers to 2814/…"}},{"before":"9cbb81ad14a57e6ea4b332b88989be254b903e15","after":"ee5ae66688e0fe7a66d5cd44659c532c6187c9a4","ref":"refs/heads/main","pushedAt":"2024-07-03T12:01:41.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Add SCI_AUTOCSETMINWIDTH.","shortMessageHtmlLink":"Add SCI_AUTOCSETMINWIDTH."}},{"before":"09b78b4d1db0cd6766f51789710306c13634dd3b","after":"ce0e9884c61c8494e151bd219647cc80352812e7","ref":"refs/heads/vscode","pushedAt":"2024-07-01T14:09:45.000Z","pushType":"push","commitsCount":5,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Merge branch 'main' into vscode","shortMessageHtmlLink":"Merge branch 'main' into vscode"}},{"before":"c4acf7ab11063e11f2832c65136f9104388c64df","after":"9cbb81ad14a57e6ea4b332b88989be254b903e15","ref":"refs/heads/main","pushedAt":"2024-07-01T14:09:33.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Whitespace cleanup.","shortMessageHtmlLink":"Whitespace cleanup."}},{"before":"e55fe7cb448f8c53d6bbeb059d54a976632ebddb","after":"c4acf7ab11063e11f2832c65136f9104388c64df","ref":"refs/heads/main","pushedAt":"2024-07-01T14:03:08.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Apply AutoCSetStyle suggestions from Neil.","shortMessageHtmlLink":"Apply AutoCSetStyle suggestions from Neil."}},{"before":"92cc1ba8734154709b5f8d3ee002abb60cdd7451","after":"e55fe7cb448f8c53d6bbeb059d54a976632ebddb","ref":"refs/heads/main","pushedAt":"2024-06-30T17:20:59.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Add SCI_CALLTIPSETFOREBORDER.","shortMessageHtmlLink":"Add SCI_CALLTIPSETFOREBORDER."}},{"before":"2a244fa3f7223ff53f2a58c9ad8a3fa4f96eb1c4","after":"92cc1ba8734154709b5f8d3ee002abb60cdd7451","ref":"refs/heads/main","pushedAt":"2024-06-30T17:16:23.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Add SCI_CALLTIPSETFOREBORDER.","shortMessageHtmlLink":"Add SCI_CALLTIPSETFOREBORDER."}},{"before":"221b457e92fce80ab11db9aa5905c2a27c1ea5d0","after":"09b78b4d1db0cd6766f51789710306c13634dd3b","ref":"refs/heads/vscode","pushedAt":"2024-06-30T17:16:18.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Merge branch 'main' into vscode. Updated SCI_CALLTIPSETFOREBORDER to 2813 during merge.","shortMessageHtmlLink":"Merge branch 'main' into vscode. Updated SCI_CALLTIPSETFOREBORDER to …"}},{"before":"6d7ba74a619846884d444a605bec013769f7ff6f","after":"221b457e92fce80ab11db9aa5905c2a27c1ea5d0","ref":"refs/heads/vscode","pushedAt":"2024-06-30T16:16:19.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Merge branch 'main' into vscode","shortMessageHtmlLink":"Merge branch 'main' into vscode"}},{"before":"7bfa230a222462e524094dde21f079e9fb7e8c31","after":"2a244fa3f7223ff53f2a58c9ad8a3fa4f96eb1c4","ref":"refs/heads/main","pushedAt":"2024-06-30T16:16:09.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Add SC_AUTOCOMPLETE_DARK_MODE.","shortMessageHtmlLink":"Add SC_AUTOCOMPLETE_DARK_MODE."}},{"before":"6c8f5ba94eabfa530ac0cec32f16a07cc56eb0a0","after":"6d7ba74a619846884d444a605bec013769f7ff6f","ref":"refs/heads/vscode","pushedAt":"2024-06-29T07:49:19.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Merge branch 'main' into vscode","shortMessageHtmlLink":"Merge branch 'main' into vscode"}},{"before":"ace375613b83024d45ee528ba68b43b6dedb1a8e","after":"7bfa230a222462e524094dde21f079e9fb7e8c31","ref":"refs/heads/main","pushedAt":"2024-06-29T07:49:09.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Improve autocStyle versus lineHeight.","shortMessageHtmlLink":"Improve autocStyle versus lineHeight."}},{"before":"a9ce3846c65fcc72498214f205a280dc4189124f","after":"6c8f5ba94eabfa530ac0cec32f16a07cc56eb0a0","ref":"refs/heads/vscode","pushedAt":"2024-06-28T15:32:27.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Fix typo.","shortMessageHtmlLink":"Fix typo."}},{"before":"fad74b3b413d8bba1625bde637fe96631b3fa1ff","after":"ace375613b83024d45ee528ba68b43b6dedb1a8e","ref":"refs/heads/main","pushedAt":"2024-06-27T04:20:27.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Tweak new param name.","shortMessageHtmlLink":"Tweak new param name."}},{"before":"6baf262f9a5bc091345ad25e4a0121e85d115c59","after":"a9ce3846c65fcc72498214f205a280dc4189124f","ref":"refs/heads/vscode","pushedAt":"2024-06-26T19:19:23.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"martijnlaan","name":null,"path":"/martijnlaan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1092369?s=80&v=4"},"commit":{"message":"Fix Alt+Left/Right.","shortMessageHtmlLink":"Fix Alt+Left/Right."}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOC0wM1QwNDo1MjoyNy4wMDAwMDBazwAAAASQsjTI","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOC0wM1QwNDo1MjoyNy4wMDAwMDBazwAAAASQsjTI","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNi0yNlQxOToxOToyMy4wMDAwMDBazwAAAARwF6_q"}},"title":"Activity · jrsoftware/isscint"}