You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wrap notify::Watcher to handle vim's write-via-rename (#1054)
The language server can request a watch on a file that is currently open
in vim. If it does so, LanguageClient-neovim adds a file system watcher
on that file. Doing this directly via `notify::Watcher` as it did
before, however, goes wrong on systems where a file watch is really an
inode watch, and vim writes to files by writing to a temporary file and
then renaming over the original file. These systems include Linux and
macOS.
0 commit comments