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
Diagnostics issues may not be suppressed. See [luals](https://luals.github.io) documentation for details on how to structure the code and comments.
102
+
103
+
Suppressions are permitted only in the following cases:
104
+
105
+
- Backwards compatibility shims
106
+
- neovim API metadata incorrect, awaiting upstream fix
107
+
- classic class framework
108
+
109
+
# Backwards Compatibility
110
+
111
+
Whenever new neovim API is introduced, please ensure that it is available in older versions. See `:help deprecated.txt` and `$VIMRUNTIME/lua/vim/_meta/api.lua`
112
+
113
+
See `nvim-tree.setup` for the oldest supported version of neovim. If the API is not availble in that version, a backwards compatibility shim must be used e.g.
0 commit comments