Fix typo that broke the mapping page rendering.

Previously, `:doc mapping` hid everything from the beginning of the "expansions"
link up to the "keys" link in the next section (the next occurring comma). Now
the end of the "Mapping commands" section and the beginning of the "Mapping
keys" section are properly visible inside Kakoune.
This commit is contained in:
Tim Allen 2023-10-08 13:05:23 +11:00
parent 4065a4c99e
commit 5d55ecc879

View File

@ -65,7 +65,7 @@ map global user n :make-next-error<ret>
If you make a normal-mode mapping, you can prefix it with a count or a register If you make a normal-mode mapping, you can prefix it with a count or a register
name like any other normal-mode key. You can forward this information to the name like any other normal-mode key. You can forward this information to the
command you invoke with the `%val{count}` and `%val{register}` expansions command you invoke with the `%val{count}` and `%val{register}` expansions
(See <<expansions#`:doc expansions`>>). For example: (See <<expansions#,`:doc expansions`>>). For example:
---- ----
map global normal = ':echo Got count %val{count} and reg %val{register}<ret>' map global normal = ':echo Got count %val{count} and reg %val{register}<ret>'