aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorDDoSolitary <DDoSolitary@gmail.com>2020-09-01 15:27:38 +0800
committerGitHub <noreply@github.com>2020-09-01 00:27:38 -0700
commitc14a9f6fcc0e74294e98913699c8a4a79f1f7321 (patch)
treeedb77c13b2ae39935efb63d3fad7bcd953f6eb8f /runtime/doc
parenta50cf35bdac7fe8bccd8ade3ce358daa8e00fc98 (diff)
downloadrneovim-c14a9f6fcc0e74294e98913699c8a4a79f1f7321.tar.gz
rneovim-c14a9f6fcc0e74294e98913699c8a4a79f1f7321.tar.bz2
rneovim-c14a9f6fcc0e74294e98913699c8a4a79f1f7321.zip
g:clipboard: allow command given as a list #12775
fixes #12768
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/provider.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/provider.txt b/runtime/doc/provider.txt
index 0a6cdc60e8..a92f3ed712 100644
--- a/runtime/doc/provider.txt
+++ b/runtime/doc/provider.txt
@@ -212,12 +212,12 @@ For example this configuration integrates the tmux clipboard: >
let g:clipboard = {
\ 'name': 'myClipboard',
\ 'copy': {
- \ '+': 'tmux load-buffer -',
- \ '*': 'tmux load-buffer -',
+ \ '+': ['tmux', 'load-buffer', '-'],
+ \ '*': ['tmux', 'load-buffer', '-'],
\ },
\ 'paste': {
- \ '+': 'tmux save-buffer -',
- \ '*': 'tmux save-buffer -',
+ \ '+': ['tmux', 'save-buffer', '-'],
+ \ '*': ['tmux', 'save-buffer', '-'],
\ },
\ 'cache_enabled': 1,
\ }