Skip to content

Instantly share code, notes, and snippets.

@JoepKockelkorn
Created March 18, 2024 12:08
Show Gist options
  • Save JoepKockelkorn/f888ffb0ade8a12def78446c942c21da to your computer and use it in GitHub Desktop.
Save JoepKockelkorn/f888ffb0ade8a12def78446c942c21da to your computer and use it in GitHub Desktop.
// Menu: Surround text with
// Description: Surround the selected text with some input
// Snippet:
const text = await getSelectedText();
const cmdEnterToEmit = {
name: "Submit",
key: "enter",
bar: "right",
onPress: async input => {
await submit(input)
},
}
const surrounded = await template(`$1${text}$1`, { shortcuts: [cmdEnterToEmit] });
await setSelectedText(surrounded);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment