mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix(typescript): bring back function call completion snippets
This commit is contained in:
parent
629bdd64ec
commit
d10320d4ad
1 changed files with 6 additions and 1 deletions
|
|
@ -17,7 +17,6 @@ return {
|
||||||
-- make sure mason installs the server
|
-- make sure mason installs the server
|
||||||
servers = {
|
servers = {
|
||||||
---@type lspconfig.options.tsserver
|
---@type lspconfig.options.tsserver
|
||||||
---@diagnostic disable-next-line: missing-fields
|
|
||||||
tsserver = {
|
tsserver = {
|
||||||
keys = {
|
keys = {
|
||||||
{
|
{
|
||||||
|
|
@ -47,6 +46,12 @@ return {
|
||||||
desc = "Remove Unused Imports",
|
desc = "Remove Unused Imports",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
---@diagnostic disable-next-line: missing-fields
|
||||||
|
settings = {
|
||||||
|
completions = {
|
||||||
|
completeFunctionCalls = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue