otavioschwanck / arrow.nvim

Bookmark your files, separated by project, and quickly navigate through them.
Other
341 stars 16 forks source link

fix: cursor disappearance #48 #49

Closed rasulomaroff closed 3 months ago

rasulomaroff commented 3 months ago

Only removes guicursor option on the next event loop cycle.

I had to move closeMenu call out of vim.schedule so that it worked. Could you please clarify that it doesn't break anything or any reason why it was inside vim.schedule? Seems to work perfectly on my machine.

rasulomaroff commented 3 months ago

Suddenly pushed the additional commit into this branch that fixes #50 Please let me know if it's better to split them into 2 different PR's

Since buffer_leader_key is not set by default after c6bbbb5d0be7ce65cdfcdf923119e5013691c474, we need to check if it exists prior to setting a keymap.

otavioschwanck commented 3 months ago

Thanks!