> >Sorry I meant not the Apple crash report, but the output printed to
> the terminal upon a crash. It should start with something like:
Oh ok, but it didn’t look like it has anything useful printed. Here is the 
message
```
penguin@macstudio bash % ./bash --norc
bash(78229,0x1fcb120c0) malloc: nano zone abandoned due to inability to reserve 
vm space.
bash-5.3$ echo "hello"
hello # I then press Ctrl + R, Ctrl + C on my keyboard from
bash-5.3$ zsh: segmentation fault  ./bash --norc
penguin@macstudio bash %
```


> Also, can you provide some more details on:
>
> > iirc I have configured my keyboard to also send ESC key when
> > I press Ctrl + C.
>
> Is this a hardware feature of the keyboard or something you set up
> in software?c

Yes, I’m using a customizable keyboard which uses the qmk firmware
The actual code can be found in here:
https://github.com/tgckpg/qmk-ergodox-ez-keymap/blob/main/keymap.c

### Relevant code snippet
```
        // When pressing Ctrl + C, also press esc key
        // Temp fix for intelliSense in VSMac not working with VsVim
        case KC_I:
            if( record->event.pressed )
            {
                if( mod_state & MOD_MASK_CTRL )
                {
                    del_mods( MOD_MASK_CTRL );
                    register_code(KC_ESC);
                    esckey_registered = true;
                    set_mods( mod_state );
                    return true;
                }
            }
            else if ( esckey_registered )
            {
                unregister_code( KC_ESC );
                esckey_registered = false;
                return true;
            }
            break;
```

Reply via email to