1
0
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:
wsdjeg 2023-03-28 18:13:53 +08:00 committed by GitHub
parent 24dba7b23e
commit 63cf3482cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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'