I am accustomed to using the right-click in the Ubuntu terminal and typing “c” to copy highlighted text and “p” to paste it. These short-cuts are indicated by an underscore of the appropriate letter to use - everyone knows this.
In my recently installed Peppermint 3 no letter is underscored for the copy command, and using the usual “c” key results in the closure of the terminal window, as indicated at the bottom of the context menu.
The letter to use is “y”. But habit is a wonderful thing!
Everywhere else, you’d just miss out the “Shift” key … but in the terminal Ctrl+C is reserved to end a running command, so the shift key is also required.
… except that…
In this example I wanted to remove test.txt~ from the home folder so highlighted it then Ctrl+Shift+c to copy the title. This produces ^C on the current line and opens a new line.
Ctrl+Shift+P then pastes it in the new line and adds ^M at the end. Pressing enter creates an error of course. Like this:
keith@D505 ~ $ ls
Desktop Documents Downloads Dropbox Music Pictures Public Templates test.txt~ Videos
keith@D505 ~ $ rm ^C
keith@D505 ~ $ test.txt~^M
: command not found
keith@D505 ~ $
OK, you’re getting things confused … As I said … everywhere other than the terminal you don’t use SHIFT (only in the terminal do you need shift)
So it would be
Ctrl+C to copy the title
Ctrl+Shift+V to paste it into the terminal
outside of the terminal
Ctrl+C = copy
Ctrl+V = paste
in the terminal
Ctrl+Shift+C = copy
Ctrl+Shift+V = paste
But you don’t half like making things hard for yourself … if you’re trying to delete (not send to bin) something in the file manager … highlight it, then Shift+Del … gone
No; my comments were all regarding the terminal. But as I say, it’s not important.
I didn’t know about Shift+del - that’s very useful. I learn a little every day. Trouble is, I tend to forget rather more!