मैं (विशेष रूप से, मैं पुन: मैप करना चाहते हैं टर्मिनल शॉर्टकट को पुन: मैप करना चाहते INTR
से CTRL+C
करने के लिए Command+C
) टर्मिनल में।
तो ये मेरे वर्तमान स्टेंट बाइंडिंग हैं
$ 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;
और उदाहरण के लिए यदि आप कुछ रीमैप करना चाहते हैं तो वह ऐसा होगा
stty intr \^c
कौन सा नक्शे SIGINT
कोCTRL+C
लेकिन मैं मैप करना चाहते SIGINT
करने के लिए COMMAND+C
। ऐसा कुछ (जो अमान्य है):
stty intr ⌘c
अब मुझे पता है कि टर्मिनल वास्तव में कमांड कुंजी को नहीं पहचानता है, लेकिन क्या ऐसा करने का एक रचनात्मक तरीका है?
नोट: मुझे पता है कि यह ITerm2 के साथ किया जा सकता है, लेकिन सोच रहा हूं कि क्या वेनिला टर्मिनल के साथ ऐसा करने का कोई तरीका है।
धन्यवाद