From 65c4a195530f39ba3ff438662d888d82993bb89e Mon Sep 17 00:00:00 2001 From: Martin Hardselius Date: Thu, 15 Dec 2022 09:20:34 +0100 Subject: [PATCH] Remove early bailout check This kind of bailout does not work with vim9 without `vim9script noclear`. See `:h vim9-reload`. Fixes: #122 --- plugin/lsp.vim | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugin/lsp.vim b/plugin/lsp.vim index 28cdccb..c983f56 100644 --- a/plugin/lsp.vim +++ b/plugin/lsp.vim @@ -7,9 +7,6 @@ vim9script # Language Server Protocol (LSP) plugin for vim -if exists('g:loaded_lsp') - finish -endif g:loaded_lsp = 1 import autoload '../autoload/lsp/options.vim' -- 2.48.1