Here is the code I have :
[::
Send [
Input, Char, T2 L1
if Char = a
{
Send â
return
}
Send %Char%
return
When I type [
then a
, it has a normal behaviour and produces â
. But, when I type [
then p
, the character [
is not printed. The problem is the second line (Send [
) in which [
is the character being remapped.
I tried the following without success :
Send `[
Send {[}
I want to print [
even if it is being remapped.