I had a strange problem this morning where whenever i tried to quit my neovim instance, it would indefinitely hang and I would need to exit my terminal window. I used strace -r nvim
to discover that my nvim was hanging because it was trying to chdir to a directory on an unmounted filesystem. Strangely, this happened even when I ran nvim -u NORC
. However, with nvim --clean
I had no issues.
Any ideas what would be causing this to happen and how I could avoid it?