// Name: Greet Editor// Description: Opens editor with greeting// Author: johnlindquistimport '@johnlindquist/kit'const name = await arg<string>('Say hello to?');// Open the editor with a greeting message.await editor(`Hello, ${name}!`);
// Name: Greet Editor// Description: Opens editor with greeting// Author: johnlindquistimport '@johnlindquist/kit'const name = await arg<string>('Say hello to?');// Open the editor with a greeting message.await editor(`Hello, ${name}!`);