File tree Expand file tree Collapse file tree
ui/src/components/editor/BrowserExtensionMessage Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121
2222.links {
2323 display : flex ;
24- gap : var (--padding-10px );
24+ flex-wrap : wrap ;
25+ gap : var (--padding-4px );
2526
2627 > a {
2728 color : var (--vscode-inputOption-activeForeground );
2829 display : flex ;
2930 gap : var (--padding-4px );
3031 align-items : center ;
32+ white-space : nowrap ;
33+
34+ & :first-child {
35+ padding-right : var (--padding-6px );
36+ }
3137
3238 > span :first-child {
3339 font-size : var (--font-size-15px );
Original file line number Diff line number Diff line change 22 "name" : " gemini-coder" ,
33 "displayName" : " Code Web Chat (CWC)" ,
44 "description" : " Free AI coding for everyone" ,
5- "version" : " 1.225 .0" ,
5+ "version" : " 1.226 .0" ,
66 "scripts" : {
77 "build" : " npx vsce package --no-dependencies" ,
88 "vscode:prepublish" : " rimraf out && npm run compile" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import * as vscode from 'vscode'
22import { FilesCollector } from '../utils/files-collector'
33
44async function perform_code_completion_to_clipboard (
5- context : vscode . ExtensionContext ,
65 file_tree_provider : any ,
76 open_editors_provider : any
87) {
@@ -52,15 +51,13 @@ async function perform_code_completion_to_clipboard(
5251}
5352
5453export function code_completion_to_clipboard_command (
55- context : vscode . ExtensionContext ,
5654 file_tree_provider : any ,
5755 open_editors_provider ?: any
5856) {
5957 return vscode . commands . registerCommand (
6058 'codeWebChat.codeCompletionToClipboard' ,
6159 async ( ) => {
6260 await perform_code_completion_to_clipboard (
63- context ,
6461 file_tree_provider ,
6562 open_editors_provider
6663 )
Original file line number Diff line number Diff line change @@ -105,7 +105,6 @@ export async function activate(context: vscode.ExtensionContext) {
105105 context
106106 ) ,
107107 code_completion_to_clipboard_command (
108- context ,
109108 workspace_provider ,
110109 open_editors_provider
111110 ) ,
You can’t perform that action at this time.
0 commit comments