Changing the way how paste is handled, just for the nano people.
This commit is contained in:
parent
1aa26b4ecd
commit
1c1621da69
2
st.c
2
st.c
|
@ -796,7 +796,7 @@ selcopy(void) {
|
||||||
}
|
}
|
||||||
/* \n at the end of every selected line except for the last one */
|
/* \n at the end of every selected line except for the last one */
|
||||||
if(is_selected && y < sel.e.y)
|
if(is_selected && y < sel.e.y)
|
||||||
*ptr++ = '\n';
|
*ptr++ = '\r';
|
||||||
}
|
}
|
||||||
*ptr = 0;
|
*ptr = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue