From 95a2755aa80aaf9119e172f6b2a61eeb04653eba Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Fri, 6 Mar 2020 18:32:40 +0100 Subject: Concise mode for parameter hints This works around VS Code bug where it tries to cram everything in a tiny popup, and brings experience closer to Intellij. --- editors/code/package.json | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'editors/code/package.json') diff --git a/editors/code/package.json b/editors/code/package.json index 2f442aae8..f1ed51d1b 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -205,6 +205,10 @@ "type": "boolean", "description": "Whether to show postfix snippets like `dbg`, `if`, `not`, etc." }, + "call-info.full": { + "type": "boolean", + "description": "Show function name and docs in parameter hints" + }, "notifications.workspace-loaded": { "type": "boolean", "description": "Whether to show `workspace loaded` message" -- cgit v1.2.3 From 80909f7698edd972e7bb7e3b255c9a12d78cd9a6 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Fri, 6 Mar 2020 18:38:56 +0100 Subject: Don't creat public APIs with typos --- editors/code/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editors/code/package.json') diff --git a/editors/code/package.json b/editors/code/package.json index f1ed51d1b..3a1e6cf23 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -197,7 +197,7 @@ "type": "boolean", "description": "Whether to add parenthesis when completing functions" }, - "completion.insertion.add-argument-sippets": { + "completion.insertion.add-argument-snippets": { "type": "boolean", "description": "Whether to add argument snippets when completing functions" }, -- cgit v1.2.3