diff options
author | Tomas Slusny <slusnucky@gmail.com> | 2024-03-11 02:02:52 +0100 |
---|---|---|
committer | Lewis Russell <me@lewisr.dev> | 2024-03-11 14:05:26 +0000 |
commit | 0f20b7d803779950492c2838e2b042a38f4ee22f (patch) | |
tree | 395868baaaa017a4eb9adf6d4944bc1be70f5646 /runtime/lua/vim | |
parent | cdbc3e3f3e95a1df9de180ee4ac52d460e5c6905 (diff) | |
download | rneovim-0f20b7d803779950492c2838e2b042a38f4ee22f.tar.gz rneovim-0f20b7d803779950492c2838e2b042a38f4ee22f.tar.bz2 rneovim-0f20b7d803779950492c2838e2b042a38f4ee22f.zip |
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>
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/_watch.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/lua/vim/_watch.lua b/runtime/lua/vim/_watch.lua index cf2689861a..542e770246 100644 --- a/runtime/lua/vim/_watch.lua +++ b/runtime/lua/vim/_watch.lua @@ -289,6 +289,9 @@ function M.fswatch(path, opts, callback) end 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.notify('fswatch: ' .. data, vim.log.levels.ERROR) end) |