Browse Source
fix(modules/info): do not treat Neovim 0.6 as a prerelease
my-config
NTBBloodbath
3 years ago
No known key found for this signature in database
GPG Key ID: 18D6730BC846AAC5
1 changed files with
1 additions and
1 deletions
-
lua/doom/modules/built-in/info/init.lua
|
@ -127,7 +127,7 @@ local function get_doom_info() |
|
|
local nvim_dev_version = false |
|
|
local nvim_dev_version = false |
|
|
-- Neovim version |
|
|
-- Neovim version |
|
|
local version = vim.version() |
|
|
local version = vim.version() |
|
|
if version.minor == 6 then |
|
|
if version.minor == 7 then |
|
|
nvim_dev_version = true |
|
|
nvim_dev_version = true |
|
|
end |
|
|
end |
|
|
local nvim_version = string.format( |
|
|
local nvim_version = string.format( |
|
|