mirror of
https://github.com/wahyd4/vscode-plugin-recent-files.git
synced 2026-08-09 04:36:04 +10:00
69 lines
1.7 KiB
JSON
69 lines
1.7 KiB
JSON
{
|
|
"name": "recent-files",
|
|
"displayName": "Open Recent Files",
|
|
"description": "Open recent files like you do in Intellij idea.",
|
|
"version": "1.1.7",
|
|
"icon": "logo.png",
|
|
"publisher": "junv",
|
|
"engines": {
|
|
"vscode": "^1.10.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"*",
|
|
"onCommand:extension.openRecentFiles"
|
|
],
|
|
"keywords": [
|
|
"intellij",
|
|
"idea",
|
|
"recent",
|
|
"file"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/wahyd4/vscode-plugin-recent-files.git"
|
|
},
|
|
"main": "./extension",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "extension.openRecentFiles",
|
|
"title": "Open Recent Files"
|
|
}
|
|
],
|
|
"keybindings": [
|
|
{
|
|
"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"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
"test": "node ./node_modules/vscode/bin/test"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^2.0.3",
|
|
"vscode": "^1.0.0",
|
|
"mocha": "^2.3.3",
|
|
"eslint": "^3.6.0",
|
|
"@types/node": "^6.0.40",
|
|
"@types/mocha": "^2.2.32"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.17.4"
|
|
}
|
|
} |