diff options
author | kylo252 <[email protected]> | 2022-04-29 16:26:15 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-29 16:26:15 +0200 |
commit | e4287b7180ad16174fa10b73ac5b3e43e605198e (patch) | |
tree | fd825e3c70178a2df4e10f566a4192f3b4b20c10 /lua/lvim/lsp/templates.lua | |
parent | 716bf5fe158ec482775fdd795f6042148fd74ad1 (diff) |
fix(lsp): undo stdpath overload to avoid datarace (#2540)
Diffstat (limited to 'lua/lvim/lsp/templates.lua')
-rw-r--r-- | lua/lvim/lsp/templates.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/lsp/templates.lua b/lua/lvim/lsp/templates.lua index 38e68fb6..09f82430 100644 --- a/lua/lvim/lsp/templates.lua +++ b/lua/lvim/lsp/templates.lua @@ -46,7 +46,7 @@ end ---Generates ftplugin files based on a list of server_names ---The files are generated to a runtimepath: "$LUNARVIM_RUNTIME_DIR/site/after/ftplugin/template.lua" ----@param servers_names table list of servers to be enabled. Will add all by default +---@param servers_names? table list of servers to be enabled. Will add all by default function M.generate_templates(servers_names) servers_names = servers_names or {} |