央视曝光不合格床垫 龙头企业呼吁行业自律
百度 本报记者范昕即将举槌的“朵云轩2016艺术品春拍”上,一批承载着丰厚文化价值的拍品备受关注:具有收藏文化史上样本意义的千年雷峰塔藏经、以实物见证古代造纸术的晋唐以来20余种古纸样本、留有一个时代思想文化方面诸多印迹的阿英友朋书信……人们欣喜地看到,“文化价值”渐成艺术品拍卖的风向标。
Questions about interfacing with the system's clipboard.
118 questions
1
vote
1
answer
200
views
How do I change the clipboard provider at runtime?
I run most of my nvim sessions inside of tmux sessions so they persist across logins. If I log out from x11 and log into a wayland session, then I can still reconnect to my tmux and nvim sessions. ...
0
votes
0
answers
79
views
How can I use the primary clipboard in a terminal emulator under Wayland?
When running vim in a terminal emulator under X11, any text selected in visual mode would be added to the primary clipboard, as expected. In addition, manually using the * register would also work.
In ...
0
votes
1
answer
168
views
Vim visual block copy don't paste in KDE konsole
Selecting by visual line mode and copying (V and y) in vim in rxvt-unicode or in gnome-terminal and pasting in another tab of that terminal with Shift + Insert works well.
But trying to do the same ...
0
votes
2
answers
3k
views
How do I synchronize system clipboard and nvim clipboard?
I would like to synchronize the system and nvim clipboards so I don't have to do anything extra to copy and paste. I want to do (since I am on MacOS) command c to copy and command v to paste, inside ...
0
votes
1
answer
349
views
Neovim blocks Kitty select to copy and click on URL to open with mouse
Kitty has configuration like opening a URL in browser when it is clicked and copying text selected with a mouse to clipboard automatically. This works on Vim but does not work in Neovim.
How can these ...
0
votes
2
answers
181
views
How to copy text to clipboard from status bar (statusline) in Vim
Problem is present when there is the following option for mouse in ~./vimrc:
set mouse=a | " active
0
votes
1
answer
170
views
How can I copy the current filename and line number to the clipboard?
How can I copy the current file name and line number to the system clipboard, formatted like this:
relative/path/to/file:123
And how can I map this to a leader key command?
1
vote
1
answer
512
views
Copy from Visual mode to clipboard using Wayland
This works well when I'm not using Wayland on Fedora 39 KDE:
nnoremap <C-c> "+
vnoremap <C-c> "+y
But this doesn't work anymore on Wayland.
What can I do to make it work?
My vi -...
1
vote
1
answer
125
views
Choices for pasting
In my local PC I use p in Vim command mode for pasting and it works fine and the :echo has('clipboard') returns 1.
But, in the cluster I am working p in command mode, which just inserts a 0 instead of ...
1
vote
3
answers
466
views
Exclude empty lines when copying
I'm writing Python programs using Vim/NeoVim. One thing I often do is copying text to the system clipboard using "+y command. This lets me copy parts of the program to the clipboard, and run it ...
0
votes
1
answer
120
views
Change the clipboard register's name
To use Neovim with my system clipboard I have to use the + register which I find inconvenient. When I type something like "+p I have to bounce my pinky all around. Is there a way to change the ...
0
votes
1
answer
2k
views
Pasting from system clipboard adds an unwanted new line
On windows, using neovim, with clipboard=unnamedplus , when I paste from the system clipboard using p or :put , it will always paste in a newline , even if the content of the clipboard has no newline. ...
0
votes
0
answers
411
views
Copy to android system clipboard in nvim from termux
I use Neovim on termux on android 11
I commonly use :y to yank/copy text to nvim clipboard
Then paste it to another files
Recently I've tried using helix-editor(hx) looks and feels so similar to ...
1
vote
1
answer
260
views
Syncing x clipboard with yanks and put only?
I have discovered the joy of having :set clipboard^=unnamedplus.
One issue I often face however is having whatever was last copied or yanked be overwritten by what I just deleted.
I don't think ...
1
vote
2
answers
2k
views
Prevent neovim from overwriting system clipboard while cutting, copying or deleting text
As the title says, I want to disable neovim from overwriting existing content of my clipboard. I am using elementary os 7 horus and nvim v0.10.0-dev-115+g240c41e1a downloaded from github release page. ...