mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-12 17:55:41 +08:00
fix(clipboard): remove --nodetach option
This commit is contained in:
parent
4d02ee3f49
commit
3bea6df3a7
2
bundle/vim-clipboard/autoload/clipboard.vim
vendored
2
bundle/vim-clipboard/autoload/clipboard.vim
vendored
@ -28,7 +28,7 @@ function! s:set_command() abort
|
||||
let yank = 'xclip -quiet -i -selection clipboard'
|
||||
let paste = 'xclip -o -selection clipboard'
|
||||
elseif !empty($DISPLAY) && executable('xsel')
|
||||
let yank = 'xsel --nodetach -i -b'
|
||||
let yank = 'xsel -i -b'
|
||||
let paste = 'xsel -o -b'
|
||||
elseif executable('lemonade')
|
||||
let yank = 'lemonade copy'
|
||||
|
Loading…
x
Reference in New Issue
Block a user