Skip to content
Merged
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/vs/workbench/contrib/terminal/common/terminal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,7 @@ export const DEFAULT_COMMANDS_TO_SKIP_SHELL: string[] = [
TerminalCommandId.FocusHover,
AccessibilityCommandId.OpenAccessibilityHelp,
TerminalCommandId.StopVoice,
TerminalCommandId.SendSignal,
Copy link

Copilot AI Jan 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The placement of TerminalCommandId.SendSignal breaks the alphabetical ordering of the array. It should be placed immediately after TerminalCommandId.SendSequence (line 539) to maintain consistency with the rest of the list, where commands are generally sorted alphabetically by their suffix (Clear, Copy*, Delete*, Focus*, Kill*, Move*, New*, Paste*, Resize*, Run*, Scroll*, Select*, Send*, Split*, Toggle).

Copilot uses AI. Check for mistakes.
'workbench.action.tasks.rerunForActiveTerminal',
'editor.action.toggleTabFocusMode',
'notifications.hideList',
Expand Down
Loading