diff options
Diffstat (limited to 'runtime/lua/vim/provider/clipboard/health.lua')
-rw-r--r-- | runtime/lua/vim/provider/clipboard/health.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/provider/clipboard/health.lua b/runtime/lua/vim/provider/clipboard/health.lua index e44f7d32cc..0af6a44330 100644 --- a/runtime/lua/vim/provider/clipboard/health.lua +++ b/runtime/lua/vim/provider/clipboard/health.lua @@ -9,7 +9,7 @@ function M.check() os.getenv('TMUX') and vim.fn.executable('tmux') == 1 and vim.fn.executable('pbpaste') == 1 - and not health.cmd_ok('pbpaste') + and not health._cmd_ok('pbpaste') then local tmux_version = string.match(vim.fn.system('tmux -V'), '%d+%.%d+') local advice = { |