You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 15, 2026. It is now read-only.
When linting shows an error, it's not possible to copy the error text by Ctrl+C (and paste into a chat, email, etc.).
The problem is in LintPanel.list.onkeydown handler, see lint/src/lint.ts:527 There's event.preventDefault() which prevents the default action, i.e. copy to clipboard.
I suggest to skip preventDefault(), if event.ctrlKey, altKey or metaKey is set.
Describe the issue
When linting shows an error, it's not possible to copy the error text by Ctrl+C (and paste into a chat, email, etc.).
The problem is in
LintPanel.list.onkeydownhandler, see lint/src/lint.ts:527 There'sevent.preventDefault()which prevents the default action, i.e. copy to clipboard.I suggest to skip
preventDefault(), ifevent.ctrlKey,altKeyormetaKeyis set.Browser and platform
Electron.js, Chrome
Reproduction link
No response