Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2021-02-22 14:30:17 +0300
committerGitHub <noreply@github.com>2021-02-22 14:30:17 +0300
commitcecf319747ceffa56e6c2f47cf7ba687a56d5734 (patch)
treef305179ab9b8ab7cf51fa29a5af9541def5d2030 /.devcontainer
parent1eca8d21eecedd9df6f2a068f7cbb260d89c9616 (diff)
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 <lukas@statuscode.ch>
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/devcontainer.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index a820364d73d..f86a8cf3430 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,
+ }
+}