Skip to content

Commit 77aca05

Browse files
authored
Use 'insert' mode for # in chat (microsoft#255580)
I originally changed this to fix some issue with `#file:` which doesn't exist anymore, and I don't think there is another scenario like that, and this behavior seems more expected. Fix microsoft/vscode-copilot#14764
1 parent ee88620 commit 77aca05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/browser/chatInputPart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,7 @@ export class ChatInputPart extends Disposable implements IHistoryNavigationWidge
10801080
showSnippets: false,
10811081
showWords: true,
10821082
showStatusBar: false,
1083-
insertMode: 'replace',
1083+
insertMode: 'insert',
10841084
};
10851085
options.scrollbar = { ...(options.scrollbar ?? {}), vertical: 'hidden' };
10861086
options.stickyScroll = { enabled: false };

0 commit comments

Comments
 (0)