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

fix: don't show link for built in themes #205

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
9 changes: 7 additions & 2 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,13 @@ Feel free to fork & contribute.";
export const messagePaused = (user: string) =>
`@${user}, theme changes are paused. Please try again in a few minutes.`;

export const messageCurrent = (theme: string, themeId: string) =>
`The current theme is ${theme}. You can find it on the VS Code Marketplace at https://marketplace.visualstudio.com/items?itemName=${themeId}`;
export const messageCurrent = (theme: string, themeId: string) => {
let [provider] = themeId.split('.');
if (provider === "vscode") {
return `The current theme is ${theme}. It is included with VS Code.`;
}
return `The current theme is ${theme}. You can find it on the VS Code Marketplace at https://marketplace.visualstudio.com/items?itemName=${themeId}`;
};

export const messageInvalidTheme = (
user: string,
Expand Down