103

Is it possible for me to make Ctrl+C perform a copy command if there is highlighted text in the terminal?
Otherwise, it should retain its normal behavior.

(If there is a terminal that can do this other than gnome-terminal, that's probably fine too.)

Braiam
  • 69,112
user541686
  • 4,347

11 Answers11

102

You can change the keybinding for Cut and Paste from the default Ctrl+Shift+C, Ctrl+Shift+V to what you say, namely Ctrl+C, Ctrl+V, in the Edit → Keyboard Shortcuts menu. Though you should also change the default terminal meaning associated with Ctrl+C (interrupt), for example in this way

stty intr ^J

(I chose Ctrl+J because I don't remember it is associate with some action, but you can make your own choice.)

I don't think it is possible to retain the default interrupt action for Ctrl+C only when there is no text highlighted.

David Foerster
  • 36,890
  • 56
  • 97
  • 151
enzotib
  • 96,093
47

As already noted, Ctrl + C is typically used for interrupting a program. But instead of using Ctrl + Shift + C to copy, which I do much more frequently than interrupting a process, I change the setting to have Ctrl + C to copy and Ctrl + Shift + C to interrupt.

You can do this in GNOME Terminal by going to "Edit" -> "Keyboard Shortcuts..." and map the "Copy" action to Ctrl + C and "Paste" to Ctrl + V. The interrupt command will automatically be remapped to Ctrl + Shift + C.

Les Lim
  • 168
ilovefigs
  • 570
43

Ctrl + C is already assigned to another command, which is the one that interrupts the program that is running in the terminal For example, ping www.google.com will start pinging Google until you tell it to stop. The way you do it, is by pressing Ctrl + C

So, they couldn't just change the assignment of that combination.

Highlight the text you want to copy, press Ctrl + Shift + C and it is copied to the clipboard. Ctrl + Shift + V and you paste it.

Let me know if it doesn't work...

Dan
  • 555
35

Apart from what @Dan said, there's another option for copy-pasting text in Linux, which I'm finding much faster and easier to use, since there's no need to switch from mouse (which you're using to make the selection) to keyboard:

  • selecting text with mouse copies it to clipboard
  • middle-click pastes it.

This feature is especially useful in terminal, for example when assembling a command from bits of text which are already on screen.

This works in all applications, so it's possible to copy-paste text from a web page to terminal etc.

The clipboard buffer used for middle-click copy-paste is separate from the one used for Ctrl+C/Ctrl+V, which makes it possible to have two different bits of text copied at the same time.

Sergey
  • 44,353
5

To make cut and paste (Ctrl+V, Ctrl+C) work in the console or terminal, put the following code into terminal to change the key bindings automatically:

gconftool-2 -t str -s /apps/gnome-terminal/keybindings/copy "<Control>c"

gconftool-2 -t str -s /apps/gnome-terminal/keybindings/paste "<Control>v"
Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407
user165696
  • 51
  • 1
  • 2
3

Sorry for writing an answer on this, it looks like I spent too much of my reputation on a bounty for being able to post a comment.

There is no way to change the behavior of keyboard shortcuts depending on whether there is a text selection or not, and I would avoid reassigning the terminal's Ctrl-C.

BUT, you can easily get accustomed to

  • Ctrl+Ins for copying
  • Shift+Ins for pasting

This works practically everywhere (except in Nautilus, sigh), and hardly ever interfers with anything!

3

Is someone wanted you could use:

> stty intr ^K         # free Ctrl+C for copy use Ctrl+K instead
> stty lnext ^-        # free Ctrl+V for paste use ^- instead
> stty -g
> stty -g > ~/.stty    # store the settings in home directory

Add the following to ~/.bashrc

case $- in
 *i*)
   stty `cat ~/.stty`     #  reload the stored stty settings
   bind -u quoted-insert  #  unbind the quoted-insert function of bash - free Ctrl+V for paste
esac

And then gconf editor or somesuch to change terminals keybindings to CTRL+C for Copy and CTRL+V for paste.

MrVaykadji
  • 5,965
2

in Lxterminal (default terminal in Lxde ), you can fully customize shortcuts:

enter image description here

Sadegh
  • 1,125
1

As already stated, Ctrl+C won't work because of the interrupt usage, but I just figured out a way that worked for me. My goal was to have to press only two keys, not three, and preferably something I'm used to, and not in a too inconvenient place on the keyboard.

The keyboard I have on my Linux box has a "Windows" key, in the same place as the "Command" key on a Mac. So I just went to EditKeyboard Shortcuts and I changed the shortcuts to use this key, so it now says Super+C and Super+V. I sometimes use a Mac too, so this was easy to get used to.

foraker
  • 11
0

On terminator you can change the bindings by doing the following:

  • right-click on the terminal screen. Select Preferences.
  • Go to Keybindings.
  • double-click on the command set for Copy (Ctrl+Shift+C by default) and then press Ctrl+C on keyboard.
  • The Copy command is changed. Repeat for the Paste command.
  • Exit Preferences.

Now you can use normal Ctrl+C and Ctrl+V to copy and paste respectively.

0

I think that you cannot because in gnome terminal Ctrl+C, Ctrl+X, Ctrl+V do not work. For cutting, copying and pasting you have to highlight the text, right click and choose the action you want to do

N.N.
  • 18,589