From 579ee8812583e01199ce101178f794365908ee19 Mon Sep 17 00:00:00 2001 From: Shun Li Date: Thu, 22 Feb 2024 18:01:04 +0800 Subject: [PATCH] u --- init.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.vim b/init.vim index f6644e4a..168114b4 100644 --- a/init.vim +++ b/init.vim @@ -298,14 +298,14 @@ endif " === " === check the ai " === -if (g:os_name == 'Linux' && g:os_architect == 'x86_64') || (g:os_name == 'Windows') +if (g:os_name == 'Linux') || (g:os_name == 'Windows') " check the codeium if g:osv_ai == 'codeium' && !has('nvim-0.6') && !has('patch-9.0.0185') call osv_ultis#msg#warn("codeium preview needs vim >=9.0.0185 or nvim >= 0.6! Skip!") let g:osv_ai = 'none' endif else - call osv_ultis#msg#warn("Only Linux_x86_64, Windows support ai! Skip!") + call osv_ultis#msg#warn("Only Linux, Windows support ai! Skip!") let g:osv_ai = 'none' endif