Add setting to allow apps to set the clipboard (OSC 52) - #967
Open
kynrek wants to merge 1 commit into
Open
Conversation
Add an 'Allow apps to set clipboard (OSC 52)' checkbox under Settings -> Advanced -> Miscellaneous (enabled by default). It binds to the terminal's clipboardWriteAllowed property so remote applications (e.g. tmux with 'set-clipboard on') can copy to the local clipboard over SSH. Unchecking it restores the previous behaviour. The setting is persisted like the other application settings. Depends on the corresponding qmltermwidget change that implements OSC 52 and exposes the clipboardWriteAllowed property; the submodule pointer should be bumped once that lands.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds an "Allow apps to set clipboard (OSC 52)" checkbox under Settings → Advanced → Miscellaneous (enabled by default). It binds to the terminal's
clipboardWriteAllowedproperty so remote applications (e.g.tmuxwithset-clipboard on) can copy to the local clipboard over SSH. Unchecking it restores the previous behaviour. The setting is persisted alongside the other application settings.Depends on
qmltermwidget PR: Swordfish90/qmltermwidget#53
That PR implements OSC 52 handling and exposes the
clipboardWriteAllowedproperty this checkbox binds to. This PR intentionally does not bump theqmltermwidgetsubmodule pointer — that bump should happen once the companion PR merges, so the pointer references an upstream commit. Until then the QML change is inert (the property simply has no effect).Testing
Built on macOS (Qt 6) with the companion qmltermwidget change: the checkbox appears in Advanced → Miscellaneous, defaults to on, persists across restarts, and toggling it enables/disables OSC 52 clipboard writes live.