From d490eb91316df88d3a4a61a7a800e73c2091c7eb Mon Sep 17 00:00:00 2001 From: Arity-T Date: Sun, 10 Aug 2025 16:16:09 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D1=85=D0=BE=D0=B4=20?= =?UTF-8?q?=D0=BA=20=D0=BE=D0=BF=D1=80=D0=B5=D0=B4=D0=B5=D0=BB=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D1=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/VS-Code/hotkeys.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/VS-Code/hotkeys.md b/docs/VS-Code/hotkeys.md index ac7eeb7..95e5a24 100644 --- a/docs/VS-Code/hotkeys.md +++ b/docs/VS-Code/hotkeys.md @@ -36,6 +36,10 @@ - `a` - создать файл. - `shift + a` - создать папку. +Быстрый переход к определению функции, метода, etc. В дополнение к F12. Удобно использовать вместе с `alt + ←/→`. + +- `alt + d` - перейти к определению. + ```json [ { @@ -47,6 +51,11 @@ "key": "shift+a", "command": "explorer.newFolder", "when": "filesExplorerFocus && !inputFocus" + }, + { + "key": "alt+d", + "command": "editor.action.revealDefinition", + "when": "editorHasDefinitionProvider && editorTextFocus" } ] ``` \ No newline at end of file