From 651cacfeb3f92e6dc8180fcfdc339b5d43eb34b0 Mon Sep 17 00:00:00 2001 From: Peter Lithammer Date: Wed, 20 Jan 2021 19:20:28 +0100 Subject: bashls: Set GLOB_PATTERN to prevent recursive scanning --- lua/lspconfig/bashls.lua | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'lua/lspconfig/bashls.lua') diff --git a/lua/lspconfig/bashls.lua b/lua/lspconfig/bashls.lua index 7be7aad3..2f87d7e0 100644 --- a/lua/lspconfig/bashls.lua +++ b/lua/lspconfig/bashls.lua @@ -6,6 +6,13 @@ local server_name = "bashls" configs[server_name] = { default_config = { cmd = {"bash-language-server", "start"}; + cmd_env = { + -- Prevent recursive scanning which will cause issues when opening a file + -- directly in the home directory (e.g. ~/foo.sh). + -- + -- Default upstream pattern is "**/*@(.sh|.inc|.bash|.command)". + GLOB_PATTERN = vim.env.GLOB_PATTERN or "*@(.sh|.inc|.bash|.command)" + }, filetypes = {"sh"}; root_dir = util.path.dirname; }; -- cgit v1.2.3-70-g09d2