diff --git a/extension.js b/extension.js index a12e8f1..6df8824 100644 --- a/extension.js +++ b/extension.js @@ -158,8 +158,8 @@ function activate(context) { // Step 3d: Give user opportunity to rename the file finalPath = await promptForFileRename(finalPath); - // Step 3e: Insert the file path into the active terminal - activeTerminal.sendText(finalPath, false); + // Step 3e: Insert the file path into the active terminal with @ prefix for Claude Code + activeTerminal.sendText(`@${finalPath}`, false); // Step 3f: Show success notification with file details showSuccessMessage(finalPath);