)]}'
{
  "log": [
    {
      "commit": "9b53c052d58f73f2078c61a74622687306e51c17",
      "tree": "f3763125b63a5cde50421d870c476a68344453e5",
      "parents": [
        "e71022082d6a8bd8ec3d7b9dadf3f9ce46ef339c"
      ],
      "author": {
        "name": "h-east",
        "email": "h.east.727@gmail.com",
        "time": "Tue Feb 13 21:09:22 2024 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Tue Feb 13 21:11:22 2024 +0100"
      },
      "message": "runtime(vim): include Vim Syntax generator\n\nfixes: #13939\ncloses: #14021\nrelated: vim-jp/syntax-vim-ex#28\n\nSigned-off-by: h-east \u003ch.east.727@gmail.com\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "6d91227267a5f7e21fc9b30443687618e92751bf",
      "tree": "49583693e8bab020021c5cbd9c2219eab2a7d847",
      "parents": [
        "0d3c0a66a39570cbc52b9536604c39e324b989b3"
      ],
      "author": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sun Feb 11 18:19:45 2024 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sun Feb 11 18:19:45 2024 +0100"
      },
      "message": "runtime(gpg): Mark dangerous use-embedded-filename with WarningMsg\n\nThe syntax highlighter is likely to encourage people to use the listed\ncommands.\n\nBut `use-embedded-filename` is a dangerous option that can cause GnuPG\nto write arbitrary data to arbitrary files whenever GnuPG encounters\nmalicious data.\n\nGnuPG upstream explicitly warns against using this option:\n\nhttps://dev.gnupg.org/T4500\nhttps://dev.gnupg.org/T6972\n\nHowever, since this is a valid option, we cannot just drop it from the\nsyntax script. Instead, let\u0027s mark it with the WarningMsg highlighting\nto make it obvious, that this option is different (and should not be\nused for security reasons).\n\ncloses: #13961\n\nCo-authored-by: Daniel Kahn Gillmor \u003cdkg@fifthhorseman.net\u003e\nSigned-off-by:  Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "b614b284ee06523511308f8381b47db34d921d39",
      "tree": "b8abe5dd65e20bd7aef5909dd4897bddeb457e38",
      "parents": [
        "be156a31c5400eb12025e480c477b1df88244801"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Mon Feb 12 03:13:34 2024 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Feb 11 17:13:34 2024 +0100"
      },
      "message": "runtime(vim): Update syntax file (#14009)\n\n- allow comments after :highight commands\r\n- match the bang in a :highlight[!] command\r\n- highlight the bang in :map[!], :menu[!] and :unlet[!] with vimOper\r\n  like all other commands\r\n\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "627c950e5b30503a084bd0092f9cb2a5fe73fe87",
      "tree": "41cdcd8d8790cf3192496528ce78d894701d6a42",
      "parents": [
        "45932c5c4a9ec01f7c2aa09b1574430853dafb4b"
      ],
      "author": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sat Feb 10 13:02:17 2024 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sat Feb 10 13:02:17 2024 +0100"
      },
      "message": "patch 9.1.0091: Syntax test fails when run with non C locale\n\nProblem:  Syntax test fails when run with non C locale\nSolution: Run syntax tests with C locale, clean up Xtestscript file,\n          strip environment variables from GetVimCommand()\n          (h-east)\n\ncloses: #14007\n\nCo-authored-by: h-east \u003ch.east.727@gmail.com\u003e\nSigned-off-by: h-east \u003ch.east.727@gmail.com\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "f7f33e3719c87279dfad109b874e2817007a1184",
      "tree": "bf6f9f3fa629cc51fdd7cba3e5eb942142e469e3",
      "parents": [
        "b1457d4cb9185b2b8d575b7736eff6d3a97d89eb"
      ],
      "author": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Tue Feb 06 10:56:26 2024 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Tue Feb 06 10:56:26 2024 +0100"
      },
      "message": "runtime(dosbatch): improve \u0027::\u0027 comment highlighting\n\nAdded a syntax region for command blocks so that the highlighting of\n`::` comments in them can be controlled.  The `dosbatch_colons_comment`\nvariable now controls if all `::` comments in a code block are\nhighlighted as comments or errors.  A `::` comment at the end of a\ncommand block is always highlighted as an error.\n\nThis re-enables the highlighting of `::` comments in `.bat` files as\nrequested in #13666, while allowing control of highlighting them in\ncommand blocks requested in #11778 and first attempted in #11980.\n\nrelated: #11980\nfixes: #13666\n\nCo-authored-by: Mike Williams \u003cmikew@globalgraphics.com\u003e\nSigned-off-by: Mike Williams \u003cmikew@globalgraphics.com\u003e\nSigned-off-by: mevanlc \u003cmevanlc@gmail.com\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "7c5aeaffa2bec8f16f36bd33a749a6e965d8ab30",
      "tree": "316436b33ed07207cfff84d77757b8e00b91123c",
      "parents": [
        "cbb46b439888e10f87baaca504eafd191723c44b"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Sun Feb 04 04:18:31 2024 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Feb 03 18:18:31 2024 +0100"
      },
      "message": "runtime(vim): Update syntax file (#13969)\n\nImprove string interpolation highlighting.\r\n\r\nUse the vimSep group to highlight interpolation braces as vimOperParen\r\nhas no highlighting of its own and employs vimSep via matchgroup.\r\n\r\nAdd vimNumber to the interpolation group\u0027s contained list.\r\n\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: thinca \u003cthinca@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "e3e3934bb18294b1a5636ed65299d3479f289a8e",
      "tree": "a6da8b3974ada90bdb2cdcb5aab78dbb2e9f043e",
      "parents": [
        "9204f39580bde807808b352df178fa02b5503a81"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Fri Feb 02 07:44:26 2024 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Feb 01 21:44:26 2024 +0100"
      },
      "message": "runtime(vim): Update syntax file (#13948)\n\nImprove string escape sequence and special key matching.\r\n\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "9204f39580bde807808b352df178fa02b5503a81",
      "tree": "2cd88a81cf4eed173455b83e3096b5db17fa2d42",
      "parents": [
        "e93d5cadec6323d6be90f1ec29066441ffbc9477"
      ],
      "author": {
        "name": "Ajit-Thakkar",
        "email": "142174202+Ajit-Thakkar@users.noreply.github.com",
        "time": "Thu Feb 01 16:43:01 2024 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Feb 01 21:43:01 2024 +0100"
      },
      "message": "runtime(fortran): update syntax (#13953)\n\n* runtime (Fortran) update syntax\r\n* runtime (Fortran) small fix\r\n\r\nSigned-off-by: Ajit-Thakkar \u003c142174202+Ajit-Thakkar@users.noreply.github.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "bf321806bf44d59f108fd7e5a0eaead04682701d",
      "tree": "a85148304c17b07d8d4ca3d028cd844fdba31474",
      "parents": [
        "cf8695d48cdded63043430af5a84185e9614e84c"
      ],
      "author": {
        "name": "zeertzjq",
        "email": "zeertzjq@outlook.com",
        "time": "Sun Jan 28 19:03:00 2024 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sun Jan 28 19:03:00 2024 +0100"
      },
      "message": "patch 9.1.0060: Recorded register cannot be translated using keytrans()\n\nProblem:  Recorded register cannot be translated using keytrans() when\n          it involves character search (iddqd505)\nSolution: Record a K_IGNORE instead of a K_NOP (zeertzjq)\n\nrelated: #13916\ncloses: #13925\n\nSigned-off-by: zeertzjq \u003czeertzjq@outlook.com\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "cf8695d48cdded63043430af5a84185e9614e84c",
      "tree": "a7eedcfd180e184f46528868043dbe344333b61b",
      "parents": [
        "21ce159e05615fd139c564b734a4bffc9f3fdc4b"
      ],
      "author": {
        "name": "thinca",
        "email": "thinca@gmail.com",
        "time": "Sun Jan 28 18:57:23 2024 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sun Jan 28 18:58:14 2024 +0100"
      },
      "message": "runtime(vim): Highlight string interpolation\n\ncloses: #13923\n\nSigned-off-by: thinca \u003cthinca@gmail.com\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "21ce159e05615fd139c564b734a4bffc9f3fdc4b",
      "tree": "1a56987d736a874adfd899e9e9c1598a49a4fb6c",
      "parents": [
        "0cc6108fea216f597e38d1a88463fa6f28aded61"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Mon Jan 29 04:54:08 2024 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jan 28 18:54:08 2024 +0100"
      },
      "message": "runtime(vim): Update syntax and ftplugin files (#13924)\n\nImprove matching of line-continuations and interspersed comments.\r\n\r\nThese are now also matched in multiline syntax command patterns,\r\ndictionary literals, and parenthesised expressions and argument lists.\r\n\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "0cc6108fea216f597e38d1a88463fa6f28aded61",
      "tree": "f535ade73cf1d40628e94d349b93075093ac2c3d",
      "parents": [
        "772f8f5425132b133a1d0fb22b35c13b4e027b42"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Sun Jan 28 04:20:46 2024 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jan 27 18:20:46 2024 +0100"
      },
      "message": "runtime(ant): Update syntax file (#13926)\n\nRemove invalid display option from syn-keyword commands.\r\n\r\nTake over maintenance of this file.\r\n\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "b418a51933bb606e85f5288eedb866b73b8f072e",
      "tree": "10922074e3cfc2234ea6675ed60671419ce16694",
      "parents": [
        "4d49643c3c8237db68f7717b3600459fad911291"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Sat Jan 27 21:24:45 2024 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jan 27 11:24:45 2024 +0100"
      },
      "message": "runtime(vim): Update syntax file (#13919)\n\nAdd foreach() function.\r\n\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "1f47db75fdc8c53c5c778b26ecfa0942ac801f22",
      "tree": "3e08bda69c9a77e744431b723f6e50fb74b06955",
      "parents": [
        "92e90a1e102825aa9149262cacfc991264db05df"
      ],
      "author": {
        "name": "Sergey Vlasov",
        "email": "sergey@vlasov.me",
        "time": "Thu Jan 25 23:07:00 2024 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Thu Jan 25 23:07:00 2024 +0100"
      },
      "message": "patch 9.1.0059: No event triggered before creating a window\n\nProblem:  No event is triggered before creating a window.\n          (Sergey Vlasov)\nSolution: Add the WinNewPre event (Sergey Vlasov)\n\nfixes: #10635\ncloses: #12761\n\nSigned-off-by: Sergey Vlasov \u003csergey@vlasov.me\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "046a0f75d025783a141b85b9e85a34559fd8cf63",
      "tree": "73840b3639e2f7c4124bf740d0d79d1dced5c8b5",
      "parents": [
        "a262d3f41bc51be697ddebbf04f186e7d193fd6f"
      ],
      "author": {
        "name": "gi1242",
        "email": "gi1242+github@gmail.com",
        "time": "Thu Jan 25 13:52:47 2024 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jan 25 19:52:47 2024 +0100"
      },
      "message": "runtime(mail): fix #13913 (#13917)\n\nswitch to the DFA engine for the emoji collaction range\r\n\r\nCo-authored-by: GI \u003cgi1242+vim@gmail.com\u003e\r\nSigned-off-by: GI \u003cgi1242@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "e1ddc2d5875d820b5dcb1423428ce4a01cce3fda",
      "tree": "152ab35e0b7040cfe05be622491ce6180f1b9bdd",
      "parents": [
        "68d9472c65ec75725a0b431048bebe036921331c"
      ],
      "author": {
        "name": "Ajit-Thakkar",
        "email": "142174202+Ajit-Thakkar@users.noreply.github.com",
        "time": "Wed Jan 24 15:08:34 2024 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jan 24 20:08:34 2024 +0100"
      },
      "message": "runtime(fortran): update syntax and documentation (#13912)\n\n* runtime (doc): update Fortran section\r\n* runtime(syntax): Complete support for Fortran 2023.\r\n   Minor improvements.\r\n\r\nSigned-off-by: Ajit-Thakkar \u003c142174202+Ajit-Thakkar@users.noreply.github.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "ca0e9823a1dfd71a17c0f08cb7973d413bf98999",
      "tree": "93180b5d3b740282ba8b563f4efca6959afafd1e",
      "parents": [
        "f96dc8d07f752ddd96d1447d85278a85255a1462"
      ],
      "author": {
        "name": "Luca Saccarola",
        "email": "github.e41mv@aleeas.com",
        "time": "Sun Dec 24 18:57:02 2023 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Tue Jan 23 21:34:09 2024 +0100"
      },
      "message": "runtime(c): Highlight user defined functions\n\ncloses: #13763\n\nSigned-off-by: Luca Saccarola \u003cgithub.e41mv@aleeas.com\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "9c5b90db035b0e488f4cc686514a8d2a42265eb2",
      "tree": "8515bc500a9ea5565ccdc269a669c1bfa5e49010",
      "parents": [
        "50dbe16cd8180eb03e8589694b574d610e6d562c"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Wed Jan 24 06:34:28 2024 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jan 23 20:34:28 2024 +0100"
      },
      "message": "runtime(vim): Update syntax file (#13906)\n\nHighlight :2match and :3match and add these to :help ex-cmd-index.\r\n\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "36e2c0f29332bd430f03c007be56fc6894f49923",
      "tree": "d6dd06d2a084fd3cf0fdc8aa4e58f8b61d3f510f",
      "parents": [
        "459867b6313c85a891074eedbb20e1e3b44e93c7"
      ],
      "author": {
        "name": "GI",
        "email": "gi1242@gmail.com",
        "time": "Tue Jan 23 19:46:30 2024 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Tue Jan 23 19:48:08 2024 +0100"
      },
      "message": "runtime(mail): updated syntax file\n\nSigned-off-by: GI \u003cgi1242@gmail.com\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "add31baedaf03b92dbd41427860c61c639ef705c",
      "tree": "61cb9148281adad01c27f9d0178d1a15b69696fb",
      "parents": [
        "7c71db3a58f658b4329b82ab603efa928d17bdbc"
      ],
      "author": {
        "name": "Johnothan King",
        "email": "johnothanking@protonmail.com",
        "time": "Mon Jan 22 11:19:54 2024 -0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jan 22 20:19:54 2024 +0100"
      },
      "message": "runtime(sh): Add handling for ksh93 shared-state comsubs and mksh valsubs (#13884)\n\nThis commit adds support for ksh93 shared-state command\r\nsubstitutions (syntax: ${ command; }) and mksh\u0027s value\r\nsubstitutions (syntax: ${|command;}) in the sh syntax script.\r\n\r\nAlso add a syntax test for ksh subshares with dumps included\r\nto make sure it doesn\u0027t regress.\r\n\r\nfixes: #9514\r\n\r\nSigned-off-by: Johnothan King \u003cjohnothanking@protonmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "3b2c27415d7d6e97be9580b66528e8c19d19aade",
      "tree": "4a491d586ab725849050b5d593af5d8d2b3a8132",
      "parents": [
        "ea9a93e5b0989b9242a1ea1f6f2dd7c9399e6f20"
      ],
      "author": {
        "name": "Andrea C from The App",
        "email": "3269984+gacallea@users.noreply.github.com",
        "time": "Mon Jan 22 20:10:42 2024 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jan 22 20:10:42 2024 +0100"
      },
      "message": "runtime(chuck): include ChucK syntax file (#13895)\n\nCo-authored-by: gacallea \u003cgacallea@users.noreply.github.com\u003e\r\nSigned-off-by: gacallea \u003cgacallea@users.noreply.github.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "ea9a93e5b0989b9242a1ea1f6f2dd7c9399e6f20",
      "tree": "a229591706edde04adf742bb51c87537fb310f8a",
      "parents": [
        "1cee50904e69eb8d512f2c4eb1951e73108ad826"
      ],
      "author": {
        "name": "Billie Cleek",
        "email": "bhcleek@users.noreply.github.com",
        "time": "Mon Jan 22 11:08:44 2024 -0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jan 22 20:08:44 2024 +0100"
      },
      "message": "runtime(go): update Go syntax file (#13896)\n\nUpdate the Go syntax file with some recent changes made to vim-go.\r\n\r\nSigned-off-by: Billie Cleek \u003cbhcleek@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "46d67d22b9baa575de3ef2fb7ff430b11dfa1e26",
      "tree": "ca746ae52b308ea4c416d887aecc0b7f2803751f",
      "parents": [
        "a39af02904966087b2af2372fa8233c4dfe149e3"
      ],
      "author": {
        "name": "James Eapen",
        "email": "james.eapen@vai.org",
        "time": "Fri Dec 29 11:51:40 2023 -0500"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Wed Jan 17 21:43:31 2024 +0100"
      },
      "message": "runtime(swayconfig): add focus_follows_mouse and smart_qaps syntax keywords\n\nSee:\nhttps://github.com/swaywm/sway/blob/0aceff74696f03d306dc9de5473d9ed7afb73f67/sway/sway.5.scd?plain\u003d1#L680\n`focus_follows_mouse yes|no|always`\nhttps://github.com/swaywm/sway/blob/0aceff74696f03d306dc9de5473d9ed7afb73f67/sway/sway.5.scd?plain\u003d1#L770\n\ncloses: #13797\n\nSigned-off-by: James Eapen \u003cjames.eapen@vai.org\u003e\u003cauthor\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "a39af02904966087b2af2372fa8233c4dfe149e3",
      "tree": "64e339be77d631e0987820036b13cfb75422e072",
      "parents": [
        "6e5a6c9965f667712494ae0a9df8a407267cc72f"
      ],
      "author": {
        "name": "James Eapen",
        "email": "james.eapen@vai.org",
        "time": "Fri Dec 29 11:50:33 2023 -0500"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Wed Jan 17 21:43:12 2024 +0100"
      },
      "message": "runtime(i3config): remove always from `focus_follows_mouse`\n\nThe always option does not exist in i3, only sway.\n\nFrom https://i3wm.org/docs/userguide.html:\n`focus_follows_mouse yes|no`\n\nVersion number incremented by 2 because the last commit did not\nincrement the version.\n\nSigned-off-by: James Eapen \u003cjames.eapen@vai.org\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "211211052d0426394cbd5f42f3f3f78a64822e2a",
      "tree": "8815475b006a015fe50bdba87d36ed8c9ac8b1a8",
      "parents": [
        "7d711fe2092d0438d2df5054df735ec34926e2bc"
      ],
      "author": {
        "name": "Maxim Kim",
        "email": "habamax@gmail.com",
        "time": "Wed Jan 17 03:33:51 2024 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jan 16 17:33:51 2024 +0100"
      },
      "message": "runtime(odin): include ftplugin, syntax and indent script (#13867)\n\n\r\nNote for Neovim Contributors: this is bundled as Vim9 Script. If you want to use this on Neovim, you need to convert the Vim9 scripts to Vim Script or Lua or leave it out.\r\n\r\nSigned-off-by: Maxim Kim \u003chabamax@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "ef79c5783782d12bdc6c40cf24d578cc6a1f2a8c",
      "tree": "bc51db349f7c00fb0b6faf28408ebe6d08f0c6c5",
      "parents": [
        "9c58191b34c5ccc847d8119f5055a9086980356c"
      ],
      "author": {
        "name": "Ajit-Thakkar",
        "email": "142174202+Ajit-Thakkar@users.noreply.github.com",
        "time": "Mon Jan 15 17:42:03 2024 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jan 15 22:42:03 2024 +0100"
      },
      "message": "runtime(fortran): update fortran syntax (#13870)\n\nSupport most remaining features of Fortran 2018/2023\r\nSmall improvements to folding etc,\r\nCode cleanup: use \\? instead of mix of \\\u003d and \\?\r\n\r\nSigned-off-by: Ajit-Thakkar \u003c142174202+Ajit-Thakkar@users.noreply.github.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "a606f3ac036e5f3dc313f620e6b4bc00812314f9",
      "tree": "c27363e3163007004f8838482137a5db5bf28630",
      "parents": [
        "eb3475df0d927a178789cf8e7fc4983932e1cdbe"
      ],
      "author": {
        "name": "PMunch",
        "email": "peterme@peterme.net",
        "time": "Wed Nov 15 15:35:49 2023 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Mon Jan 15 22:27:35 2024 +0100"
      },
      "message": "patch 9.1.0030: Cannot use terminal alternate font\n\nProblem:  Cannot use terminal alternate fonts (PMunch)\nSolution: Support terminal alternate fonts using\n          CSI SGR 10-20 and t_CF code (PMunch)\n\nAdd support for alternate font highlighting\n\nThis adds support for alternate font highlighting using CSI SGR 10-20.\nFew terminals currently support this, but with added tool support this\nshould improve over time. The change here is more or less taken from how\ncolors are configured and applied, but there might be some parts I\nmissed while implementing it. Changing fonts is done through the new\n`:hi ctermfont` attribute which takes a number, 0 is the normal font, and\nthe numbers 1-9 select an \"alternative\" font. Which fonts are in use is\nup to the terminal.\n\nfixes: #13513\ncloses: #13537\n\nSigned-off-by: PMunch \u003cpeterme@peterme.net\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "d7d560374b836e62e180914b6e85f0eb20557a54",
      "tree": "f3ca271789492e49cf8a0ac5b85cdf4aef6c6ecb",
      "parents": [
        "1f13fcc9342e66842bf9847d01e585ea2c2b6b30"
      ],
      "author": {
        "name": "Danek Duvall",
        "email": "duvall@comfychair.org",
        "time": "Sun Jan 14 20:19:59 2024 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sun Jan 14 20:19:59 2024 +0100"
      },
      "message": "patch 9.1.0029: Cannot act on various terminal response codes\n\nProblem:  Cannot act on various terminal response codes\nSolution: Add the TerminalResponseAll autocommand\n          (Danek Duvall)\n\ncloses: #13829\n\nSigned-off-by: Danek Duvall \u003cduvall@comfychair.org\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "ceed36873e922df9acfeabf65184fcf2b5ab1cb3",
      "tree": "80ec9379af2da7d4981d1961f7e010f9323bfe9d",
      "parents": [
        "124371c5a149a8c0c75c04b6c90ac11e71a0aa97"
      ],
      "author": {
        "name": "Maxim Kim",
        "email": "habamax@gmail.com",
        "time": "Tue Jan 09 05:42:02 2024 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jan 08 19:42:02 2024 +0100"
      },
      "message": "runtime(vim): accept dot in completionList for Vim9 syntax (#13832)\n\nif you have autoloaded command complete function in vim9script, it shouldn\u0027t be highlighted as Error:\r\n\r\n```\r\nimport autoload \"share.vim\"\r\ncommand! -range\u003d% -nargs\u003d? -complete\u003dcustom,share.Complete Share share.Paste(\u003cq-args\u003e, \u003cline1\u003e, \u003cline2\u003e)\r\n```\r\n\r\n`share.Complete` is a valid complete function.\r\n\r\nSigned-off-by: Maxim Kim \u003chabamax@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "124371c5a149a8c0c75c04b6c90ac11e71a0aa97",
      "tree": "765d5c2041967f9c6fef195fe343d9234a030e90",
      "parents": [
        "b21499537fb9fd0ff407e6113ac60ebd82058e2a"
      ],
      "author": {
        "name": "Romain Lafourcade",
        "email": "romain.lafourcade@razorfish.fr",
        "time": "Sun Jan 07 15:08:31 2024 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sun Jan 07 23:32:19 2024 +0100"
      },
      "message": "patch 9.1.0016: default diff highlighting is too noisy\n\nProblem:  default diff highlighting is too noisy\nSolution: Link diff highlighting groups to new\n          Added/Removed/Changed, revert previous change\n          (Romain Lafourcade)\n\nRemove diff* links added in #13776 and doc added in commit b1392be\n\nThe links added in #13776 are way too noisy for the contexts in which\nthe `diff` syntax is applied (git commits, patches, etc.).\n\nThis commit:\n\n- removes those links\n- adds new default highlighting groups Added, Changed and\n  Removed\n- links the diff highlighting groups to those new defaults\n- removes the doc changes\n- adjusts the syntax_completion test for those newly added group\n  names\n\nNote: Changes to the default color schemes will be handled separately,\nby adding links to those newly created Added/Removed/Changed\nhighlighting groups.\n\nrelated: #13776\ncloses #13825\n\nSigned-off-by: Romain Lafourcade \u003cromain.lafourcade@razorfish.fr\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "68a89470693c7687d4e736ca056c05de632e3ac7",
      "tree": "6b075cfda5ae9a9f125eaa9012bf0f90f1fc7112",
      "parents": [
        "3779516988f14f2070d827514c79383334a0946b"
      ],
      "author": {
        "name": "Doug Kearns",
        "email": "dougkearns@gmail.com",
        "time": "Fri Jan 05 17:59:04 2024 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Fri Jan 05 17:59:04 2024 +0100"
      },
      "message": "patch 9.1.0013: Modula2 filetype support lacking\n\nProblem:  Modula2 filetype support lacking\nSolution: Improve the Modula-2 runtime support, add additional modula2\n          dialects, add compiler plugin, update syntax highlighting,\n          include syntax tests, update Makefiles (Doug Kearns)\n\ncloses: #6796\ncloses: #8115\n\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\nSigned-off-by: Benjamin Kowarsch \u003ctrijezdci@users.noreply.github.com\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "c79646dfb10126f4ef22734d8713f2352197435e",
      "tree": "a8e2b8cde5a5025091f9251ee3137526d2657023",
      "parents": [
        "d2cc51f9a1a5a30ef5d2e732f49d7f495cae24cf"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Fri Jan 05 08:58:48 2024 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jan 04 22:58:48 2024 +0100"
      },
      "message": "runtime(vim): Update syntax file (#13671)\n\nSupport multiline :syntax commands.\r\n\r\nMatch :syn-cchar option in :syn-{keyword,region}.\r\n\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "d94ca966ca6d85d3dd03c8b68ff6a4cbae4da1af",
      "tree": "0e17a02634ee9c14b33259c9a1f1f42486aab4f6",
      "parents": [
        "83ad2726ff56db70cb2da78e1e4ea0e09941c73b"
      ],
      "author": {
        "name": "Ajit-Thakkar",
        "email": "142174202+Ajit-Thakkar@users.noreply.github.com",
        "time": "Wed Jan 03 14:58:21 2024 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jan 03 19:58:21 2024 +0100"
      },
      "message": "runtime(fortran): syntax and documentation updates (#13811)\n\ncloses: #13802\r\n\r\nSigned-off-by: Ajit-Thakkar \u003c142174202+Ajit-Thakkar@users.noreply.github.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "b5352931b354eb67eb7d223cc09c98dcf1b547b6",
      "tree": "b1f1ca50938a34b5dca19f3fdb8026dcc6e618fd",
      "parents": [
        "b1392bee701d887b66b596c9af26bfcb6f0614b8"
      ],
      "author": {
        "name": "Hugo van de Vliert",
        "email": "hvandevliert@icloud.com",
        "time": "Wed Jan 03 18:03:29 2024 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jan 03 18:03:29 2024 +0100"
      },
      "message": "runtime(vim): add jumpoptions to syntax file (#13808)\n\n* Add jumpoptions and jop to vim syntax file\r\n* Clean up some whitespace\r\n\r\nSigned-off-by: Hugo van de Vliert \u003chugo.vandevliert@floryn.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "80beeef0c6a4c44b190631725bce3dcc5635e3ee",
      "tree": "af8d5119aa8aedb428d9f8e98c1caa8e48b585e7",
      "parents": [
        "d4634a26cdcdbd0f22ec608bb4954cd7eb8db528"
      ],
      "author": {
        "name": "dezza",
        "email": "402927+dezza@users.noreply.github.com",
        "time": "Wed Jan 03 16:20:22 2024 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jan 03 16:20:22 2024 +0100"
      },
      "message": "runtime(vim): Add support for \u003cScriptCmd\u003e syntax (#10686)\n\nAdding `\u003cScriptCmd\u003e` to list of angle-bracket notation syntax, just like `\u003cCmd\u003e`\r\n\r\n`\u003cCmd\u003e` is already highlighted.\r\n```vim\r\nnnoremap \u003cleader\u003eo \u003cCmd\u003eOldfiles()\u003cCR\u003e\r\n```\r\n\r\n`\u003cScriptCmd\u003e` is not.\r\n\r\nSigned-off-by: dezza \u003c402927+dezza@users.noreply.github.com\u003e\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "d4634a26cdcdbd0f22ec608bb4954cd7eb8db528",
      "tree": "079057684bfc02a13220fdfa983ecb3142b77f3f",
      "parents": [
        "b4ddc6c11e95cef4b372e239871fae1c8d4f72b6"
      ],
      "author": {
        "name": "Brad King",
        "email": "brad.king@kitware.com",
        "time": "Wed Jan 03 10:17:24 2024 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jan 03 16:17:24 2024 +0100"
      },
      "message": "runtime(vim): Add support for `syntax foldlevel` command (#6182)\n\n\r\nSigned-off-by: Brad King \u003cbrad.king@kitware.com\u003e\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "b16fc9805535dc6eb084142da0c87210fc102494",
      "tree": "ef72f75c4f83dc3c614b17edbb4913820338da8d",
      "parents": [
        "d08059ab48b822a25060b8a486085371ddeebcf7"
      ],
      "author": {
        "name": "Lucien Grondin",
        "email": "grondilu@yahoo.fr",
        "time": "Mon Jan 01 19:00:41 2024 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jan 01 19:00:41 2024 +0100"
      },
      "message": "runtime(sh): Update sh syntax and add local keyword for bash (#13806)\n\nadd `local` in shStatement\r\n\r\nSigned-off-by: Lucien Grondin \u003cgrondilu@yahoo.fr\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "d96f25bd69c14bc257281a580f344240c72f4999",
      "tree": "a6241eaebca733c6e27828ab64abb83187de1228",
      "parents": [
        "7e4f62a2575e8ce9ebb842d4246288138b11dff3"
      ],
      "author": {
        "name": "Ajit-Thakkar",
        "email": "142174202+Ajit-Thakkar@users.noreply.github.com",
        "time": "Fri Dec 29 11:29:43 2023 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Dec 29 16:29:43 2023 +0100"
      },
      "message": "runtime(fortran): update syntax and documentation (#13784)\n\n* Update Fortran section of indent.txt\r\n* Small addition to fortran syntax\r\n\r\nSigned-off-by: Ajit-Thakkar \u003c142174202+Ajit-Thakkar@users.noreply.github.com\u003e\r\nSigned-off-by: Eisuke Kawashima \u003ce-kwsm@users.noreply.github.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\r\n\r\n* Update Fortran section of syntax.txt\r\n\r\n* Runtime (Fortran)\r\n\r\nFix regression\r\n\r\n* Combine two expressions"
    },
    {
      "commit": "715a8058895f5908f44ee243fdafa431b6483e47",
      "tree": "d34bf044f33fa877946d301175929b89e2967f22",
      "parents": [
        "244f01658f9c60c71a776a2162c28ea93e102f12"
      ],
      "author": {
        "name": "Tim Pope",
        "email": "code@tpope.net",
        "time": "Thu Dec 28 13:03:39 2023 -0500"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Thu Dec 28 23:17:54 2023 +0100"
      },
      "message": "runtime(cucumber): Updates to indent and syntax\n"
    },
    {
      "commit": "fda02d03c0cfe017e465c58b3baf8b3106287578",
      "tree": "012ecdf8dfe4e53aab0a5244dfead74d320f21cc",
      "parents": [
        "757714c0cba7772b987b2513559bcb74ce53ce3f"
      ],
      "author": {
        "name": "Tim Pope",
        "email": "code@tpope.net",
        "time": "Thu Dec 28 12:48:27 2023 -0500"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Thu Dec 28 23:17:54 2023 +0100"
      },
      "message": "runtime(gitcommit): Updates to ftplugin and syntax\n"
    },
    {
      "commit": "757714c0cba7772b987b2513559bcb74ce53ce3f",
      "tree": "69965d90e018c4799a70f1b484d18095fb06c5ac",
      "parents": [
        "48ddc6a6f86f1f42bdb49d308d72c15b0e90ce5a"
      ],
      "author": {
        "name": "Tim Pope",
        "email": "code@tpope.net",
        "time": "Thu Dec 28 12:47:31 2023 -0500"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Thu Dec 28 23:17:54 2023 +0100"
      },
      "message": "runtime(git): Make diffs foldable\n"
    },
    {
      "commit": "a03647acc313edfcc4f9cde07efe388762ada436",
      "tree": "0a1ad590ae127d63403dc9789511efe611073e88",
      "parents": [
        "38bea30f53da8e4a8847407404597b255b20334e"
      ],
      "author": {
        "name": "KSR-Yasuda",
        "email": "31273423+KSR-Yasuda@users.noreply.github.com",
        "time": "Thu Dec 28 03:02:35 2023 +0900"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Dec 27 19:02:35 2023 +0100"
      },
      "message": "runtime(mermaid): Syntax fix (#13774)\n\n* runtime(mermaid): Fix arrow syntax\r\n* runtime(mermaid): Disable syntax for identifier to avoid false match\r\n* runtime(mermaid): Add some C++ type syntax highlight\r\n* runtime(mermaid): Update last change time in header\r\n\r\nSigned-off-by: yasuda \u003cyasuda@kyoto-sr.co.jp\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "00b470052b71ca10d663186d99683e8379b21154",
      "tree": "e518294d9211ea70d07191b0d378719941501be2",
      "parents": [
        "0bca4a00188ccde335e0d6a7b7c093998e09182f"
      ],
      "author": {
        "name": "Evgeni Chasnovski",
        "email": "evgeni.chasnovski@gmail.com",
        "time": "Wed Dec 27 19:51:43 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Dec 27 18:51:43 2023 +0100"
      },
      "message": "runtime(diff): Update default links (#13776)\n\nProblem: Current default links for `diffAdded`, `diffChanged`, and\r\n              `diffRemoved` do not address the diff nature of the filetype.\r\nSolution: Use `DiffAdd`, `DiffChange`, and `DiffDelete`.\r\n\r\ncloses: #13759\r\n\r\nSigned-off-by: Evgeni Chasnovski \u003cevgeni.chasnovski@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "0bca4a00188ccde335e0d6a7b7c093998e09182f",
      "tree": "0daabf9cf36a8e05f51f39f9e5a734d80f5414a8",
      "parents": [
        "cea3dac76e42c9a33dccbd2f10ef011f0be5c292"
      ],
      "author": {
        "name": "Lifepillar",
        "email": "lifepillar@users.noreply.github.com",
        "time": "Wed Dec 27 18:49:50 2023 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Dec 27 18:49:50 2023 +0100"
      },
      "message": "runtime(context): update ConTeXt keywords and other minor fixes (#13778)\n\nUpdate to the ConTeXt runtime files. Changes:\r\n\r\n1. shared syntax files updated with `mtxrun --script interface --vim`\r\n   using the latest ConTeXt LMTX.\r\n\r\n2. fixed reference to `make` tag in the help file.\r\n\r\n3. added `keepend` to mitigate issues with embedded Lua syntax (see\r\n   below).\r\n\r\n4. the latest revision date of each ConTeXt runtime file has been\r\n   updated to the date of this commit.\r\n\r\nThe issue about embedded Lua was reported by a user:\r\n\r\n\u003eTake the following valid ConTeXt file:\r\n\r\n\u003e   \\starttext\r\n\u003e   \\ctxlua{context(\"Text generated from Lua.\")}\r\n\u003e   \\ctxlua{context(\"Another text generated from Lua.\")}\r\n\u003e   \\stoptext\r\n\r\n\u003eOn my Vim installation (including when I start Vim with `--clean`), the\r\n\u003eclosing bracket and curly braces on line 2 are highlighted red and the\r\n\u003esyntax highlighting after that is off.\r\n\r\n\u003eI was trying to dig a little bit into what was going on, using the\r\n\u003e`synID()` and `synIDattr()` functions. It appears that the closing\r\n\u003ebracket on line 2 is matched as a `luaParentError` instead of the end\r\n\u003eof the `luaParen` region. Therefore, the `luaParen` region continues\r\n\u003eall the way to the end of the file. The closing curly brace on line\r\n\u003e2 is matched as a `luaError`, the 2nd `\\ctxlua` on line 3 as\r\n\u003e`luaParen`, etc.\r\n\r\n\u003eThis issue doesn\u0027t occur in a plain Lua file, where the closing bracket\r\n\u003eis correctly matched as the end of the `luaParen` region. So it seems\r\n\u003ethat something goes wrong when the Lua syntax file is included in the\r\n\u003eConTeXt one.\r\n\r\nBy adding `keepend`, the right parenthesis for some reason is still\r\nhighlighted as a `luaParenError`, but at least the right curly brace\r\nshould correctly end the Lua block.\r\n\r\nFrom what I\u0027ve seen, I think it is very difficult to embed Lua syntax\r\nproperly without help from the Lua syntax file (that is, without\r\npatching it). It has global rules such as:\r\n\r\n   syn match  luaParenError \")\"\r\n   syn match  luaError \"}\"\r\n\r\nwhich make it difficult, if not impossible, to contain Lua syntax\r\nwithout `keepend` (and its limitations).\r\n\r\n\r\nSigned-off-by: Lifepillar \u003clifepillar@lifepillar.me\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "9042bd8b09bae0051fdf8eb5a57fa4b4420c92a0",
      "tree": "89b160f56a7fdcfa40958c9a6bfc62db86dbe160",
      "parents": [
        "377372ed5ba47995f12cd31be5f6132e82ca9cf6"
      ],
      "author": {
        "name": "Jakson Alves de Aquino",
        "email": "jalvesaq@gmail.com",
        "time": "Mon Dec 25 09:22:27 2023 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Dec 25 10:22:27 2023 +0100"
      },
      "message": "runtime(r): Update R runtime files and docs (#13757)\n\n* Update R runtime files\r\n- Fix indentation issue with ggplot().\r\n- Setlocal autoindent in indent/r.vim.\r\n- New syntax option: rmd_include_latex.\r\n- Clear syn iskeyword to recognize _ as keyword.\r\n- Document some options.\r\n- remove the test has(\"patch-7.4.1142\")\r\n- Update changed date of doc files\r\n\r\nSigned-off-by: Jakson Alves de Aquino \u003cjalvesaq@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org"
    },
    {
      "commit": "ea9964a36f948c1266d43dd8b3890c6f3bdd243d",
      "tree": "e610a8109adb25078709cd6170fbb90095446820",
      "parents": [
        "ec97edcbb9f6c0b751b03b981fd8191dbef0a5bb"
      ],
      "author": {
        "name": "Ajit-Thakkar",
        "email": "142174202+Ajit-Thakkar@users.noreply.github.com",
        "time": "Sat Dec 23 06:31:38 2023 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Dec 23 11:31:38 2023 +0100"
      },
      "message": "Runtime(fortran): updates to indent, syntax and ftplugin (#13752)\n\n* runtime update fortran.vim\r\n\r\nAdd folding for newer features of Fortran\r\n\r\n* Runtime Update fortran.vim\r\n\r\nAdd indent support for newer features of Fortran\r\n\r\n* Runtime Update fortran.vim\r\n\r\nAdd newer features of Fortran to matchit patterns\r\n\r\nSigned-off-by: Ajit-Thakkar \u003c142174202+Ajit-Thakkar@users.noreply.github.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "ec97edcbb9f6c0b751b03b981fd8191dbef0a5bb",
      "tree": "0fdcde96b8c576d7e706b6d5ab4478a699c1470e",
      "parents": [
        "1d4fcfe5515dbef15919dff6f2032a2ffaa9220f"
      ],
      "author": {
        "name": "James McCoy",
        "email": "jamessan@jamessan.com",
        "time": "Sat Dec 23 05:23:39 2023 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Dec 23 11:23:39 2023 +0100"
      },
      "message": "runtime(debcontrol): Add loong64 arch (#13754)\n\nCo-authored-by: zhangjialing@loongson.cn \u003czhangjialing@loongson.cn\u003e\r\nSigned-off-by: James McCoy \u003cjamessan@jamessan.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "37468879977ae32ab49f8fb15c4c458eb3efcdb8",
      "tree": "51d419bd1bc8bc73f65536bd9a49a03df87b4add",
      "parents": [
        "59df9ad68ba45b9e235ac068b2824e15e8b1f8a2"
      ],
      "author": {
        "name": "Wu Yongwei",
        "email": "wuyongwei@gmail.com",
        "time": "Fri Dec 22 00:12:34 2023 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Dec 21 17:12:34 2023 +0100"
      },
      "message": "runtime(masm): add variants of opcodes (#13734)\n\nthat can actually be generated by compilers\r\n\r\nSigned-off-by: Wu Yongwei \u003cwuyongwei@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "21064ebcd609b1dfcf63c55dca32e6465102d461",
      "tree": "4c9a5832508a7d0527e53605750276f29d742ca3",
      "parents": [
        "ff6f0d5c38e81f742e1161c1504fc6b8e45d9a1e"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Fri Dec 22 02:56:06 2023 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Dec 21 16:56:06 2023 +0100"
      },
      "message": "runtime(vim): Update syntax file (#13739)\n\nMatch all ex commands after \":\" and the \"|\" command separator.\r\n\r\nExceptions are not handled yet and :insert/:change/:append are still not\r\nmatched after the command separator bar.\r\n\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "cc944b1452547145cdd947a37c75fce695d8571e",
      "tree": "7f2fdeb3b46ef78ab36a414b4454f29622df486d",
      "parents": [
        "5e133157785dd2fdcfaaecd4822f2793e28b466d"
      ],
      "author": {
        "name": "Danek Duvall",
        "email": "duvall@comfychair.org",
        "time": "Thu Dec 21 07:44:19 2023 -0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Dec 21 16:44:19 2023 +0100"
      },
      "message": "runtime(json5): Add TODO support to syntax script (#13743)\n\n\r\nSigned-off-by: Danek Duvall \u003cduvall@comfychair.org\u003e\r\nSigned-off-by: Mazunki Hoksaas \u003crolferen@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "379df7c1dbb23d44918c7fbf102c4a0f7bdc2132",
      "tree": "231022874354de7eca7a60e7ff84af341db0d6c1",
      "parents": [
        "3ffc5bc6b8230bf8f28c75515e734dfb4545b29f"
      ],
      "author": {
        "name": "ronaaron",
        "email": "ron@aaron-tech.com",
        "time": "Tue Dec 19 21:20:14 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Dec 19 20:20:14 2023 +0100"
      },
      "message": "runtime(8th): updated 8th syntax (#13720)\n\n* updated 8th.vim\r\n* removed obsolete code\r\n\r\nSigned-off-by: Ron Aaron \u003cron@aaron-tech.com\u003e\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "b42703a662e87ef0ab643f417869851f065eaac4",
      "tree": "77366d0d88ad9250a7204ffb744025a64ef01dd5",
      "parents": [
        "2f05ad162e89dc2e54a2e7b4f6a8062fa808815a"
      ],
      "author": {
        "name": "Eric Pruitt",
        "email": "eric.pruitt@gmail.com",
        "time": "Mon Dec 18 00:03:40 2023 -0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Dec 18 09:03:40 2023 +0100"
      },
      "message": "runtime(tmux): Update tmux syntax rules (#13708)\n\n\r\nSigned-off-by: Eric Pruitt \u003ceric.pruitt@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "71cbe8e17a8c0c29b91943a7e9da596d718c79cf",
      "tree": "7fda12b4c207498eba0c28f3a036ca7796a9a691",
      "parents": [
        "b5011089860b24f60db1a74f91c0adf8897c4401"
      ],
      "author": {
        "name": "Ajit-Thakkar",
        "email": "142174202+Ajit-Thakkar@users.noreply.github.com",
        "time": "Mon Dec 18 08:53:21 2023 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Mon Dec 18 08:55:44 2023 +0100"
      },
      "message": "runtime(fortan): update fortran syntax rules and doc notes\n\nUpdate to the Fortran 2023 standard. Reorganize some code to reflect the\ndropping of dialect support in the previous commit. Minor improvements.\n\ncloses: #13712\n\nSigned-off-by: Ajit-Thakkar \u003c142174202+Ajit-Thakkar@users.noreply.github.com\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "0f61943eb7769777a281e0f8b8ba4c5f46d13e84",
      "tree": "91c8991cd846d8ee9479e7785b9da19aa74fc26c",
      "parents": [
        "5eb9cb53d619f89251d22299e2cb4f21918d9d38"
      ],
      "author": {
        "name": "Paulo Moura",
        "email": "pmoura@logtalk.org",
        "time": "Sat Dec 16 13:27:09 2023 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Dec 16 14:27:09 2023 +0100"
      },
      "message": "runtime(logtalk): Update Logtalk runtime files for the latest language spec (#13697)\n\n\r\nSigned-off-by: Paulo Moura \u003cpmoura@logtalk.org\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "5eb9cb53d619f89251d22299e2cb4f21918d9d38",
      "tree": "b6c3210d36c5a9422f22c15ec6e7feb0975ca523",
      "parents": [
        "0378f07fbaee9fd8773f3cf8cef146606dd7bf72"
      ],
      "author": {
        "name": "D. Ben Knoble",
        "email": "ben.knoble+github@gmail.com",
        "time": "Sat Dec 16 08:24:15 2023 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Dec 16 14:24:15 2023 +0100"
      },
      "message": "runtime(racket): update Racket runtime files (#13693)\n\nThis brings the included Racket runtime files to commit 43bfc87 (update\r\nheaders, 2023-12-15) of https://github.com/benknoble/vim-racket. Note\r\nthat not all files from that repository are included. (In particular,\r\nthe ftdetect script is omitted for now.)\r\n\r\nSigned-off-by: D. Ben Knoble \u003cben.knoble+github@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "3afc9f2556faf2574d7950d879f2bf61612f3367",
      "tree": "4936517f91771c37573773b16f3a5d7cd558bfdf",
      "parents": [
        "17dca3cb97cdd7835e334b990565c8c0b93b1284"
      ],
      "author": {
        "name": "Eisuke Kawashima",
        "email": "e-kwsm@users.noreply.github.com",
        "time": "Fri Dec 15 04:38:29 2023 +0900"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Dec 14 20:38:29 2023 +0100"
      },
      "message": "runtime(cmake): sync runtime files with upstream (#13597)\n\nSigned-off-by: e-kwsm@users.noreply.github.com\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "1c97b5c0c0b4a60d652b78da4470aeb8a7509700",
      "tree": "4d79f2cf254f3d8047cb21ec91da56e9576e9406",
      "parents": [
        "ec54af4e26952d954a4cc009f62c80ea01445d30"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Wed Dec 13 02:47:43 2023 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Dec 12 16:47:43 2023 +0100"
      },
      "message": "runtime(vim): Update syntax file, fix missing for highlight (#13668)\n\nFix highlighting of :for command.  Link the vimFor syntax group to the\r\nvimCommand highlight group.\r\n\r\nError introduced in commit f686921\r\n\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "f6869212c9e19ec8f2a4434732dd28f84f170163",
      "tree": "7ed0eacbebb49b8b115e25b56780aa40aa1294f1",
      "parents": [
        "61e984e212ed19774e088868c30c2d03c4e5a0cf"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Mon Dec 11 01:53:24 2023 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Dec 10 15:53:24 2023 +0100"
      },
      "message": "runtime(vim): Update syntax file (#13653)\n\nImprove variable highlighting in :let, :unlet, :const and :for commands.\r\n\r\nMatch registers and local, global and terminal option variables.\r\n\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "ff0baca86523f1e8c6ea593ec0ef2f9860f001d0",
      "tree": "f31a0e36913fe05fb6ddcac5041477a8f8b24428",
      "parents": [
        "e06f2b498ccca921f34a1bec4464f042a5a2cabd"
      ],
      "author": {
        "name": "laburnumT",
        "email": "laburnumtec@gmail.com",
        "time": "Fri Dec 08 21:27:03 2023 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Fri Dec 08 21:28:44 2023 +0100"
      },
      "message": "runtime(syntax): unlet b:filetype_in_cpp_family for cpp \u0026 squirrel\n\nUpdate runtime/syntax/cpp.vim and runtime/syntax/squirrel.vim to unlet\nb:filetype_in_cpp_family as it remains set even after updating the ft of\na file manually or through a modeline, not allowing c specific keywords\nto be highlighted.\n\nSince the variable b:filetype_in_cpp_family is only used by the c.vim\nsyntax script, unlet it directly after sourcing the c.vim runtime file\ninstead of at the end of the script.\n\nAlso update the last Change Header for both files.\n\ncloses: #13650\n\nSigned-off-by: laburnumT \u003claburnumtec@gmail.com\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "6863084d3bd044700973e6180ccb1a044566ec46",
      "tree": "cc99cefbb5b98dfa6beeb36d6f17185d729abb04",
      "parents": [
        "4e043b1fc7eeba2f726bbca3d50a4e872c8cb658"
      ],
      "author": {
        "name": "Ajit-Thakkar",
        "email": "142174202+Ajit-Thakkar@users.noreply.github.com",
        "time": "Tue Dec 05 23:07:27 2023 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Tue Dec 05 23:08:59 2023 +0100"
      },
      "message": "runtime(fortran): update syntax and ftplugins\n\ncloses: #13629\n\nSigned-off-by: Ajit-Thakkar \u003c142174202+Ajit-Thakkar@users.noreply.github.com\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "4e043b1fc7eeba2f726bbca3d50a4e872c8cb658",
      "tree": "5f3a0bb11acff8236817732490a7dfa34a2ec34c",
      "parents": [
        "3f7855a6123cce20db11b9047ab1860bcd56de63"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Wed Dec 06 08:58:40 2023 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Dec 05 22:58:40 2023 +0100"
      },
      "message": "runtime(vim): Update syntax file and syntax test (#13632)\n\nAdd missing assignment operators (:let*\u003d, :let/\u003d and :let%\u003d).\r\n\r\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "1e5d66408ef85c750a5af03bbf5cc19b5de7a6bc",
      "tree": "3b5cab656e15b35794025dcf84abccd94772dcce",
      "parents": [
        "ca2eca7c79bbb1afe4c4bb0a4ed8b18c72d581bf"
      ],
      "author": {
        "name": "Ronan Pigott",
        "email": "ronan@rjp.ie",
        "time": "Mon Dec 04 20:46:15 2023 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Mon Dec 04 20:46:15 2023 +0100"
      },
      "message": "patch 9.0.2148: Vim does not detect pacman.log file\n\nProblem:  Vim does not detect pacman.log file\nSolution: Detect pacmanlogs and add syntax highlighting\n\npacman.log is a filetype common to Arch Liux and related distributions.\nAdd some simple syntax highlighting for the pacmanlog filetype.\n\ncloses: #13618\n\nSigned-off-by: Ronan Pigott \u003cronan@rjp.ie\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "110dd905ddded8a1300a047c6ae42cccd89b002f",
      "tree": "98ec5cb9956758212c9051faefcbf145fe387323",
      "parents": [
        "8ceb99001b52d0c642e7532763ec9d8217ee86e3"
      ],
      "author": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Thu Nov 30 17:33:32 2023 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Thu Nov 30 17:33:32 2023 +0100"
      },
      "message": "runtime(syntax-test): ci fails, disable html test for now\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "a9058440b7b9d7f5d0027c8cd44366e9200ca241",
      "tree": "fa7cf90d2cb10cc4dd81c28f9b1f2690986fb79a",
      "parents": [
        "c4ffeddfe5bd1824650e9b911ed9245bf56c69e3"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Wed Nov 29 06:41:41 2023 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Nov 28 20:41:41 2023 +0100"
      },
      "message": "runtime(html): Update syntax file (#13591)\n\nAdd missing search element and update ARIA attribute list.\r\n\r\nAdd a very basic test file to check all elements are matched.\r\n\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "cf40409e7d17ddadaa697188788753c761479ef8",
      "tree": "976ac559340a6869aaf196e6ae22175301ce4b0a",
      "parents": [
        "64c6bfd8eef55a46a1f304d151c9464d7b93721c"
      ],
      "author": {
        "name": "Chris Aumann",
        "email": "me@chr4.org",
        "time": "Sun Nov 26 15:06:27 2023 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Nov 26 15:06:27 2023 +0100"
      },
      "message": "runtime(nginx): add additional nginx keywords (#13581)\n\n* Add support for missing keywords to the nginx syntax plugin\r\n\r\nThis adds support for several keywords from\r\n- the built-in HTTP/2 module,\r\n- the built-in SSL module,\r\n- the built-in uWSGI module,\r\n- the experimental QUIC branch,\r\n- the third-party SSL CT module,\r\n- the third-party dynamic TLS records patch.\r\n\r\nCo-Author: ObserverOfTime \u003cchronobserver@disroot.org\u003e\r\n\r\n* Add missing http2/ http3 keywords to nginx plugin\r\n\r\nCo-authored-by: Christian Brabandt \u003ccb@256bit.org\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "2e31065a650015892179e520038bf2083a9519b6",
      "tree": "11606cc1f0564adcb22bbbb52f5954aa6b049ee8",
      "parents": [
        "e214692718d6a997a0540fc688e1417564416f80"
      ],
      "author": {
        "name": "Julien Marrec",
        "email": "julien.marrec@gmail.com",
        "time": "Sat Nov 25 15:30:46 2023 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sat Nov 25 15:30:46 2023 +0100"
      },
      "message": "patch 9.0.2128: runtime(swig): add syntax and filetype plugins\n\nAdd syntax and filetype plugins for SWIG (Simplified Wrapper Interface\nGenerator) description files.\n\nThe default syntax for .i files highlights comments in a reverse\ncolor scheme which doesn\u0027t look well.  This syntax builds\non vim\u0027s c++ syntax by adding highlighting for common swig\ndirectives and user defined directives.  For an alternative\nsyntax, see vimscript #1247 (which I found after writing this).\n\ncloses: #13562\n\nCo-authored-by: Matěj Cepl \u003cmcepl@cepl.eu\u003e\nCo-authored-by: Julien Marrec \u003cjulien.marrec@gmail.com\u003e\nSigned-off-by: Julien Marrec \u003cjulien.marrec@gmail.com\u003e\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "69866449ddb20e329f4bc5250312fbfb4a773986",
      "tree": "33f32708789f86d2f686bb9458cf645d694e94ef",
      "parents": [
        "d2c977bb7c1325fd6335095dd10aef5ae7990cb3"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Wed Nov 22 05:43:40 2023 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Nov 21 19:43:40 2023 +0100"
      },
      "message": "runtime(vim): Improve keymap file highlighting (#13550)\n\n- Match :loadkeymap to EOF as a region and contain only allowed items.\r\n- Add highlighting for \u003cChar- notation.\r\n- add basic syntax highlighting tests\r\n\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "bc8f79d36a456054ed29f46585830af6d71f57c8",
      "tree": "b9a1e2fafc15d9a35b8b42ab1e83466ddfa40966",
      "parents": [
        "30c762d99ac8e755afb00f89ddd009988e95abce"
      ],
      "author": {
        "name": "rhysd",
        "email": "lin90162@yahoo.co.jp",
        "time": "Tue Nov 14 16:46:07 2023 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Tue Nov 14 16:46:07 2023 +0100"
      },
      "message": "patch 9.0.2104: wast filetype should be replaced by wat filetype\n\nProblem:  wast filetype should be replaced by wat filetype\nSolution: start using the official wat filetype name\n\nruntime: rename `wast` filetype to `wat` (Wasm text format)\n\nThe problem is the name of the current filetype wast. When the plugin\nwas initially created, the file extension for Wasm text format was not\nfixed and .wast was more popular.\n\nHowever, recently .wat became the official file extension for\nWebAssembly text (WAT) format and .wast is now a file extension for the\nunofficial WAST format, which is a superset of .wat for the convenience\nto describe the Wasm specification conformance tests.\n\nhttps://webassembly.js.org/docs/contrib-wat-vs-wast.html\n\nHowever for now, let\u0027s keep using the `wat` filetype even for the .wast\nextension, so that we at least do not lose the filetype settings and\nsyntax highlighting. This can be adjusted later, if it turns out to have\na separate need for.\n\ncloses: #13533\n\nSigned-off-by: rhysd \u003clin90162@yahoo.co.jp\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "2c133f6c1a165a74678a89722ed8c42967c295e4",
      "tree": "7d93fc98d4cc7137286cff1b6f98fb709320170f",
      "parents": [
        "9358b8d99349818666718f513655c2bf53d43754"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Sun Nov 12 05:06:56 2023 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Nov 11 19:06:56 2023 +0100"
      },
      "message": "runtime(lynx): Update for Lynx 2.8.9 (#13510)\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "9358b8d99349818666718f513655c2bf53d43754",
      "tree": "d6703451a10637ae78d99d2140a14dde06a472cc",
      "parents": [
        "305127f9f2f6058b4ec071041a2c98f76114a9b0"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Sun Nov 12 05:06:01 2023 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Nov 11 19:06:01 2023 +0100"
      },
      "message": "runtime(vim): Improve :let-heredoc syntax highlighting (#12923)\n\n\"trim\" and \"eval\" are allowed in any order and whitespace is not\r\nrequired after \"\u003d\u003c\u003c\".\r\n\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "5994329667a630b85fae07b9121668456e86b22d",
      "tree": "155df13d80c1245c82cc1c9699334382fa9fcc53",
      "parents": [
        "6cd2d1df92718853a83d811cc2d29108e8c13139"
      ],
      "author": {
        "name": "Ivan Grimaldi",
        "email": "grimaldi.ivan@gmail.com",
        "time": "Sat Nov 11 13:09:26 2023 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Nov 11 13:09:26 2023 +0100"
      },
      "message": "runtime(i3config): Update for i3 4.23 (#13522)\n\nCo-authored-by: Ivan Grimaldi \u003cgrimaldi.ivam@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "4f9074b96cc7efb1c829ca74902a851551dcf4e8",
      "tree": "df38ccfdca9b0a7b855e8c65a1807e0bd72efc65",
      "parents": [
        "bee966d3fe96f20656183d260dd03f6abb11ad79"
      ],
      "author": {
        "name": "ObserverOfTime",
        "email": "chronobserver@disroot.org",
        "time": "Sat Nov 11 09:12:27 2023 +0100"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sat Nov 11 09:12:27 2023 +0100"
      },
      "message": "patch 9.0.2098: No filetype support for xcompose files\n\nProblem:  No filetype support for xcompose files\nSolution: Add filetype detection\n\ncloses: #13508\n\nSigned-off-by: ObserverOfTime \u003cchronobserver@disroot.org\u003e\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "d56f15caf602a061f5f9f0a3c6a4537ab2dc6acc",
      "tree": "ff4a68fcd024886c4c424a0a97b96150a5907208",
      "parents": [
        "4d62a2f4439196c1cc0b2d0fc13a56dd03711b4d"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Thu Nov 09 06:53:20 2023 +1100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Nov 08 20:53:20 2023 +0100"
      },
      "message": "runtime(wget): Update for Wget2 2.1.0 (#13497)\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "ce3b0136c6d9d09af41969d3dc9634f115505a32",
      "tree": "62e7cd61a4b44e14f4779e47b0b1e9585d64c96b",
      "parents": [
        "2f54c13292af053ec00c18e5fded87b1bc602822"
      ],
      "author": {
        "name": "Lucien Grondin",
        "email": "grondilu@yahoo.fr",
        "time": "Sat Nov 04 09:41:37 2023 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Nov 04 09:41:37 2023 +0100"
      },
      "message": "runtime(sh): Update sh syntax and add shDerefOffset to shDerefVarArray for bash (#13480)\n\nAdd shDerefOffset to shDerefVarArray.\r\n\r\nExample code:\r\n\r\n```bash\r\ndeclare -a a\u003d({a..z})\r\n\r\necho \"${a[@]:1:3}\"\r\n```\r\n\r\n\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "1858e2b22ad168b1fd44a4efcd3a2b6cd9f6772d",
      "tree": "16775bf71f0402a4a5992d45ace47a12af702bbd",
      "parents": [
        "1b1c9f272ddfa5f1d7d903cd9d59320cb97bfd4b"
      ],
      "author": {
        "name": "Lucien Grondin",
        "email": "grondilu@yahoo.fr",
        "time": "Thu Nov 02 20:33:56 2023 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Nov 02 20:33:56 2023 +0100"
      },
      "message": "runtime(sh) Update sh syntax and add shDblParen to shCaseList (#13469)\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "2b89afd5eb63864154d973e7991a56a53b87a767",
      "tree": "2dab1ef589f0d3058e8cffbb7b57823a98f64eef",
      "parents": [
        "43cb8e1c3b60f6fcd30a9a0f9b01b86d640b2165"
      ],
      "author": {
        "name": "James McCoy",
        "email": "jamessan@jamessan.com",
        "time": "Thu Nov 02 15:12:29 2023 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Nov 02 20:12:29 2023 +0100"
      },
      "message": "runtime(debversions): Add noble (24.04 LTS) as Ubuntu release name (#13472)\n\nSigned-off-by: James McCoy \u003cjamessan@debian.org\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\r\n"
    },
    {
      "commit": "a390e984db20575dc726b4e0ebf95582265df8e7",
      "tree": "fa1234a84ea5cd85dccd4b2f1446bcd9256e7850",
      "parents": [
        "171c50e0b0dd2608738bcc3809e5bc5e1e3cce35"
      ],
      "author": {
        "name": "Lucien Grondin",
        "email": "grondilu@yahoo.fr",
        "time": "Sat Oct 28 21:40:48 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Oct 28 21:40:48 2023 +0200"
      },
      "message": "runtime(sh): add shDblParen to shLoopList for bash (#13445)\n\nadd shDblParen to shLoopList to correctly highlight\r\narithmetic expressions for Bash and Ksh\r\n\r\nThis should allow code such as:\r\n\r\n```bash\r\ndeclare -i i j\r\nfor i in foo bar\r\ndo ((j \u003d 1 \u003c\u003c j))\r\ndone\r\n```\r\n\r\nSigned-off-by: Lucien Grondin \u003cgrondilu@yahoo.fr\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "7b7cda67a1246874520b280277d9b1447e1a7ef5",
      "tree": "edac5c97104ead5d9cc7f36e7ba10069bb0edbcf",
      "parents": [
        "c229a6ac0775e07dff456ca8832c516e57a74e74"
      ],
      "author": {
        "name": "James McCoy",
        "email": "jamessan@jamessan.com",
        "time": "Thu Oct 26 17:14:30 2023 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Oct 26 23:14:30 2023 +0200"
      },
      "message": "runtime(debian): update debian related runtime files (#13423)\n\n* Update Debian runtime files\r\n\r\nAdd mantic as a supported Ubuntu release and move buster/kinetic to\r\nunsupported.\r\n\r\nAdd syntax highlighting for deb822sources filetype.\r\n\r\nAdd debsources ftplugin to set relevant comment options.\r\n\r\nMove common version information to shared/debversions.vim\r\n\r\nCloses #11934\r\n\r\nCo-authored-by: Heinrich Schuchardt \u003cheinrich.schuchardt@canonical.com\u003e\r\nCo-authored-by: James Addison \u003cjay@jp-hosting.net\u003e\r\nCo-authored-by: Viktor Szépe \u003cviktor@szepe.net\u003e\r\nSigned-off-by: James McCoy \u003cjamessan@jamessan.com\u003e\r\n\r\n* Add myself as codeowner for Debian-related runtime files\r\n\r\nSigned-off-by: James McCoy \u003cjamessan@jamessan.com\u003e\r\n\r\n---------\r\n\r\nSigned-off-by: James McCoy \u003cjamessan@jamessan.com\u003e\r\nCo-authored-by: Heinrich Schuchardt \u003cheinrich.schuchardt@canonical.com\u003e\r\nCo-authored-by: James Addison \u003cjay@jp-hosting.net\u003e\r\nCo-authored-by: Viktor Szépe \u003cviktor@szepe.net\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "e08bfef88bd05a9d27ee16c57cd10173e280f600",
      "tree": "745111426085749fff9daebc9f430e3d565528fa",
      "parents": [
        "198734897ead52f975d209bf2cd4f5c6f6ca200d"
      ],
      "author": {
        "name": "Gregory Anders",
        "email": "8965202+gpanders@users.noreply.github.com",
        "time": "Thu Oct 19 10:16:59 2023 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Oct 19 17:16:59 2023 +0200"
      },
      "message": "runtime(zig): Update Zig runtime files (#13388)\n\nUpdate runtime files from upstream (https://github.com/zig/zig.vim) at\r\ncommit 54c216e5306a5c3878a60596aacb94dca8652ab9.\r\n\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "5a33ce2a661fb836d4c5c489f2a850172a23e0b0",
      "tree": "5ae870be9852b35376fcd37a7d288c6c11bee7e6",
      "parents": [
        "6e6386716f9494ae86027c6d34f657fd03dfec42"
      ],
      "author": {
        "name": "Rolf Vidar Mazunki Hoksaas",
        "email": "32819373+mazunki@users.noreply.github.com",
        "time": "Tue Oct 17 11:13:06 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Oct 17 11:13:06 2023 +0200"
      },
      "message": "runtime(json5): include syntax script for json5 (#13356)\n\nMerging syntax file from gutenye/json5.vim, modified to include proper\r\nvim header.\r\n\r\nSee: https://github.com/vim/vim/issues/8499\r\n\r\nSigned-off-by: Mazunki Hoksaas \u003crolferen@gmail.com\u003e\r\nCo-authored-by: Guten Ye \u003cywzhaifei@gmail.com\u003e\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "dbf749bd5aaef6ea2d28bce081349785d174d96a",
      "tree": "cdc1b3ee6da473b77d1bd035747852cf67431964",
      "parents": [
        "f5a94d5165bb9e390797da50a1fa7a87df3fbee4"
      ],
      "author": {
        "name": "Viktor Szépe",
        "email": "viktor@szepe.net",
        "time": "Mon Oct 16 09:53:37 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Oct 16 09:53:37 2023 +0200"
      },
      "message": "runtime: Fix more typos (#13354)\n\n* Fix more typos\r\n\r\n* Fix typos in ignored runtime/ directory\r\n\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "54f70cf0780a797efaf0ff9fd4190215a3ff0eb7",
      "tree": "e0a38460c6e74fe6388dd0fc322f821b17415cf9",
      "parents": [
        "02774f99cebcb890d3861febc1d03e75c02cc92d"
      ],
      "author": {
        "name": "Josef Litoš",
        "email": "54900518+JosefLitos@users.noreply.github.com",
        "time": "Wed Sep 27 18:58:15 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Sep 27 18:58:15 2023 +0200"
      },
      "message": "runtime(swayconfig): Update syntax file (#13192)\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "02774f99cebcb890d3861febc1d03e75c02cc92d",
      "tree": "1a3fc71e5e9fd6094159449461761dd162b71e4a",
      "parents": [
        "34745942390383ec626b168e9837d284622c7bbe"
      ],
      "author": {
        "name": "Josef Litoš",
        "email": "54900518+JosefLitos@users.noreply.github.com",
        "time": "Wed Sep 27 18:57:24 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Sep 27 18:57:24 2023 +0200"
      },
      "message": "runtime(i3config): update i3config syntax (#13191)\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "34745942390383ec626b168e9837d284622c7bbe",
      "tree": "7b1ff1fb445413ab1de3a97b6a1edaf9381944c1",
      "parents": [
        "a76fbe6e00249d25fa2cfaf80ddaa360f0e1711d"
      ],
      "author": {
        "name": "Jakson Alves de Aquino",
        "email": "jalvesaq@gmail.com",
        "time": "Wed Sep 27 13:56:02 2023 -0300"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Sep 27 18:56:02 2023 +0200"
      },
      "message": "runtime(rmd) Update ftplugin and syntax files (#13193)\n\nftplugin/rmd.vim:\r\n\r\n  - Set \u0027commentstring\u0027 dynamically according to code region.\r\n\r\nsyntax/rmd.vim:\r\n\r\n  - Include syntax highlighting of fenced languages dynamically.\r\n  - Add conceal char for line break.\r\n\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "99c3849a9299982666a7b677f0565a7b3717d20c",
      "tree": "c71897134dcd7f67156f4ad97e65b29758a6a7b1",
      "parents": [
        "b895b0fabce7d952a6617eb69fc1e1597ece8b00"
      ],
      "author": {
        "name": "Dominique Pellé",
        "email": "dominique.pelle@tomtom.com",
        "time": "Sun Sep 24 16:09:31 2023 +0200"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sun Sep 24 16:09:31 2023 +0200"
      },
      "message": "patch 9.0.1929: runtime tests fail with tiny vim\n\nProblem:  runtime tests fail with tiny vim\nSolution: check for tiny vim, run runtime tests in CI\n          even for tiny version\n\ncloses: #13169\ncloses: #13170\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\nCo-authored-by: Dominique Pellé \u003cdominique.pelle@tomtom.com\u003e\n"
    },
    {
      "commit": "e30d8e4ce01dc1aca95d25be9fd27c09855fd4be",
      "tree": "a4dee78def4073602b61acf0099ea7c8bdcbddb7",
      "parents": [
        "6b5efcdd8e976d2ab2554b22c4220c5e88de4717"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Mon Sep 18 02:51:22 2023 +1000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Sep 17 18:51:22 2023 +0200"
      },
      "message": "runtime(kotlin): Add Kotlin runtime files (#13110)\n\nCloses udalov/kotlin-vim#39\r\n\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "35928ee8f80ea721e92bb856c8ecde2cced46bb9",
      "tree": "2bcc9d8718e637a7f03c87044e1e64bd1a34efd8",
      "parents": [
        "c1f8bb37c6a8e0babc2a41f16860763b57c23fa1"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Sat Sep 16 04:12:50 2023 +1000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Sep 15 20:12:50 2023 +0200"
      },
      "message": "runtime(vim): Highlight all :loadkeymap abbreviations in vim syntax (#13092)\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "8b2457a3819826d90ad2b1677d213d9f924ec6c0",
      "tree": "c8b4c175d840530e9969922836b1ac933bfb15d2",
      "parents": [
        "fc93594d562dbbd9da03c89754538f91efd0c7ca"
      ],
      "author": {
        "name": "Josef Litoš",
        "email": "54900518+JosefLitos@users.noreply.github.com",
        "time": "Tue Sep 12 20:24:47 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Sep 12 20:24:47 2023 +0200"
      },
      "message": "runtime(swayconfig): improve syntax highlighting (#13060)\n\n* syntax(swayconfig): improved highlighting\r\n* syntax(swayconfig): adapt to i3config structure\r\n\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "fc93594d562dbbd9da03c89754538f91efd0c7ca",
      "tree": "d4b3a63d698ee90b196923fd895f4675004a1f99",
      "parents": [
        "f5356bf6751fc1af77c8d27c7286639527fde3f2"
      ],
      "author": {
        "name": "Gregory Anders",
        "email": "8965202+gpanders@users.noreply.github.com",
        "time": "Tue Sep 12 13:23:38 2023 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Sep 12 20:23:38 2023 +0200"
      },
      "message": "runtime(rust): sync rust runtime files with upstream (#13075)\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "f5356bf6751fc1af77c8d27c7286639527fde3f2",
      "tree": "26741c7f607a4501a40ce255cd819785cbf1a2f0",
      "parents": [
        "596ad66d1ddb742ef349e98eb06b8e4052f68f51"
      ],
      "author": {
        "name": "Josef Litoš",
        "email": "54900518+JosefLitos@users.noreply.github.com",
        "time": "Tue Sep 12 20:20:25 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Sep 12 20:20:25 2023 +0200"
      },
      "message": "runtime(i3config): syntax structure cleanup (#13080)\n\n* syntax(i3config): improved i3config highlighting\r\n* syntax(i3config): refactor structure\r\n\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "62145db91b104075277cb3a940e18832ad106264",
      "tree": "4e109f7459b4030f043efcbe495bde530f67c2b5",
      "parents": [
        "504543f98be2ddb6d49ea2f7e996112868fc54ed"
      ],
      "author": {
        "name": "Josef Litoš",
        "email": "54900518+JosefLitos@users.noreply.github.com",
        "time": "Mon Sep 11 20:12:48 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Sep 11 20:12:48 2023 +0200"
      },
      "message": "syntax(i3config): improved i3config highlighting (#13054)\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "e7833e73471a110c7c38c80935e1b840f254a3da",
      "tree": "45feb8ed4cd35f48da0c202e2e12acccedfc3cae",
      "parents": [
        "0ce2c594d0704f27a16d2c13fce85d596cc91489"
      ],
      "author": {
        "name": "Wu Yongwei",
        "email": "wuyongwei@gmail.com",
        "time": "Mon Sep 11 00:27:31 2023 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Sep 10 18:27:31 2023 +0200"
      },
      "message": "runtime(masm): add support for AVX-2 and AVX-512 (#13061)\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "0ce2c594d0704f27a16d2c13fce85d596cc91489",
      "tree": "61f5825bd4299857cb1ee4c869b06841a9785919",
      "parents": [
        "f36bbcd402c6ee5a27bcab3b20b6362ab93b8898"
      ],
      "author": {
        "name": "Mahmoud Abduljawad",
        "email": "mahmoud@masaar.com",
        "time": "Sun Sep 10 18:23:04 2023 +0200"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sun Sep 10 18:23:04 2023 +0200"
      },
      "message": "patch 9.0.1891: No runtime support for Mojo\n\nProblem:  No runtime support for Mojo\nSolution: Add basic filetype and syntax plugins\n\ncloses: #13062\ncloses: #13063\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\nSigned-off-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\nCo-authored-by: Mahmoud Abduljawad \u003cmahmoud@masaar.com\u003e\n"
    },
    {
      "commit": "066103307534f81de08a092aac3a15e864a5a25f",
      "tree": "1ee7399d3c6e71ac22891577b6367d1a5782d930",
      "parents": [
        "0405405536f06a3bf384757be4affa9c1a07bdcd"
      ],
      "author": {
        "name": "Emil Ejbyfeldt",
        "email": "eejbyfeldt@liveintent.com",
        "time": "Sun Sep 10 18:16:51 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Sep 10 18:16:51 2023 +0200"
      },
      "message": "runtime(scala): Fix Scala highlighting string literal as type param (#13070)\n\nSince https://docs.scala-lang.org/sips/42.type.html which is implemented\r\nin Scala 2.13 and in Scala 3 it possible to use string literals as\r\nsingleton types. So code like\r\n```\r\nsomeFunc[\"abc\"]\r\n```\r\nis valid. Currently this code is not hightlighted correctly and worse if\r\nthere is an unclosed `(` in the string it breaks the formating in the\r\nrest of the file.\r\n\r\nI also submitted this patch to the mentioned project for this runtime\r\nfile: https://github.com/derekwyatt/vim-scala/pull/173 But there are no\r\ncommits there over the last 2 years and no response in the week since I\r\ncreated it. Also the last change to the Scala syntax file:\r\nhttps://github.com/vim/vim/pull/9594 is yet to be backported to that\r\nrepo. Therefore I am opening this PR as well to get some feedback on how\r\nto proceed to get this fixed.\r\n\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "733bbcde776e857b45bf4c713a3c9203ac728040",
      "tree": "a1321f49c0425f9dc0ac1fede5da0e8e843bc7b6",
      "parents": [
        "342f4f626ed56921b1ef145ccaa05ba0a4b8ac01"
      ],
      "author": {
        "name": "Andrii Sokolov",
        "email": "andriy145@gmail.com",
        "time": "Sat Sep 09 12:00:09 2023 +0200"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Sat Sep 09 12:00:09 2023 +0200"
      },
      "message": "runtime(nasm): updated syntax file\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\n"
    },
    {
      "commit": "86cfb39030eb557e1a1c7804f9c147556ca5dbf1",
      "tree": "e95b65f1ff5e23f3696f21515e19c86fa654984b",
      "parents": [
        "1bd2cb11694690a77e4141bce2e34d9dfb882f1c"
      ],
      "author": {
        "name": "fritzophrenic",
        "email": "fritzophrenic@gmail.com",
        "time": "Fri Sep 08 12:20:01 2023 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Sep 08 19:20:01 2023 +0200"
      },
      "message": "runtime(tohtml): Update TOhtml to version 9.0v2 (#13050)\n\nModified behavior:\r\n  - Change default value of g:html_use_input_for_pc from \"fallback\" to\r\n    \"none\". This means with default settings, only the standards-based\r\n    method to make special text unselectable is used. The old method\r\n    relying on unspecified browser behavior for \u003cinput\u003e tags is now only\r\n    used if a user specifically enables it.\r\n  - Officially deprecate g:use_xhtml option (in favor of\r\n    g:html_use_xhtml) by issuing a warning message when used.\r\n\r\nBugfixes:\r\n  - Fix issue #8547: LineNr and other special highlight groups did not\r\n    get proper style rules defined when using \"hi link\".\r\n  - Fix that diff filler was not properly added for deleted lines at the\r\n    end of a buffer.\r\n\r\nOther:\r\n  - Refactored function definitions from long lists of strings to use\r\n    :let-heredoc variable assignment instead.\r\n  - Corrected deprecated \".\" string concatenation operator to \"..\"\r\n    operator in more places.\r\n\r\n\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "acb91d3905cfef5eff8edfb76e62a6b6bab1e91e",
      "tree": "4b93b1f8370ef5b1fbaced52f99a3296d23b13d5",
      "parents": [
        "738ce77aa9e4922dd724d1470960285cbb9ab3c2"
      ],
      "author": {
        "name": "Dominique Pellé",
        "email": "dominique.pelle@gmail.com",
        "time": "Fri Sep 01 23:10:26 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Sep 01 23:10:26 2023 +0200"
      },
      "message": "runtime(zserio): add zserio syntax (#13005)\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "da16a1b471aa717f58909cc6531cb6dbbff14d22",
      "tree": "313bb28b097f3b22db47a407fd081b651de74f78",
      "parents": [
        "816fbcc262687b81fc46f82f7bbeb1453addfe0c"
      ],
      "author": {
        "name": "Doug Kearns",
        "email": "dougkearns@gmail.com",
        "time": "Fri Sep 01 18:33:33 2023 +0200"
      },
      "committer": {
        "name": "Christian Brabandt",
        "email": "cb@256bit.org",
        "time": "Fri Sep 01 18:36:49 2023 +0200"
      },
      "message": "runtime(ruby): Update syntax, indent and ftplugin files\n\nWhile making changes to the ruby ftplugin, slightly change the exepath()\nconditional from patch 9.0.1833 and move it after the :cd invocation.\n\ncloses: 12981\ncloses: 12994\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e\nCo-authored-by: Tim Pope \u003ccode@tpope.net\u003e\nCo-authored-by: Doug Kearns \u003cdougkearns@gmail.com\u003e\n"
    },
    {
      "commit": "1610528cc3052103e368c4175b09db6f9a6c150c",
      "tree": "0368d56321851face9154cfaa52103cdd2600610",
      "parents": [
        "1bed993c01c4b5e4c6ab55e80e2410ba87de487c"
      ],
      "author": {
        "name": "dkearns",
        "email": "dougkearns@gmail.com",
        "time": "Thu Aug 31 16:17:16 2023 +1000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Aug 31 08:17:16 2023 +0200"
      },
      "message": "runtime(forth): Update syntax and ftplugin files (#12976)\n\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    },
    {
      "commit": "535b9e12d02f5fef969fb680d579c586bd5f40db",
      "tree": "039107037b9237d46237476a1f9adbda3021a889",
      "parents": [
        "fa0094e1629332751d62416eb7f122181605ff5f"
      ],
      "author": {
        "name": "Herrington Darkholme",
        "email": "2883231+HerringtonDarkholme@users.noreply.github.com",
        "time": "Sat Aug 26 09:01:47 2023 -0700"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 26 18:01:47 2023 +0200"
      },
      "message": "runtime(typescript): Fix highlighting symbols after number literal (#12911)\n\nfixes #12831\r\nSigned-off-by: Christian Brabandt \u003ccb@256bit.org\u003e"
    }
  ],
  "next": "e8d6f03f6a61f60de6893253621d057f63dd6a23"
}
