diff --git a/README.md b/README.md index d25380d..35ef1c6 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ autosave.nvim is a Neovim and Vim plugin that provides automatic saving function # Installation -This plugin requires Vim >= 8.2 with `+lua` or Neovim >= 0.9 +This plugin requires Vim >= 8.2.3288 with `+lua` or Neovim >= 0.9
Using lazy.nvim (recommended) 💤 diff --git a/plugin/autosave.vim b/plugin/autosave.vim index a97b13e..250f70a 100644 --- a/plugin/autosave.vim +++ b/plugin/autosave.vim @@ -1,6 +1,6 @@ let compatible = v:false let min_nvim = '0.9' -let min_vim = '8.2.0' +let min_vim = '8.2.3288' if has('nvim-' .. min_nvim) let compatible = v:true endif