Update clipboard.R

This commit is contained in:
MS Berends 2018-03-29 14:16:42 +02:00 committed by GitHub
parent 9f943708cc
commit 136272cb71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ clipboard_export <- function(x,
} else {
# use xclip package
check_xclip()
file <- pipe("xclip -i -selection primary", "w")
file <- pipe("xclip -i", "w")
on.exit(close(file))
}