I have a Swiss keyboard where the ']' is created with the CTRL-ALT-5 key combination. I remapped it to the 'à' character as so:
keymap.set({"n", "o", "x"}, "à", "]", {remap = true}) The remap works in normal mode but not in the help files. What am I doing wrong?
remap = true? This is usually not what you'd want. And why not use<C-]>as mapping target as this seems to be the command you ultimately want to run?:help map.txtuses "remap[ping]" in this specific meaning.