diff options
author | Abouzar Parvan <[email protected]> | 2021-12-23 13:03:20 +0330 |
---|---|---|
committer | GitHub <[email protected]> | 2021-12-23 10:33:20 +0100 |
commit | 655fd1b0ca5405ce67f3f8083ef6a4f7d2dedea0 (patch) | |
tree | 9342adbd10f36a9ad4dc266598078051ed45e8c9 /utils/installer/install.sh | |
parent | 55934998286357e5cba13848720c25494051510f (diff) |
refactor: uplift neovim's minimum version requirement to 0.6.0 (#2093)
Co-authored-by: kylo252 <[email protected]>
Diffstat (limited to 'utils/installer/install.sh')
-rwxr-xr-x | utils/installer/install.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/utils/installer/install.sh b/utils/installer/install.sh index 1dc77513..fbe920cf 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -171,12 +171,11 @@ function print_missing_dep_msg() { } function check_neovim_min_version() { - # TODO: consider locking the requirement to 0.6+ - local verify_version_cmd='if !has("nvim-0.5.1") | cquit | else | quit | endif' + local verify_version_cmd='if !has("nvim-0.6.0") | cquit | else | quit | endif' # exit with an error if min_version not found if ! nvim --headless -u NONE -c "$verify_version_cmd"; then - echo "[ERROR]: LunarVim requires at least Neovim v0.5.1 or higher" + echo "[ERROR]: LunarVim requires at least Neovim v0.6.0 or higher" exit 1 fi } |