File size: 13,869 Bytes
7a1ad33 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 | /**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { exec, execSync, spawn, spawnSync } from 'node:child_process';
import { promisify } from 'node:util';
import { once } from 'node:events';
import { debugLogger } from './debugLogger.js';
import { coreEvents, CoreEvent, type EditorSelectedPayload } from './events.js';
import { isHeadlessMode } from './headless.js';
const GUI_EDITORS = [
'vscode',
'vscodium',
'windsurf',
'cursor',
'zed',
'antigravity',
'sublimetext',
'lapce',
'nova',
'bbedit',
] as const;
const TERMINAL_EDITORS = [
'vim',
'neovim',
'emacs',
'hx',
'emacsclient',
'micro',
] as const;
const EDITORS = [...GUI_EDITORS, ...TERMINAL_EDITORS] as const;
export const ALL_EDITORS: readonly string[] = EDITORS;
const GUI_EDITORS_SET = new Set<string>(GUI_EDITORS);
const TERMINAL_EDITORS_SET = new Set<string>(TERMINAL_EDITORS);
const EDITORS_SET = new Set<string>(EDITORS);
export const NO_EDITOR_AVAILABLE_ERROR =
'No external editor is available. Please run /editor to configure one.';
export const DEFAULT_GUI_EDITOR: GuiEditorType = 'vscode';
export type GuiEditorType = (typeof GUI_EDITORS)[number];
export type TerminalEditorType = (typeof TERMINAL_EDITORS)[number];
export type EditorType = (typeof EDITORS)[number];
export function isGuiEditor(editor: EditorType): editor is GuiEditorType {
return GUI_EDITORS_SET.has(editor);
}
export function isTerminalEditor(
editor: EditorType,
): editor is TerminalEditorType {
return TERMINAL_EDITORS_SET.has(editor);
}
export const EDITOR_DISPLAY_NAMES: Record<EditorType, string> = {
vscode: 'VS Code',
vscodium: 'VSCodium',
windsurf: 'Windsurf',
cursor: 'Cursor',
vim: 'Vim',
neovim: 'Neovim',
zed: 'Zed',
emacs: 'Emacs',
emacsclient: 'Emacs Client',
antigravity: 'Antigravity',
hx: 'Helix',
sublimetext: 'Sublime Text',
lapce: 'Lapce',
nova: 'Nova',
bbedit: 'BBEdit',
micro: 'Micro',
};
export function getEditorDisplayName(editor: EditorType): string {
return EDITOR_DISPLAY_NAMES[editor] || editor;
}
export const EDITOR_OPTIONS: ReadonlyArray<{
value: EditorType;
label: string;
}> = EDITORS.map((e) => ({ value: e, label: EDITOR_DISPLAY_NAMES[e] }));
export function isValidEditorType(editor: string): editor is EditorType {
return EDITORS_SET.has(editor);
}
/**
* Escapes a string for use in an Emacs Lisp string literal.
* Wraps in double quotes and escapes backslashes and double quotes.
*/
function escapeELispString(str: string): string {
return `"${str.replace(/\\/g, '\\\\').replace(/"/g, '\\"')}"`;
}
interface DiffCommand {
command: string;
args: string[];
}
const execAsync = promisify(exec);
function getCommandExistsCmd(cmd: string): string {
return process.platform === 'win32'
? `where.exe ${cmd}`
: `command -v ${cmd}`;
}
function commandExists(cmd: string): boolean {
try {
execSync(getCommandExistsCmd(cmd), { stdio: 'ignore' });
return true;
} catch {
return false;
}
}
async function commandExistsAsync(cmd: string): Promise<boolean> {
try {
await execAsync(getCommandExistsCmd(cmd));
return true;
} catch {
return false;
}
}
/**
* Editor command configurations for different platforms.
* Each editor can have multiple possible command names, listed in order of preference.
*/
const editorCommands: Record<
EditorType,
{ win32: string[]; default: string[] }
> = {
vscode: { win32: ['code.cmd'], default: ['code'] },
vscodium: { win32: ['codium.cmd'], default: ['codium'] },
windsurf: { win32: ['windsurf'], default: ['windsurf'] },
cursor: { win32: ['cursor'], default: ['cursor'] },
vim: { win32: ['vim'], default: ['vim'] },
neovim: { win32: ['nvim'], default: ['nvim'] },
zed: { win32: ['zed'], default: ['zed', 'zeditor'] },
emacs: { win32: ['emacs.exe'], default: ['emacs'] },
emacsclient: { win32: ['emacsclient'], default: ['emacsclient'] },
antigravity: {
win32: ['agy.cmd', 'antigravity.cmd', 'antigravity'],
default: ['agy', 'antigravity'],
},
hx: { win32: ['hx'], default: ['hx'] },
sublimetext: { win32: ['subl'], default: ['subl'] },
lapce: { win32: ['lapce'], default: ['lapce'] },
// nova and bbedit are macOS-only; commandExists will return false on other platforms
nova: { win32: ['nova'], default: ['nova'] },
bbedit: { win32: ['bbedit'], default: ['bbedit'] },
micro: { win32: ['micro'], default: ['micro'] },
};
function getEditorCommands(editor: EditorType): string[] {
const commandConfig = editorCommands[editor];
return process.platform === 'win32'
? commandConfig.win32
: commandConfig.default;
}
export function hasValidEditorCommand(editor: EditorType): boolean {
return getEditorCommands(editor).some((cmd) => commandExists(cmd));
}
export async function hasValidEditorCommandAsync(
editor: EditorType,
): Promise<boolean> {
return Promise.any(
getEditorCommands(editor).map((cmd) =>
commandExistsAsync(cmd).then((exists) => exists || Promise.reject()),
),
).catch(() => false);
}
export function getEditorCommand(editor: EditorType): string {
const commands = getEditorCommands(editor);
return (
commands.slice(0, -1).find((cmd) => commandExists(cmd)) ||
commands[commands.length - 1]
);
}
/**
* Given a command name (e.g. "cursor", "code", "code.cmd"), returns the
* EditorType that uses that command, or undefined if no match is found.
*
* This intentionally checks command names across all platforms (both `default`
* and `win32` lists) so that, for example, `$EDITOR=code` is recognized as
* vscode on Windows and `$EDITOR=code.cmd` is recognized as vscode on macOS.
*/
export function resolveEditorTypeFromCommand(
command: string,
): EditorType | undefined {
const lowerCmd = command.toLowerCase();
for (const editor of EDITORS) {
const { win32, default: nonWin32 } = editorCommands[editor];
if (
win32.some((c) => c.toLowerCase() === lowerCmd) ||
nonWin32.some((c) => c.toLowerCase() === lowerCmd)
) {
return editor;
}
}
return undefined;
}
/**
* Per-editor wait flags for GUI editors. Most use '--wait'; exceptions are listed here.
*/
const editorWaitFlags: Partial<Record<EditorType, string>> = {
sublimetext: '-w', // subl uses -w instead of --wait
};
/**
* Returns the flag used to make a GUI editor block until the file is closed.
*/
export function getEditorWaitFlag(editor: EditorType): string {
return editorWaitFlags[editor] ?? '--wait';
}
/**
* Per-editor extra arguments prepended to the command invocation.
*/
const editorExtraArgs: Partial<Record<EditorType, string[]>> = {
emacsclient: ['-nw'], // Force terminal (no-window) mode
};
/**
* VS Code-family editors that support the --new-window flag.
*/
const NEW_WINDOW_EDITORS = new Set<EditorType>([
'vscode',
'vscodium',
'cursor',
'windsurf',
'antigravity',
]);
/**
* Returns any extra arguments that must be passed to the editor executable
* (in addition to the file path and any wait flag).
*/
export function getEditorExtraArgs(
editor: EditorType,
options?: { newWindow?: boolean },
): string[] {
const extraArgs = editorExtraArgs[editor];
const args = extraArgs ? [...extraArgs] : [];
if (options?.newWindow && NEW_WINDOW_EDITORS.has(editor)) {
args.push('--new-window');
}
return args;
}
export function allowEditorTypeInSandbox(editor: EditorType): boolean {
const notUsingSandbox = !process.env['SANDBOX'];
if (isGuiEditor(editor)) {
return notUsingSandbox;
}
// For terminal-based editors like vim and emacs, allow in sandbox.
return true;
}
function isEditorTypeAvailable(
editor: string | undefined,
): editor is EditorType {
return (
!!editor && isValidEditorType(editor) && allowEditorTypeInSandbox(editor)
);
}
/**
* Check if the editor is valid and can be used.
* Returns false if preferred editor is not set / invalid / not available / not allowed in sandbox.
*/
export function isEditorAvailable(editor: string | undefined): boolean {
return isEditorTypeAvailable(editor) && hasValidEditorCommand(editor);
}
/**
* Check if the editor is valid and can be used.
* Returns false if preferred editor is not set / invalid / not available / not allowed in sandbox.
*/
export async function isEditorAvailableAsync(
editor: string | undefined,
): Promise<boolean> {
return (
isEditorTypeAvailable(editor) && (await hasValidEditorCommandAsync(editor))
);
}
/**
* Resolves an editor to use for external editing without blocking the event loop.
* 1. If a preferred editor is set and available, uses it.
* 2. If no preferred editor is set (or preferred is unavailable), requests selection from user and waits for it.
*/
export async function resolveEditorAsync(
preferredEditor: EditorType | undefined,
signal?: AbortSignal,
): Promise<EditorType | undefined> {
if (preferredEditor && (await isEditorAvailableAsync(preferredEditor))) {
return preferredEditor;
}
coreEvents.emit(CoreEvent.RequestEditorSelection);
return (
once(coreEvents, CoreEvent.EditorSelected, { signal })
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion
.then(([payload]) => (payload as EditorSelectedPayload).editor)
.catch(() => undefined)
);
}
/**
* Get the diff command for a specific editor.
*/
export function getDiffCommand(
oldPath: string,
newPath: string,
editor: EditorType,
): DiffCommand | null {
if (!isValidEditorType(editor)) {
return null;
}
const command = getEditorCommand(editor);
switch (editor) {
case 'vscode':
case 'vscodium':
case 'windsurf':
case 'cursor':
case 'zed':
case 'antigravity':
return { command, args: ['--wait', '--diff', oldPath, newPath] };
case 'vim':
case 'neovim':
return {
command,
args: [
'-d',
// skip viminfo file to avoid E138 errors
'-i',
'NONE',
// make the left window read-only and the right window editable
'-c',
'wincmd h | set readonly | wincmd l',
// set up colors for diffs
'-c',
'highlight DiffAdd cterm=bold ctermbg=22 guibg=#005f00 | highlight DiffChange cterm=bold ctermbg=24 guibg=#005f87 | highlight DiffText ctermbg=21 guibg=#0000af | highlight DiffDelete ctermbg=52 guibg=#5f0000',
// Show helpful messages
'-c',
'set showtabline=2 | set tabline=[Instructions]\\ :wqa(save\\ &\\ quit)\\ \\|\\ i/esc(toggle\\ edit\\ mode)',
'-c',
'wincmd h | setlocal statusline=OLD\\ FILE',
'-c',
'wincmd l | setlocal statusline=%#StatusBold#NEW\\ FILE\\ :wqa(save\\ &\\ quit)\\ \\|\\ i/esc(toggle\\ edit\\ mode)',
// Auto close all windows when one is closed
'-c',
'autocmd BufWritePost * wqa',
oldPath,
newPath,
],
};
case 'emacs':
case 'emacsclient': {
const extraArgs = editor === 'emacsclient' ? ['-nw'] : [];
return {
command,
args: [
...extraArgs,
'--eval',
`(ediff ${escapeELispString(oldPath)} ${escapeELispString(newPath)})`,
],
};
}
case 'hx':
return {
command: 'hx',
args: ['--vsplit', '--', oldPath, newPath],
};
case 'bbedit':
return { command, args: ['--wait', '--diff', oldPath, newPath] };
// sublimetext, lapce, nova, micro do not support CLI-driven diff views
default:
return null;
}
}
/**
* Opens a diff tool to compare two files.
* Terminal-based editors by default blocks parent process until the editor exits.
* GUI-based editors require args such as "--wait" to block parent process.
*/
export async function openDiff(
oldPath: string,
newPath: string,
editor: EditorType,
): Promise<void> {
if (isHeadlessMode()) {
debugLogger.warn(
'External editor spawning is disabled in headless/server mode.',
);
return;
}
const diffCommand = getDiffCommand(oldPath, newPath, editor);
if (!diffCommand) {
debugLogger.error('No diff tool available. Install a supported editor.');
return;
}
if (isTerminalEditor(editor)) {
try {
if (!commandExists(diffCommand.command)) {
throw new Error(`Editor command not found: ${diffCommand.command}`);
}
const result = spawnSync(diffCommand.command, diffCommand.args, {
stdio: 'inherit',
});
if (result.error) {
throw result.error;
}
if (result.status !== 0) {
throw new Error(`${editor} exited with code ${result.status}`);
}
} finally {
coreEvents.emit(CoreEvent.ExternalEditorClosed);
}
return;
}
return new Promise<void>((resolve, reject) => {
const childProcess = spawn(diffCommand.command, diffCommand.args, {
stdio: 'inherit',
shell: process.platform === 'win32',
});
// Guard against both 'error' and 'close' firing for a single failure,
// which would emit ExternalEditorClosed twice and attempt to settle
// the promise twice.
let isSettled = false;
childProcess.on('close', (code) => {
if (isSettled) return;
isSettled = true;
if (code !== 0) {
// GUI editors (VS Code, Zed, etc.) can exit with non-zero codes
// under normal circumstances (e.g., window closed while loading).
// Log a warning instead of crashing the CLI process.
debugLogger.warn(`${editor} exited with code ${code}`);
}
coreEvents.emit(CoreEvent.ExternalEditorClosed);
resolve();
});
childProcess.on('error', (error) => {
if (isSettled) return;
isSettled = true;
coreEvents.emit(CoreEvent.ExternalEditorClosed);
reject(error);
});
});
}
|