TypeScript configuration question #680
-
Hi, With the new abilities in Passing the preferences object into lsp.tsserver.setup {
capabilities = capabilities,
on_attach = on_attach,
init_options = {
preferences = {
includeCompletionsWithSnippetText = true,
includeCompletionsForImportStatements = true,
},
},
} I thought this would enable similar placeholder text to what the Lua LSP provides. Does anyone have any tips to get placeholder text working with typescript? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I don't know... I think you should ask to typescript-language-server repo. |
Beta Was this translation helpful? Give feedback.
-
Try: lsp.tsserver.setup {
settings = {
completions = {
completeFunctionCalls = true,
},
},
}, |
Beta Was this translation helpful? Give feedback.
Try: