mirror of
https://github.com/Eugeny/tabby.git
synced 2025-01-30 14:20:18 +08:00
relax OSC52 processing rules to support tmux - fixes #5961
This commit is contained in:
parent
3bfdb95bf0
commit
45b6e21dbc
@ -35,7 +35,7 @@ export class OSCProcessor extends SessionMiddleware {
|
||||
console.debug('Unsupported OSC 1337 parameter:', paramString)
|
||||
}
|
||||
} else if (oscCode === 52) {
|
||||
if (oscParams[0] === 'c') {
|
||||
if (oscParams[0] === 'c' || oscParams[0] === '') {
|
||||
const content = Buffer.from(oscParams[1], 'base64')
|
||||
this.copyRequested.next(content.toString())
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user