From 89a278d0bcaa435e1038288e49658dd7f0ca5c67 Mon Sep 17 00:00:00 2001 From: Arity-T Date: Mon, 18 Aug 2025 21:08:34 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BF=D0=B5=D1=80=D0=B5=D0=B9=D1=82=D0=B8=20?= =?UTF-8?q?=D0=BA=20=D1=80=D0=B5=D0=B0=D0=BB=D0=B8=D0=B7=D0=B0=D1=86=D0=B8?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/VS-Code/hotkeys.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/VS-Code/hotkeys.md b/docs/VS-Code/hotkeys.md index ae5116c..b61e95c 100644 --- a/docs/VS-Code/hotkeys.md +++ b/docs/VS-Code/hotkeys.md @@ -40,6 +40,7 @@ - `alt + d` - перейти к определению. - `alt + t` - перейти к определению типа. +- `alt + i` - перейти к реализации (актуально для Java). Обычно я отключаю `explorer.autoReveal` в настройках, чтобы боковая панель с проводником не изменялась, когда я переключаюсь по файлам. Если мне всё-таки требуется выделить открытый файл в `Explorer View`, то я использую дополнительное сочетание клавиш. @@ -65,7 +66,12 @@ { "key": "alt+t", "command": "editor.action.goToTypeDefinition", - "when": "editorTextFocus" + "when": "editorHasTypeDefinitionProvider && editorTextFocus" + }, + { + "key": "alt+i", + "command": "editor.action.goToImplementation", + "when": "editorHasImplementationProvider && editorTextFocus" }, { "key": "shift+alt+r",