From 131c0c0f4b4d40b1439cf6d82595e41e42229e52 Mon Sep 17 00:00:00 2001 From: Adam Outler Date: Sun, 19 Oct 2025 14:28:09 +0000 Subject: [PATCH] Fix fish terminal. Smarter code completion and other nicities. --- .vscode/settings.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 0aa6c7cb..04ac62b3 100755 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,10 +11,13 @@ // Let the Python extension invoke pytest via the interpreter; avoid hardcoded paths // Removed python.testing.pytestPath and legacy pytest.command overrides - "terminal.integrated.defaultProfile.linux": null, + "terminal.integrated.defaultProfile.linux": "fish", "terminal.integrated.profiles.linux": { - "ash": { - "path": "/bin/fish" + "fish": { + "path": "/usr/bin/fish" } } + , + // Fallback for older VS Code versions or schema validators that don't accept custom profiles + "terminal.integrated.shell.linux": "/usr/bin/fish" } \ No newline at end of file