From cecf319747ceffa56e6c2f47cf7ba687a56d5734 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 22 Feb 2021 11:30:17 +0000 Subject: [PATCH] Disable basic PHP completion in Codespace This competes with the completions provided by https://github.com/felixfbecker/vscode-php-intellisense. Thus disabling the completions is recommended. Signed-off-by: Lukas Reschke --- .devcontainer/devcontainer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index a820364d73..f86a8cf343 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -16,4 +16,7 @@ "felixfbecker.php-intellisense", "ms-azuretools.vscode-docker" ], -} \ No newline at end of file + "settings": { + "php.suggest.basic": false, + } +}