mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-08-09 16:36:40 -07:00
chore(deps): pin dependencies and enforce 14-day update cooldown (#27948)
This commit is contained in:
@@ -251,7 +251,8 @@ export function getEditorExtraArgs(
|
||||
editor: EditorType,
|
||||
options?: { newWindow?: boolean },
|
||||
): string[] {
|
||||
const args = editorExtraArgs[editor] ? [...editorExtraArgs[editor]] : [];
|
||||
const extraArgs = editorExtraArgs[editor];
|
||||
const args = extraArgs ? [...extraArgs] : [];
|
||||
if (options?.newWindow && NEW_WINDOW_EDITORS.has(editor)) {
|
||||
args.push('--new-window');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user