added a 'copy current path' hotkey and context menu item - fixes #2586

This commit is contained in:
Eugene Pankov
2021-01-25 17:30:44 +01:00
parent ecf5297bc3
commit 5069070040
6 changed files with 45 additions and 1 deletions

View File

@@ -363,6 +363,10 @@ export class SSHSession extends BaseSession {
this.kill('TERM')
}
supportsWorkingDirectory (): boolean {
return true
}
async getWorkingDirectory (): Promise<string|null> {
return null
}