Quiero reasignar los accesos directos del terminal (En particular, quiero reasignar INTR
de CTRL+C
a Command+C
) en la Terminal.
Así que estas son mis fijaciones actuales de 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;
Y por ejemplo si quieres remapear algo sería como
stty intr \^c
Qué mapas SIGINT
a CTRL+C
Pero quiero hacer un mapa SIGINT
a COMMAND+C
. Algo así (que no es válido):
stty intr c
Ahora sé que el terminal no reconoce realmente la tecla Comando, pero ¿hay alguna forma creativa de hacerlo?
Nota: Sé que se puede hacer con ITerm2 pero me pregunto si hay una manera de hacerlo con el Terminal vainilla.
Gracias