Skip to content
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
1 change: 1 addition & 0 deletions src/components/git/CloneRepositoryDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const GIT_URL_PATTERNS = [
/^https?:\/\/github\.com\/[^\/]+\/[^\/]+/i,
/^https?:\/\/gitlab\.com\/[^\/]+\/[^\/]+/i,
/^https?:\/\/bitbucket\.org\/[^\/]+\/[^\/]+/i,
/^https?:\/\/dev\.azure\.com\/[^\/]+\/[^\/]+\/_git\/[^\/]+/i,
/^git@[^\s]+:[^\s]+\.git$/i,
/^git@github\.com:[^\/]+\/[^\/]+/i,
/^git@gitlab\.com:[^\/]+\/[^\/]+/i,
Expand Down
2 changes: 1 addition & 1 deletion src/components/settings/GitSettingsPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ export function GitSettingsPanel(props: GitSettingsPanelProps) {
<SectionHeader
title="Commit"
description="Settings for committing changes"
icon={<Icon name="upload" class="h-4 w-4" />}
icon={<Icon name="check" class="h-4 w-4" />}
/>
<FormGroup>
<SettingRowWithOverride
Expand Down
9 changes: 1 addition & 8 deletions src/components/settings/TerminalSettingsPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -501,14 +501,7 @@ export function TerminalSettingsPanel(props: TerminalSettingsPanelProps) {
<kbd class="px-1.5 py-0.5 rounded bg-background text-foreground">Ctrl+C</kbd>
<span>Interrupt (Send SIGINT)</span>
</div>
<div class="flex items-center gap-2">
<kbd class="px-1.5 py-0.5 rounded bg-background text-foreground">Ctrl+↑/↓</kbd>
<span>Navigate command history (accessibility)</span>
</div>
<div class="flex items-center gap-2">
<kbd class="px-1.5 py-0.5 rounded bg-background text-foreground">Ctrl+A</kbd>
<span>Select all terminal content</span>
</div>

</div>
</div>

Expand Down