From c446527056e92a57b51e2f79be47c28ba8ed43e4 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sat, 15 Oct 2022 13:49:13 +1100 Subject: [PATCH] chore(#1649): remove workaround for https://github.com/neovim/neovim/issues/17395 which was fixed in nvim 0.7.0 (#1650) --- lua/nvim-tree/view.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/lua/nvim-tree/view.lua b/lua/nvim-tree/view.lua index 947c686b..05a3e7a5 100644 --- a/lua/nvim-tree/view.lua +++ b/lua/nvim-tree/view.lua @@ -328,8 +328,6 @@ end function M.set_cursor(opts) if M.is_visible() then pcall(a.nvim_win_set_cursor, M.get_winnr(), opts) - -- patch until https://github.com/neovim/neovim/issues/17395 is fixed - require("nvim-tree.renderer").draw() end end