How to paste into nano from clipboard?

37

4

I have an Ubuntu server hosted by Vultr which I am interacting with remotely using their provided terminal. I would like to know how to paste from my clipboard into nano, which I am using to write the code for my server. I have tried Ctrl+U but this does not work for me.

Other keyboard shortcut commands work, such as write out Ctrl+O and quit Ctrl+X, so I am sure that the Vultr terminal can recognise these keyboard commands.

I'm sure there is a way to paste into nano from the clipboard but I'm not sure what the shortcut is.

Question: What is the keyboard shortcut to paste from clipboard into nano? If there is no way to do this, what native Linux editor is capable?

Oscar Chambers

Posted 2017-10-25T03:54:58.483

Reputation: 481

Did you try right clicking on the terminal that you are running your SSH session in? Some terminals use right click for paste. – jrh – 2017-10-25T11:58:47.583

Answers

46

You could try the following two commands to paste from the clipboard. Both of them should work.

  1. Ctrl+Shift+v

  2. Shift+Insert

The Ctrl+U command only allows pasting text that was copied or cut from within nano itself, hence the reason the command is not working.


Edit:

Unfortunately, for the specific case when using Vultr console, there seems to be no easy way of using copy and paste. Vultr simply does not support it. An alternative would be to use SSH together with another terminal to connect to the server. If you are on Windows, using putty would work.

Shaido - Reinstate Monica

Posted 2017-10-25T03:54:58.483

Reputation: 1 195

3The paragraph after the numbered list is correct. The nano command does not try to access the clipboard of a GUI. (You may have multiple clipboards. Using Ctrl-K from nano, to cut, will use nano's internal clipboard.) – TOOGAM – 2017-10-25T05:43:54.283

2Sadly neither CTRL + Shift + V or Shift + Insert worked for me – Oscar Chambers – 2017-10-26T01:10:21.753

1I'm using Terminus and it worked for me - yay – ElectricLlama – 2017-11-08T00:42:55.310

12

SSH Putty windows Shift+right mouse click worked for me with default putty settings.

RiCHiE

Posted 2017-10-25T03:54:58.483

Reputation: 161

9

nano itself has no system clipboard integration; it is dependent on the terminal's clipboard handling for interacting with it.

From the Vultr documentation:

Notes about console: The console software does not support cut & paste.

If you want clipboard handling as given in the question then you will have to use a SSH program and terminal that supports it.

Ignacio Vazquez-Abrams

Posted 2017-10-25T03:54:58.483

Reputation: 100 516

As a nano user myself, I can tell you that nano does indeed have a clipboard, accessed via CTRL+K to cut out a line and CTRL+U to paste it again. – MechMK1 – 2017-10-25T09:00:23.773

4It has a cutspace, yes. But no system clipboard integration. – Ignacio Vazquez-Abrams – 2017-10-25T09:00:59.467

Your answer mentions nano "having no clipboard capability", which is not the same as "not integrating the clipboard of a window manager". – MechMK1 – 2017-10-25T09:03:51.407

@MechMK1 a "clipboard" is a system-wide concept that provides inter-application operation, nano does not support this.

– Attie – 2017-10-25T09:18:33.700

7

I successfully used right mouse button to paste from Windows 10 to nano on "Bash on Ubuntu on Windows".

NoJoshua

Posted 2017-10-25T03:54:58.483

Reputation: 71

1Yes, this worked for me as well. – SamAndrew81 – 2019-02-28T22:23:17.453

1Worked for me: Windows 10 10.0.17763 to Nano in a Linux container – JohnC – 2019-09-20T12:53:51.690

1

If there is no way to do this, what native Linux editor is capable?

I'm not sure if Nano actually can do this more or less natively without explicit support from the terminal, but you may want to use X11-enabled Vim over an X11-forwarded session (ssh -X). Then "+y command will yank ("copy") to the X11 clipboard, and "+p will put ("paste") from there — without the need for terminal to support this.

Note that X11-enabled Vim doesn't mean GUI version (gVim). Console Vim can remain in the terminal, but is still able to access X11 clipboard thanks to being linked with X11 libraries. It just has to know your (forwarded) DISPLAY.

Ruslan

Posted 2017-10-25T03:54:58.483

Reputation: 1 168

1

I recently ran into a similar problem trying to copy from windows and paste a really long "private key" via a terminal using Nano and could not get copy and paste to work. Instead of manually typing it by hand, I was able to use a text expander (I used AutoHotKey) to enter it that way.

James Orr

Posted 2017-10-25T03:54:58.483

Reputation: 11

0

The following applies when accessing Nano via a PuTTY terminal window.

If you have a ~/.nanorc file or /etc/nanorc containing set mouse, then:

  • Pasting clipboard contents into Nano requires shift+right click or shift+insert.
  • You can mark blocks of text in Nano by clicking the mouse.
  • You cannot select text with the mouse to copy it to the Clipboard (a PuTTY function), but you can mark text in Nano and copy it to the buffer with Ctrl + K, so you can paste with Ctrl + U.

If you change the ~/.nanorc setting to unset mouse, then:

  • Pasting clipboard contents into Nano requires a regular right click (or shift+insert).
  • You can mark blocks of text in Nano only with the keyboard using Alt + A followed by the arrow keys. These can be copied to the buffer with Ctrl + K.
  • You can select text with the mouse to copy it to the Clipboard (a PuTTY function).

When pasting text from the Clipboard (via PuTTY) into Nano, the pasted text may auto-indent improperly. You may have to specify unset autoindent in ~/.nanorc to resolve this.

MikeOnline

Posted 2017-10-25T03:54:58.483

Reputation: 176