Thank you for less.
I will suggest a change so that I can differentiate M-C-m / M-Return from M-C-j ...
static void set_termio_flags(
#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS
struct termios *s
#else
struct termio *s
#endif
)
{
+ // so we get M-C-m (M-Return) different than M-C-j
+ s->c_iflag &= ~ICRNL;
+
If you would consider such a change I can create a PR.
thx,
-m