We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cc379e commit 248ba1cCopy full SHA for 248ba1c
1 file changed
bin/apty.c
@@ -40,6 +40,9 @@ void send_(struct ptybuf *buf) {
40
char *p = buf->d;
41
for (; i < n; i++) {
42
switch (p[i]) {
43
+ case '\a':
44
+ /* filter out bell */
45
+ break;
46
case '\b':
47
c -= c > bol;
48
eol -= eol == c + 1;
0 commit comments