-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
re-enable alacritty copy/paste #25238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
c0decafe
wants to merge
12
commits into
termux:master
Choose a base branch
from
c0decafe:alacritty-copypasta
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
49e2fae
enable copy/paste
c0decafe 4737d45
bump revision
c0decafe 8e7c453
dependencies patches via cargo vendor and synced.
c0decafe 78e6824
linter: use tabs for indentation
c0decafe da64c95
linter: mixed indentation
c0decafe 4d9b858
scdoc is only used in on-device build, and it is in setup-termux.sh
c0decafe 81771c6
it's unnecessary to use vendor-sources for all source files
c0decafe ac5dbb2
use the system's freetype
c0decafe ffc50cc
pkg revision should be 2
c0decafe 27c848b
refactor for style
c0decafe d4fdd69
refactor for style
c0decafe b458a6c
refactor for style
c0decafe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
diff --git b/src/lib.rs.orig a/src/lib.rs | ||
index 092a23c5..e4495354 100644 | ||
--- b/src/lib.rs.orig | ||
+++ a/src/lib.rs | ||
@@ -20,7 +20,6 @@ pub use crate::common::ClipboardProvider; | ||
unix, | ||
not(any( | ||
target_os = "macos", | ||
- target_os = "android", | ||
target_os = "ios", | ||
target_os = "emscripten" | ||
)) | ||
@@ -31,7 +30,6 @@ pub mod wayland_clipboard; | ||
unix, | ||
not(any( | ||
target_os = "macos", | ||
- target_os = "android", | ||
target_os = "ios", | ||
target_os = "emscripten" | ||
)) | ||
@@ -51,7 +49,6 @@ pub mod nop_clipboard; | ||
unix, | ||
not(any( | ||
target_os = "macos", | ||
- target_os = "android", | ||
target_os = "ios", | ||
target_os = "emscripten" | ||
)) | ||
@@ -62,15 +59,12 @@ pub type ClipboardContext = x11_clipboard::X11ClipboardContext; | ||
pub type ClipboardContext = windows_clipboard::WindowsClipboardContext; | ||
#[cfg(target_os = "macos")] | ||
pub type ClipboardContext = osx_clipboard::OSXClipboardContext; | ||
-#[cfg(target_os = "android")] | ||
-pub type ClipboardContext = nop_clipboard::NopClipboardContext; // TODO: implement AndroidClipboardContext | ||
#[cfg(target_os = "ios")] | ||
pub type ClipboardContext = nop_clipboard::NopClipboardContext; // TODO: implement IOSClipboardContext | ||
#[cfg(not(any( | ||
unix, | ||
windows, | ||
target_os = "macos", | ||
- target_os = "android", | ||
target_os = "ios", | ||
target_os = "emscripten" | ||
)))] | ||
diff --git b/Cargo.toml.orig a/Cargo.toml | ||
index 77d8d97bf1..e28dac9817 100644 | ||
--- b/Cargo.toml.orig | ||
+++ a/Cargo.toml | ||
@@ -31,11 +31,11 @@ default = [ | ||
wayland = ["smithay-clipboard"] | ||
x11 = ["x11-clipboard"] | ||
|
||
-[target."cfg(all(unix, not(any(target_os=\"macos\", target_os=\"android\", target_os=\"ios\", target_os=\"emscripten\"))))".dependencies.smithay-clipboard] | ||
+[target."cfg(all(unix, not(any(target_os=\"macos\", target_os=\"dummy\", target_os=\"ios\", target_os=\"emscripten\"))))".dependencies.smithay-clipboard] | ||
version = "0.7.0" | ||
optional = true | ||
|
||
-[target."cfg(all(unix, not(any(target_os=\"macos\", target_os=\"android\", target_os=\"ios\", target_os=\"emscripten\"))))".dependencies.x11-clipboard] | ||
+[target."cfg(all(unix, not(any(target_os=\"macos\", target_os=\"dummy\", target_os=\"ios\", target_os=\"emscripten\"))))".dependencies.x11-clipboard] | ||
version = "0.9.1" | ||
optional = true | ||
|
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.