Je veux remapper les raccourcis du terminal (en particulier, je veux remapper INTR
de CTRL+C
à Commande+C
) dans Terminal.
Voici donc mes liaisons stty actuelles
$ stty -a
speed 38400 baud; 38 lignes; 179 colonnes;
lflags: icanon isig iexten echo echoe echok echoke -echonl echoctl
-echoprt -altwerase -noflsh -tostop -flusho pendin -nokerninfo
-extproc
iflags: -istrip icrnl -inlcr -igncr ixon -ixoff ixany imaxbel iutf8
-ignbrk brkint -inpck -ignpar -parmrk
oflags: opost onlcr -oxtabs -onocr -onlret
cflags: cread cs8 -parenb -parodd hupcl -clocal -cstopb -crtscts -dsrflow
-dtrflow -mdmbuf
cchars: discard = ^O; dsusp = ^Y; eof = ^D; eol = ;
eol2 = ; erase = ^?; intr = ^C; kill = ^U; lnext = ^V;
min = 1; quit = ^\; reprint = ^R; start = ^Q; status = ^T;
stop = ^S; susp = ^Z; time = 0; werase = ^W;
Et par exemple, si vous voulez remapper quelque chose, ce serait comme ça
stty intr \^c
Ce qui mappe SIGINT
à CTRL+C
Mais je veux mapper SIGINT
à COMMAND+C
. Quelque chose comme ceci (qui est invalide) :
stty intr c
Je sais que le terminal ne reconnaît pas vraiment la touche Commande, mais y a-t-il un moyen créatif de le faire ?
Remarque: Je sais que cela peut être fait avec ITerm2 mais je me demande s'il y a un moyen de le faire avec le Terminal classique.
Merci