diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2023-08-26 01:53:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-26 02:53:44 +0200 |
commit | 37292e74e1a986946ee73edaf81b05bc47b3a201 (patch) | |
tree | bd2c54cee393a7622965f983266c69dbab0ba8cf /ext/node/polyfills/internal/crypto/cipher.ts | |
parent | 6f077ebb07740446dba26ef2b3f9fb35fa0d9d1d (diff) |
fix(lsp): implement deno.suggest.completeFunctionCalls (#20214)
Fixes https://github.com/denoland/vscode_deno/issues/743.
```ts
const items: string[] = ['foo', 'bar', 'baz'];
items.map
// ->
items.map(callbackfn) // auto-completes with argument placeholders.
```
---
We have our own setting for `suggest.completeFunctionCalls`, which must
be enabled:
```js
{
"deno.suggest.completeFunctionCalls": true,
// Re-implementation of:
// "javascript.suggest.completeFunctionCalls": true,
// "typescript.suggest.completeFunctionCalls": true,
}
```
But before this commit the actual implementation had been left as a TODO.
Diffstat (limited to 'ext/node/polyfills/internal/crypto/cipher.ts')
0 files changed, 0 insertions, 0 deletions