Skip to content

Commit

Permalink
Merge pull request #128 from rinormaloku/breadcrumbsHotkey
Browse files Browse the repository at this point in the history
Alt Home hotkey for focusing the breadcrumbs
  • Loading branch information
kasecato authored Oct 1, 2018
2 parents 8fe6a3f + 56bdd08 commit a9edaa4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}
Expand Down
7 changes: 7 additions & 0 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}
Expand Down

0 comments on commit a9edaa4

Please sign in to comment.