update vscode plugin description

This commit is contained in:
2017-03-10 08:48:57 +08:00
parent 4931ba13f0
commit 1223ab90bf
5 changed files with 14 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@
* press `F1` then type `Open Recent Files`
## Screenshot
![Screenshot of open recent files](screenshot.png)
![Screenshot of open recent files](https://github.com/wahyd4/vscode-plugin-recent-files/raw/master/screenshot.png)
## Source Code
<https://github.com/wahyd4/vscode-plugin-recent-files>
+1
View File
@@ -68,6 +68,7 @@ function handleChangeAcitveWindow(e) {
//ignore invalid item
if (!e._documentData || !e._documentData._uri) return;
let uri = e._documentData._uri.path
if(!uri || uri.trim() === "") return
//only allow to show 20 files.
if (list.length === 20) list = _.tail(list);
if (isFileNameExist(uri)) _.remove(list, (item) => { return item === uri });
Executable
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

+12 -1
View File
@@ -2,7 +2,8 @@
"name": "recent-files",
"displayName": "Open Recent Files",
"description": "Open recent files like you do in Intellij idea.",
"version": "1.0.0",
"version": "1.0.2",
"icon": "logo.png",
"publisher": "junv",
"engines": {
"vscode": "^1.10.0"
@@ -13,6 +14,16 @@
"activationEvents": [
"*"
],
"keywords": [
"intellij",
"idea",
"recent",
"file"
],
"repository": {
"type": "git",
"url": "https://github.com/wahyd4/vscode-plugin-recent-files.git"
},
"main": "./extension",
"contributes": {
"commands": [
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 604 KiB

After

Width:  |  Height:  |  Size: 297 KiB