st
simple terminal
git clone https://9o.is/git/st.git
commit 5e21ec3504770e46ed7fde8b10e6cf72822b316f parent 2558b480d2db203ed8997e266af24b88c91ee994 Author: Christoph Lohmann <20h@r-36.net> Date: Tue, 26 Feb 2013 19:08:51 +0100 Changing the way how paste is handled, just for the nano people. Diffstat:
| M | st.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/st.c b/st.c @@ -796,7 +796,7 @@ selcopy(void) { } /* \n at the end of every selected line except for the last one */ if(is_selected && y < sel.e.y) - *ptr++ = '\n'; + *ptr++ = '\r'; } *ptr = 0; }