Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aymanbagabas/go-osc52
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.1
Choose a base ref
...
head repository: aymanbagabas/go-osc52
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.2.2
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 26, 2023

  1. Copy the full SHA
    b35c78a View commit details
Showing with 9 additions and 1 deletion.
  1. +9 −1 osc52.go
10 changes: 9 additions & 1 deletion osc52.go
Original file line number Diff line number Diff line change
@@ -184,7 +184,15 @@ func sequence(contents string, term string, c Clipboard) string {
// Here, we split the encoded string into 76 bytes chunks and then join the
// chunks with <end-dsc><start-dsc> sequences. Finally, wrap the whole thing in
// <start-dsc><start-osc52><joined-chunks><end-osc52><end-dsc>.
s := strings.SplitN(contents, "", 76)
s := make([]string, 0, len(contents)/76+1)
for i := 0; i < len(contents); i += 76 {
end := i + 76
if end > len(contents) {
end = len(contents)
}
s = append(s, contents[i:end])
}

seq.WriteString(strings.Join(s, "\x1b\\\x1bP"))
default:
seq.WriteString(contents)