mirror of
https://github.com/neovim/neovim.git
synced 2025-12-16 03:15:39 +00:00
docs: adjust fswatch overflow message to mention docs with info
- Add :h fswatch-limitations that notifies user about default inotify limitations on linux and how to adjust them - Check for Event queue overflow message from fswatch and refer user to new documentation Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
committed by
Lewis Russell
parent
cdbc3e3f3e
commit
0f20b7d803
@@ -530,6 +530,16 @@ Example: File-change detection *watch-file*
|
|||||||
vim.api.nvim_command(
|
vim.api.nvim_command(
|
||||||
"command! -nargs=1 Watch call luaeval('watch_file(_A)', expand('<args>'))")
|
"command! -nargs=1 Watch call luaeval('watch_file(_A)', expand('<args>'))")
|
||||||
<
|
<
|
||||||
|
*fswatch-limitations*
|
||||||
|
When on Linux and using fswatch, you may need to increase the maximum number
|
||||||
|
of `inotify` watches and queued events as the default limit can be too low. To
|
||||||
|
increase the limit, run: >sh
|
||||||
|
sysctl fs.inotify.max_user_watches=100000
|
||||||
|
sysctl fs.inotify.max_queued_events=100000
|
||||||
|
<
|
||||||
|
This will increase the limit to 100000 watches and queued events. These lines
|
||||||
|
can be added to `/etc/sysctl.conf` to make the changes persistent.
|
||||||
|
|
||||||
Example: TCP echo-server *tcp-server*
|
Example: TCP echo-server *tcp-server*
|
||||||
1. Save this code to a file.
|
1. Save this code to a file.
|
||||||
2. Execute it with ":luafile %".
|
2. Execute it with ":luafile %".
|
||||||
|
|||||||
@@ -289,6 +289,9 @@ function M.fswatch(path, opts, callback)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if data and #vim.trim(data) > 0 then
|
if data and #vim.trim(data) > 0 then
|
||||||
|
if vim.fn.has('linux') == 1 and vim.startswith(data, 'Event queue overflow') then
|
||||||
|
data = 'inotify(7) limit reached, see :h fswatch-limitations for more info.'
|
||||||
|
end
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
vim.notify('fswatch: ' .. data, vim.log.levels.ERROR)
|
vim.notify('fswatch: ' .. data, vim.log.levels.ERROR)
|
||||||
end)
|
end)
|
||||||
|
|||||||
Reference in New Issue
Block a user