Add iOS clipboard support

This commit is contained in:
2025-06-29 12:58:08 -04:00
parent dd622c59e2
commit bed23e987d
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build darwin
//go:build darwin && !ios
package core
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build android && !termux
//go:build (android && !termux) || ios
package core
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build !windows && !darwin && !android && !termux && !wsl
//go:build !windows && !darwin && !android && !ios && !termux && !wsl
package core
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build (windows || darwin || android || termux || wsl) && !interactive
//go:build (windows || darwin || android || ios || termux || wsl) && !interactive
package core
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build !windows && !darwin && !android && !termux && !wsl && !interactive
//go:build (!windows && !darwin && !android && !ios) || (!termux && !wsl && !interactive)
package core
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build (windows || darwin || android || termux || wsl) && interactive
//go:build (windows || darwin || android || ios || termux || wsl) && interactive
package core
+1 -1
View File
@@ -1,4 +1,4 @@
//go:build !windows && !darwin && !android && !termux && !wsl && interactive
//go:build !windows && !darwin && !android && !ios && !termux && !wsl && interactive
package core