diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-04-10 14:37:25 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-10 22:37:25 +0200 |
commit | cde4892b49556d21a16839d9553bcd829c525154 (patch) | |
tree | 5244be88c73a2cf54f1a499e4f0a7b9878ca0cfd | |
parent | 0451391ec514eb83c7e366b80fcab21de9f8d4ed (diff) | |
download | rneovim-cde4892b49556d21a16839d9553bcd829c525154.tar.gz rneovim-cde4892b49556d21a16839d9553bcd829c525154.tar.bz2 rneovim-cde4892b49556d21a16839d9553bcd829c525154.zip |
fix(health): fix typo in function name
-rw-r--r-- | runtime/lua/provider/health.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/provider/health.lua b/runtime/lua/provider/health.lua index 3f9a84a57c..1806fb92ac 100644 --- a/runtime/lua/provider/health.lua +++ b/runtime/lua/provider/health.lua @@ -596,7 +596,7 @@ local function virtualenv() local venv_bins = vim.fn.glob(os.getenv('VIRTUAL_ENV') .. bin_dir .. '/python*', true, true) -- XXX: Remove irrelevant executables found in bin/. venv_bins = vim.fn.filter(venv_bins, 'v:val !~# "python-config"') - if vim.tbl_coun(venv_bins) > 0 then + if vim.tbl_count(venv_bins) > 0 then for _, venv_bin in pairs(venv_bins) do venv_bin = vim.fs.normalize(venv_bin) local py_bin_basename = vim.fs.basename(venv_bin) |