From 9fef9403b30d5461dcecd09ff9161c3c38c8a0a2 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Sun, 1 Oct 2023 23:42:44 +0100 Subject: [PATCH] Fix pynvim on macOS by installing dependency --- roles/neovim/tasks/Darwin.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/roles/neovim/tasks/Darwin.yaml b/roles/neovim/tasks/Darwin.yaml index 07fc9db..0c0d161 100644 --- a/roles/neovim/tasks/Darwin.yaml +++ b/roles/neovim/tasks/Darwin.yaml @@ -6,6 +6,12 @@ state: latest - set_fact: - neovim_pip_packages: '{{neovim_pip_packages + ["pynvim"]}}' + neovim_pip_packages: > + {{ + neovim_pip_packages + [ + "pynvim", + "greenlet" + ] + }} - include_tasks: Unix.yaml