mirror of
https://github.com/wahyd4/vscode-plugin-recent-files.git
synced 2026-08-08 20:35:37 +10:00
update vscode plugin description
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
* press `F1` then type `Open Recent Files`
|
||||
|
||||
## Screenshot
|
||||

|
||||

|
||||
|
||||
## Source Code
|
||||
<https://github.com/wahyd4/vscode-plugin-recent-files>
|
||||
|
||||
@@ -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 });
|
||||
|
||||
+12
-1
@@ -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": [
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 604 KiB After Width: | Height: | Size: 297 KiB |
Reference in New Issue
Block a user