We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e67315 commit a26ccefCopy full SHA for a26ccef
src/controlSocket.ts
@@ -33,7 +33,7 @@ export class ControlSocket {
33
async requestPause(ctrlSocket: string): Promise<void> {
34
let retval
35
if (process.platform === 'linux') {
36
- retval = await this.executeCtrlCmd(`\0${ctrlSocket}y`.padEnd(108, 'x'), 'pause')
+ retval = await this.executeCtrlCmd(`\0${ctrlSocket}`, 'pause')
37
} else if (process.platform === 'win32') {
38
retval = await this.executeCtrlCmd(`\\\\.\\pipe\\${ctrlSocket}`, 'pause')
39
} else {
0 commit comments