You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -84,7 +84,7 @@ function updateSessionStatusBarItem(sessionStatusBarItem: StatusBarItem) {
84
84
sessionStatusBarItem.tooltip=`${info?.version}\nProcess ID: ${pid}\n${addressInfoStr ? (`Connected via TCP address: ${addressInfoStr}\n`) : ''}Command: ${info?.command}\nStart time: ${info?.start_time}\nClick to attach to active terminal.`;
85
85
}else{
86
86
sessionStatusBarItem.text=`R: (not attached${addressInfoStr ? `, listening on ${addressInfoStr}` : ''})`;
87
-
sessionStatusBarItem.tooltip='Click to attach active terminal.';// TODO: Make clicking be aware of TCP R connections
87
+
sessionStatusBarItem.tooltip='Click to attach active terminal.';
88
88
}
89
89
sessionStatusBarItem.show();
90
90
}
@@ -126,6 +126,7 @@ export function startRequestWatcher(sessionStatusBarItem: StatusBarItem): void {
126
126
exportfunctionattachActive(): void{
127
127
if(config().get<boolean>('sessionWatcher')){
128
128
console.info('[attachActive]');
129
+
// TODO: Connect it via TCP connection instead, if available in the configurations (and the server is up)
0 commit comments