fix(macOS): paste Finder file paths - #89
Merged
kemokempo merged 4 commits intoAug 27, 2026
Merged
Conversation
kaluli123123
pushed a commit
to kaluli123123/otty
that referenced
this pull request
Aug 23, 2026
kaluli123123
marked this pull request as ready for review
August 23, 2026 10:07
kaluli123123
force-pushed
the
agent/macos-finder-file-paste
branch
2 times, most recently
from
August 25, 2026 02:12
c42d096 to
e7e8c4b
Compare
kemokempo
reviewed
Aug 25, 2026
kaluli123123
force-pushed
the
agent/macos-finder-file-paste
branch
from
August 26, 2026 02:03
e7e8c4b to
8ba5bf8
Compare
kemokempo
reviewed
Aug 26, 2026
kemokempo
approved these changes
Aug 27, 2026
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
crates/ui/terminallayout.Root cause
The iced text clipboard path requests only an
NSStringrepresentation. Finder publishes the selected file aspublic.file-url, so the existing paste handler cannot obtain the decoded POSIX path.Verification on macOS
cargo +nightly fmt -- --check: passed.cargo +1.96 lint: passed.cargo clippy --workspace --all-targets --all-features -- -D warnings: passed.cargo test --workspace --all-features: 530 passed, 2 ignored.cargo deny check: exited 0 with the existing yankedcore2 0.4.0andspin 0.9.8warnings.cargo llvm-cov --workspace --all-features --fail-under-lines 80: exited 1 because workspace line coverage is 67.82%; changedclipboard.rsandinput.rsline coverage is 98.18% and 81.83%.file://prefix.PR #87 is merged. This branch is rebased onto the resulting
mainand now contains only the Finder paste changes. Local Linux and Windows target builds were not run on this macOS host.