Voglio rimappare le scorciatoie da terminale (In particolare, voglio rimappare INTR
da CTRL+C
a Command+C
) nel Terminale.
Quindi questi sono i miei attuali collegamenti stty
$ stty -a
speed 38400 baud; 38 rows; 179 columns;
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 = <undef>;
eol2 = <undef>; erase = ^?; intr = ^C; kill = ^U; lnext = ^V;
min = 1; quit = ^\; reprint = ^R; start = ^Q; status = ^T;
stop = ^S; susp = ^Z; time = 0; werase = ^W;
Ad esempio, se desideri rimappare qualcosa, sarebbe come
stty intr \^c
Quale mappa SIGINT
a CTRL+C
Ma voglio mappare SIGINT
a COMMAND+C
. Qualcosa di simile (che non è valido):
stty intr ⌘c
Ora so che il terminale non riconosce realmente il tasto Comando, ma esiste un modo creativo per farlo?
Nota: so che può essere fatto con ITerm2, ma mi chiedo se c'è un modo per farlo con il terminale vanilla.
Grazie