diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2024-07-06 11:44:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-06 11:44:19 +0200 |
commit | 55e4301036bb938474fc9768c41e28df867d9286 (patch) | |
tree | d83f3c3d1bccb1ad97197f322fe5c689c4aef8fd /runtime/lua/vim/lsp/_watchfiles.lua | |
parent | 91e5dcae3d47e7eaf25537471288c27055fdddbe (diff) | |
download | rneovim-55e4301036bb938474fc9768c41e28df867d9286.tar.gz rneovim-55e4301036bb938474fc9768c41e28df867d9286.tar.bz2 rneovim-55e4301036bb938474fc9768c41e28df867d9286.zip |
feat(lsp): drop fswatch, use inotifywait (#29374)
This patch replaces fswatch with inotifywait from inotify-toools:
https://github.com/inotify-tools/inotify-tools
fswatch takes ~1min to set up recursively for the Samba source code
directory. inotifywait needs less than a second to do the same thing.
https://github.com/emcrisostomo/fswatch/issues/321
Also it fswatch seems to be unmaintained in the meantime.
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'runtime/lua/vim/lsp/_watchfiles.lua')
-rw-r--r-- | runtime/lua/vim/lsp/_watchfiles.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/vim/lsp/_watchfiles.lua b/runtime/lua/vim/lsp/_watchfiles.lua index 49328fbe9b..98e9818bcd 100644 --- a/runtime/lua/vim/lsp/_watchfiles.lua +++ b/runtime/lua/vim/lsp/_watchfiles.lua @@ -9,8 +9,8 @@ local M = {} if vim.fn.has('win32') == 1 or vim.fn.has('mac') == 1 then M._watchfunc = watch.watch -elseif vim.fn.executable('fswatch') == 1 then - M._watchfunc = watch.fswatch +elseif vim.fn.executable('inotifywait') == 1 then + M._watchfunc = watch.inotify else M._watchfunc = watch.watchdirs end |