-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
CER10TY
committed
Sep 17, 2019
1 parent
523bb62
commit c5c6beb
Showing
6 changed files
with
129 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "hncode2", | ||
"displayName": "HNCode²", | ||
"description": "Browse Hacker News in a tree view tab", | ||
"version": "0.0.1", | ||
"version": "0.0.5", | ||
"publisher": "sjohanson", | ||
"author": "Søren Johanson <[email protected]>", | ||
"engines": { | ||
|
@@ -39,11 +39,7 @@ | |
"hncode": [ | ||
{ | ||
"id": "top-stories", | ||
"name": "Top Stories" | ||
}, | ||
{ | ||
"id": "ask-hn", | ||
"name": "Ask HN" | ||
"name": "Stories" | ||
} | ||
] | ||
}, | ||
|
@@ -55,14 +51,46 @@ | |
"light": "resources/light/refresh.svg", | ||
"dark": "resources/dark/refresh.svg" | ||
} | ||
}, | ||
{ | ||
"command": "hncode.ask", | ||
"title": "Ask HN" | ||
}, | ||
{ | ||
"command": "hncode.top", | ||
"title": "Top Stories" | ||
}, | ||
{ | ||
"command": "hncode.new", | ||
"title": "New Stories" | ||
}, | ||
{ | ||
"command": "hncode.show", | ||
"title": "Show HN" | ||
} | ||
], | ||
"menus": { | ||
"view/title": [ | ||
{ | ||
"command": "hncode.refresh", | ||
"when": "view == top-stories || view == ask-hn", | ||
"when": "view == top-stories", | ||
"group": "navigation" | ||
}, | ||
{ | ||
"command": "hncode.ask", | ||
"when": "view == top-stories" | ||
}, | ||
{ | ||
"command": "hncode.top", | ||
"when": "view == top-stories" | ||
}, | ||
{ | ||
"command": "hncode.new", | ||
"when": "view == top-stories" | ||
}, | ||
{ | ||
"command": "hncode.show", | ||
"when": "view == top-stories" | ||
} | ||
] | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters