()
| 70 | } |
| 71 | |
| 72 | export function attachActiveGuest(): void { |
| 73 | if (config().get<boolean>('sessionWatcher', true)) { |
| 74 | console.info('[attachActiveGuest]'); |
| 75 | void rGuestService?.requestAttach(); |
| 76 | } else { |
| 77 | void vscode.window.showInformationMessage('This command requires that r.sessionWatcher be enabled.'); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | // Guest version of session.ts updateRequest(), no need to check for changes in files |
| 82 | // as this is handled by the session.ts variant |
no test coverage detected