Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

Commit beb49aa

Browse files
authored
Merge pull request #199 from Kilo-Org/mark/editor-tab-button
feat(vscode): Editor title bar button to open Kilo in editor tab
2 parents 045bfda + 4a30c6e commit beb49aa

10 files changed

Lines changed: 504 additions & 101 deletions

File tree

1.45 KB
Loading
Lines changed: 6 additions & 0 deletions
Loading
1.84 KB
Loading
Lines changed: 6 additions & 0 deletions
Loading

packages/kilo-vscode/package.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"activitybar": [
1717
{
1818
"id": "kilo-code-sidebar",
19-
"title": "Kilo Code",
19+
"title": "Kilo Code (NEW)",
2020
"icon": "$(code)"
2121
}
2222
]
@@ -26,7 +26,7 @@
2626
{
2727
"type": "webview",
2828
"id": "kilo-code.new.sidebarView",
29-
"name": "Kilo Code"
29+
"name": "Kilo Code (NEW)"
3030
}
3131
]
3232
},
@@ -60,6 +60,14 @@
6060
"command": "kilo-code.new.settingsButtonClicked",
6161
"title": "Settings",
6262
"icon": "$(settings-gear)"
63+
},
64+
{
65+
"command": "kilo-code.new.openInTab",
66+
"title": "Kilo Code (NEW)",
67+
"icon": {
68+
"light": "assets/icons/kilo-light.svg",
69+
"dark": "assets/icons/kilo-dark.svg"
70+
}
6371
}
6472
],
6573
"menus": {
@@ -94,6 +102,13 @@
94102
"group": "navigation@5",
95103
"when": "view == kilo-code.new.sidebarView"
96104
}
105+
],
106+
"editor/title": [
107+
{
108+
"command": "kilo-code.new.openInTab",
109+
"group": "navigation",
110+
"when": "true"
111+
}
97112
]
98113
}
99114
},

0 commit comments

Comments
 (0)