diff options
Diffstat (limited to 'runtime/doc/nvim_clipboard.txt')
-rw-r--r-- | runtime/doc/nvim_clipboard.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/nvim_clipboard.txt b/runtime/doc/nvim_clipboard.txt index ab7a8c3423..3dd5fb5fcb 100644 --- a/runtime/doc/nvim_clipboard.txt +++ b/runtime/doc/nvim_clipboard.txt @@ -36,9 +36,9 @@ by Nvim): This should enable the '+' and '*' registers. As an optional step, set the 'unnamedclip' option to transparently access clipboard using the unnamed register. If you use the same |vimrc| for both Vim and Nvim, make sure you -only set the option when `has('neovim')` is true: +only set the option when `has('nvim')` is true: > - if has('neovim') + if has('nvim') set unnamedclip endif < |