aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/elmls.lua
diff options
context:
space:
mode:
authorHirokazu Hata <h.hata.ai.t@gmail.com>2020-03-26 00:12:12 +0900
committerGitHub <noreply@github.com>2020-03-26 00:12:12 +0900
commit68873604e1cbadf784e864c4ff08ff1735ca9be2 (patch)
treecdc6e0d71fe83ca80e33e1b2a7875785a9082075 /lua/nvim_lsp/elmls.lua
parentMerge pull request #179 from h-michael/invalid-root-dir (diff)
parentutil: add behavior options to tbl_deep_extend function (diff)
downloadnvim-lspconfig-68873604e1cbadf784e864c4ff08ff1735ca9be2.tar
nvim-lspconfig-68873604e1cbadf784e864c4ff08ff1735ca9be2.tar.gz
nvim-lspconfig-68873604e1cbadf784e864c4ff08ff1735ca9be2.tar.bz2
nvim-lspconfig-68873604e1cbadf784e864c4ff08ff1735ca9be2.tar.lz
nvim-lspconfig-68873604e1cbadf784e864c4ff08ff1735ca9be2.tar.xz
nvim-lspconfig-68873604e1cbadf784e864c4ff08ff1735ca9be2.tar.zst
nvim-lspconfig-68873604e1cbadf784e864c4ff08ff1735ca9be2.zip
Merge pull request #178 from h-michael/deep-extend
util: add behavior options to tbl_deep_extend function
Diffstat (limited to 'lua/nvim_lsp/elmls.lua')
-rw-r--r--lua/nvim_lsp/elmls.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim_lsp/elmls.lua b/lua/nvim_lsp/elmls.lua
index 827614f5..4f95cebf 100644
--- a/lua/nvim_lsp/elmls.lua
+++ b/lua/nvim_lsp/elmls.lua
@@ -43,7 +43,7 @@ configs[server_name] = {
else
new_config.cmd = {install_info.binaries[bin_name]}
end
- util.tbl_deep_extend(new_config.init_options, {
+ new_config.init_options = util.tbl_deep_extend('force', new_config.init_options, {
elmPath = install_info.binaries["elm"];
elmFormatPath = install_info.binaries["elm-format"];
elmTestPath = install_info.binaries["elm-test"];