Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename commands #91

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ https://github.com/gitpod-samples/Gitpod-Raycast-Extension/assets/72302948/8b49a
![GithubLogin](/assets/Screenshots/NavigatingContexts/SetupDefaultOrganization.png)

## Command Descriptions
### <i>Manage Workspaces</i>
`Manage Workspaces` Command is responsible for managing your workspaces from Gitpod Dashboard, you can stop or start your existing workspaces there or create empty workspaces
### <i>Open Contexts from Github</i>
`Open Contexts` command takes the responsibility off your hands to manually browse through GitHub to open workspaces from any context url, no matter if it's a `PR`, `Issue`, `Branch` or the `Repository` itself. Along with that you can PIN contexts for later use/quick access or can view your Issues/PR descriptions right in the extension!
### <i>Menubar Workspaces</i>
`Menubar Workspaces` is the command that gets the extension so near to achieving it's goal of making `Gitpod Faster than local`, with it's function to start workspaces and opening it into your favourite IDE in just a click!
### <i>All Workspaces</i>
Manage active and inactive workspaces.
### <i>New Workspace</i>
Create a workspace from a GitHub repository, by selecting branch, issue, or pull request.
### <i>Recent Workspaces</i>
Quick access to recent workspaces.

# Table of Contents

Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@
"commands": [
{
"name": "open_in_gitpod",
"title": "Open Contexts From Github",
"subtitle": "Open any Context in Gitpod",
"description": "Open any Repository / Branch / PR / Issue in Gitpod with the extension",
"title": "New Workspace",
"subtitle": "Create a workspace from a GitHub repository",
"description": "Create a workspace from a GitHub repository, by selecting branch, issue, or pull request.",
"mode": "view",
"keywords": [
"gitpod",
Expand All @@ -112,16 +112,16 @@
},
{
"name": "gitpod_dashboard",
"title": "Manage Workspaces",
"subtitle": "Manage and Create New Workspaces",
"title": "All Workspaces",
"subtitle": "Manage active and inactive workspaces",
"description": "Start, Stop or Create New Workspaces just from the extension.",
"mode": "view"
},
{
"name": "menubar_workspaces",
"title": "Menu Bar Workspaces",
"subtitle": "Manage Workspaces from Menubar",
"description": "A Menubar Icon for faster access to recently visited workspaces, starting them and opening quicklinks.",
"title": "Recent Workspaces",
"subtitle": "Quick access to recent workspaces",
"description": "Quick access to recent workspaces.",
"mode": "menu-bar",
"interval": "100000d",
"keywords": [
Expand Down