Skip to content

Commit 2990062

Browse files
devin-ai-integration[bot]kiet@onlook.devKitenite
authored
Make terminal and chat messages copiable (#1379)
* Make p tags selectable * Make terminal copyable --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: [email protected] <[email protected]> Co-authored-by: Kiet Ho <[email protected]>
1 parent fe7832c commit 2990062

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

apps/studio/src/index.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ body {
1313
user-select: none;
1414
}
1515

16+
p {
17+
user-select: text;
18+
}
19+
1620
*:focus-visible {
1721
outline: none !important;
1822
box-shadow: unset !important;

apps/studio/src/routes/editor/Toolbar/Terminal/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ const Terminal = observer(({ hidden = false }: TerminalProps) => {
8282
allowTransparency: true,
8383
disableStdin: false,
8484
allowProposedApi: true,
85+
macOptionIsMeta: true,
8586
});
8687

8788
term.open(container);

0 commit comments

Comments
 (0)