Add ctrl+n and ctrl+p for navigating files in quike open list

This commit is contained in:
2017-06-29 15:05:20 +08:00
parent f17c7570ad
commit b8587c9380
2 changed files with 12 additions and 6 deletions
+1 -5
View File
@@ -16,9 +16,5 @@
## Screenshot
![Screenshot of open recent files](https://github.com/wahyd4/vscode-plugin-recent-files/raw/master/demo.gif)
## Known Issues
--
-------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------
+11 -1
View File
@@ -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"
}
]
},