Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Commit

Permalink
Added basic reveal in Octant
Browse files Browse the repository at this point in the history
  • Loading branch information
queil committed Feb 4, 2021
1 parent 693294d commit d375159
Show file tree
Hide file tree
Showing 3 changed files with 512 additions and 483 deletions.
9 changes: 9 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@
"command": "ring.revealInExplorer",
"title": "Ring: Runnable - Reveal in explorer"
},
{
"command": "ring.revealInOctant",
"title": "Ring: Runnable - Reveal in Octant",
"enablement": "view == runnables"
},
{
"command": "ring.browseRunnable",
"title": "Ring: Runnable - Browse"
Expand Down Expand Up @@ -133,6 +138,10 @@
"when": "viewItem =~ /.*,workDir,.*/",
"command": "ring.revealInExplorer"
},
{
"when": "viewItem =~ /.*,kubernetesPods,.*/",
"command": "ring.revealInOctant"
},
{
"when": "viewItem =~ /.*,uri,.*/",
"command": "ring.browseRunnable"
Expand Down
3 changes: 2 additions & 1 deletion src/detailsKeys.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export class detailsKeys {
static readonly workDirKey = "workDir";
static readonly uriKey = "uri";
static readonly uriKey = "uri";
static readonly pods = "kubernetesPods";
}
Loading

0 comments on commit d375159

Please sign in to comment.