Fix fish terminal. Smarter code completion and other nicities.

This commit is contained in:
Adam Outler
2025-10-19 14:28:09 +00:00
parent a58b3e35b9
commit 131c0c0f4b

View File

@@ -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"
}