mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-04-14 15:19:12 +08:00
fix(clipboard): remove -quiet flag on xclip clipboard
This commit is contained in:
parent
24dba7b23e
commit
63cf3482cc
2
bundle/vim-clipboard/autoload/clipboard.vim
vendored
2
bundle/vim-clipboard/autoload/clipboard.vim
vendored
@ -25,7 +25,7 @@ function! s:set_command() abort
|
||||
let yank = 'wl-copy --foreground --type text/plain'
|
||||
let paste = 'wl-paste --no-newline'
|
||||
elseif !empty($DISPLAY) && executable('xclip')
|
||||
let yank = 'xclip -quiet -i -selection clipboard'
|
||||
let yank = 'xclip -i -selection clipboard'
|
||||
let paste = 'xclip -o -selection clipboard'
|
||||
elseif !empty($DISPLAY) && executable('xsel')
|
||||
let yank = 'xsel -i -b'
|
||||
|
Loading…
x
Reference in New Issue
Block a user