From 56bdd0861e229a29518571f1a4854c61ceecf69a Mon Sep 17 00:00:00 2001 From: Rinor Maloku Date: Tue, 18 Sep 2018 11:12:44 +0000 Subject: [PATCH] Alt Home hotkey for focusing the breadcrumbs(navigationbar) --- README.md | 4 +++- package.json | 7 +++++++ src/package-with-comment.json | 7 +++++++ 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ec9c94..c9a57c3 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Build Status](https://travis-ci.org/kasecato/vscode-intellij-idea-keybindings.svg?branch=master)](https://travis-ci.org/kasecato/vscode-intellij-idea-keybindings) [![License: MIT](https://img.shields.io/badge/license-MIT-orange.svg)](LICENSE.md) [![Marketplace Version](https://vsmarketplacebadge.apphb.com/version/k--kato.intellij-idea-keybindings.svg)](https://marketplace.visualstudio.com/items?itemName=k--kato.intellij-idea-keybindings) [![Install](https://vsmarketplacebadge.apphb.com/installs-short/k--kato.intellij-idea-keybindings.svg)](https://marketplace.visualstudio.com/items?itemName=k--kato.intellij-idea-keybindings) -Port of IntelliJ IDEA key bindings for VS Code. Includes keymaps for popular JetBrains products like IntelliJ Ultimate, WebStorm, PyCharm, PHP Storm, etc. +Port of IntelliJ IDEA key bindings for VS Code. Includes keymaps for popular JetBrains products like IntelliJ Ultimate, WebStorm, PyCharm, PHP Storm, etc. ## Usage @@ -258,6 +258,7 @@ alt+right | shift+cmd+] | Select next tab (Terminal) | ✅ alt+tab | alt+tab | Goto next splitter | ✅ shift+alt+tab | shift+alt+tab | Goto previous splitter | ✅ enter | enter | Open Highlighted File (Explorer) | ✅ +alt+home | alt+home | Jump to Navigation Bar | ✅ ## Installation @@ -320,6 +321,7 @@ when changes are saved. * [@thekalinga](https://github.com/thekalinga) * [@andrewda](https://github.com/andrewda) * [@deftomat](https://github.com/deftomat) +* [@rinormaloku](https://github.com/rinormaloku) ## License diff --git a/package.json b/package.json index a4d9b79..dd8a7c3 100644 --- a/package.json +++ b/package.json @@ -1004,6 +1004,13 @@ "command": "list.select", "intellij": "Open Highlighted File (Explorer)", "when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsFolder" + }, + { + "key": "alt+home", + "mac": "alt+home", + "command": "breadcrumbs.focus", + "intellij": "Jump to Navigation Bar", + "when": "editorFocus" } ] } diff --git a/src/package-with-comment.json b/src/package-with-comment.json index cfeb756..be03fdd 100644 --- a/src/package-with-comment.json +++ b/src/package-with-comment.json @@ -1615,6 +1615,13 @@ "command": "list.select", "intellij": "Open Highlighted File (Explorer)", "when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsFolder" + }, + { + "key": "alt+home", + "mac": "alt+home", + "command": "breadcrumbs.focus", + "intellij": "Jump to Navigation Bar", + "when": "editorFocus" } ] }