We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aca16c commit 2d4cf7dCopy full SHA for 2d4cf7d
src/api/gpt.jsx
@@ -367,8 +367,13 @@ export default (
367
<Detail
368
actions={
369
<ActionPanel>
370
+ {/* Copy/Paste Actions
371
+ We put paste on top or below depending on allowPaste */}
372
{allowPaste && <Action.Paste content={markdown} />}
373
<Action.CopyToClipboard shortcut={Keyboard.Shortcut.Common.Copy} content={markdown} />
374
+ {!allowPaste && <Action.Paste content={markdown} shortcut={{ modifiers: ["cmd", "shift"], key: "v" }} />}
375
+
376
+ {/* Actions */}
377
{(lastQuery.text || lastQuery.files?.length > 0) && (
378
<Action
379
title="Continue in Chat"
0 commit comments