Copy to system clipboard
See original GitHub issueI know that browsers prohibit the use of custom keybindings to copy to and paste from the system clipboard. We are therefore limited to use the browser keybindings, which usually are CTRL-C
and CTRL-V
by default.
My problem now is that I cannot manage to copy to the system clipboard with CTRL-C
. With the jupyter-vim-binding I was able to do it by selecting text in visual mode (or with the mouse) then pressing CTRL-C
. That doesn’t work with this extension. Though pasting works by pressing CTRL-V
in insert mode.
Any idea? In case I missed something, how are we supposed to copy to the system clipboard?
PS: thanks for this great extension! 👍 It was the feature that prevented me to switch from the notebook to the lab.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:9 (3 by maintainers)
Top Results From Across the Web
How can I copy text to the system clipboard from Vim?
Paste system clipboard with Ctrl v : a) inoremap <C-v> <ESC>"+gPi - insert mode: paste after cursor, put cursor to end of paste,...
Read more >Vim: How to Copy to Your System Clipboard - Howchoo
This guide will show you how to copy to your system clipboard using the Vim editor.
Read more >How to Use the Clipboard in Windows 10 - Lifewire
Copy to clipboard: Highlight the text or image and press Ctrl+C or right-click the text or image and select Copy in the pop-up...
Read more >Copy and paste text to and from system clipboard - MathWorks
Select the lines below, right-click, and then select Copy. Import the clipboard data into MATLAB using the clipboard function. The Import Wizard opens....
Read more >Copy selection into system clipboard : r/vim - Reddit
When you select some text in vim and do "+y then you put it in CLIPBOARD and can paste it elsewhere using Ctrl...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@mdeff @joelostblom Perhaps what I can do in the meantime is only bind
ctrl-c
for mac users since they havecmd-c
for copy.I just discovered that
Shift + Right click
works for bringing up the standard browser right click menu within jupyter-lab with a copy text option, so there is at least a way to copy for now.