diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2021-02-22 11:30:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-22 11:30:17 +0000 |
commit | cecf319747ceffa56e6c2f47cf7ba687a56d5734 (patch) | |
tree | f305179ab9b8ab7cf51fa29a5af9541def5d2030 /.devcontainer | |
parent | 1eca8d21eecedd9df6f2a068f7cbb260d89c9616 (diff) | |
download | nextcloud-server-cecf319747ceffa56e6c2f47cf7ba687a56d5734.tar.gz nextcloud-server-cecf319747ceffa56e6c2f47cf7ba687a56d5734.zip |
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.json | 5 |
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, + } +} |