-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Open the "SSH Quick Open" on the current tab, not terminal
- Loading branch information
1 parent
3f00ae9
commit 6d6142a
Showing
3 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright 2022 Simon Edwards <[email protected]> | ||
* Copyright 2024 Simon Edwards <[email protected]> | ||
* | ||
* This source code is licensed under the MIT license which is detailed in the LICENSE.txt file. | ||
*/ | ||
|
@@ -10,6 +10,7 @@ import { Window, Windows } from "./Windows.js"; | |
import { Terminal, Terminals } from "./Terminal.js"; | ||
import { Block } from "./Block.js"; | ||
import { Settings } from "./Settings.js"; | ||
import { Tab } from "./Tab.js"; | ||
|
||
|
||
/** | ||
|
@@ -113,6 +114,11 @@ export interface ExtensionContext { | |
|
||
readonly activeWindow: Window; | ||
|
||
/** | ||
* The currently active/focussed tab. | ||
*/ | ||
readonly activeTab: Tab; | ||
|
||
readonly application: Application; | ||
|
||
readonly commands: Commands; | ||
|