From 4a54f217df3dfe7547c2f92eef3f15389aba1d04 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 24 Apr 2021 21:30:03 +0530 Subject: [PATCH] Replace Syntastic --- setup/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/__init__.py b/setup/__init__.py index d92f2bcbeb..52a1ff5788 100644 --- a/setup/__init__.py +++ b/setup/__init__.py @@ -135,7 +135,7 @@ def get_warnings(): def edit_file(path): return subprocess.Popen([ - 'vim', '-c', 'SyntasticCheck', '-c', 'll', '-S', os.path.join(SRC, '../session.vim'), '-f', path + 'vim', '-c', 'ALELint', '-c', 'ALEFirst', '-S', os.path.join(SRC, '../session.vim'), '-f', path ]).wait() == 0