From b2115ceb57c2b084c75d433889e872648682b628 Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Fri, 13 Mar 2026 23:52:37 -0400 Subject: [PATCH] Add editor.gotoLocation settings for improved navigation --- .vscode/settings.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index f52d0a4..5d4e9c0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -24,5 +24,10 @@ "&": true }, "python-envs.defaultEnvManager": "ms-python.python:venv", - "python-envs.pythonProjects": [] + "python-envs.pythonProjects": [], + "editor.gotoLocation.multipleDeclarations": "gotoAndPeek", + "editor.gotoLocation.multipleDefinitions": "gotoAndPeek", + "editor.gotoLocation.multipleImplementations": "gotoAndPeek", + "editor.gotoLocation.multipleReferences": "gotoAndPeek", + "editor.gotoLocation.multipleTypeDefinitions": "gotoAndPeek" } \ No newline at end of file