From 00eff22bf59a8a4b51a0996c844d7a7db84dab08 Mon Sep 17 00:00:00 2001 From: Arity-T Date: Mon, 28 Jul 2025 12:52:28 +0300 Subject: [PATCH] =?UTF-8?q?VS=20Code=20=D0=A1=D0=BE=D1=87=D0=B5=D1=82?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D1=8F=20=D0=BA=D0=BB=D0=B0=D0=B2=D0=B8=D1=88?= =?UTF-8?q?=20=D0=B4=D0=BB=D1=8F=20=D1=81=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F=20=D0=B8=20=D1=83=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F=20=D0=BF=D0=B0=D0=BF=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/VS-Code/hotkeys.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/docs/VS-Code/hotkeys.md b/docs/VS-Code/hotkeys.md index d5a9356..ac7eeb7 100644 --- a/docs/VS-Code/hotkeys.md +++ b/docs/VS-Code/hotkeys.md @@ -25,4 +25,28 @@ `ctrl + j` - скрыть/показать нижнюю панель (терминал, логи и т.д.). - `alt + shift + r` - показать файл, выбранный в левой панели с файлами, в проводнике. \ No newline at end of file + `alt + shift + r` - показать файл, выбранный в левой панели с файлами, в проводнике. + + `ctrl + shift + .` - breadcrumbs + +## Кастомные сочетания клавиш + +Сочетания клавиш для быстрого создания папок и файлов через проводник внутри VS Code. + +- `a` - создать файл. +- `shift + a` - создать папку. + +```json +[ + { + "key": "a", + "command": "explorer.newFile", + "when": "filesExplorerFocus && !inputFocus" + }, + { + "key": "shift+a", + "command": "explorer.newFolder", + "when": "filesExplorerFocus && !inputFocus" + } +] +``` \ No newline at end of file