From b8587c9380d8bd6f951079b0df84eae7c6643a09 Mon Sep 17 00:00:00 2001 From: Junv Zhao Date: Thu, 29 Jun 2017 15:05:20 +0800 Subject: [PATCH] Add ctrl+n and ctrl+p for navigating files in quike open list --- README.md | 6 +----- package.json | 12 +++++++++++- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a9b6e0b..575742a 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,5 @@ ## Screenshot ![Screenshot of open recent files](https://github.com/wahyd4/vscode-plugin-recent-files/raw/master/demo.gif) -## Known Issues - -- - - -------------------------------------------------------------------------------------- \ No newline at end of file +------------------------------------------------------------------------------------- diff --git a/package.json b/package.json index ff90331..930e547 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "recent-files", "displayName": "Open Recent Files", "description": "Open recent files like you do in Intellij idea.", - "version": "1.1.1", + "version": "1.1.5", "icon": "logo.png", "publisher": "junv", "engines": { @@ -38,6 +38,16 @@ "command": "extension.openRecentFiles", "key": "ctrl+e", "mac": "cmd+e" + }, + { + "key": "ctrl+n", + "command": "workbench.action.quickOpenSelectNext", + "when": "!editorFocus" + }, + { + "key": "ctrl+p", + "command": "workbench.action.quickOpenSelectPrevious", + "when": "!editorFocus" } ] },