This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-03-01
Channels
- # announcements (6)
- # beginners (68)
- # calva (5)
- # cider (3)
- # clara (1)
- # clojure (49)
- # clojure-europe (24)
- # clojure-nl (2)
- # clojure-norway (28)
- # clojure-seattle (1)
- # clojure-uk (5)
- # clojurescript (3)
- # conjure (5)
- # core-typed (6)
- # data-science (1)
- # datalevin (3)
- # datascript (3)
- # datavis (1)
- # datomic (19)
- # events (2)
- # fulcro (6)
- # gratitude (1)
- # helix (6)
- # hyperfiddle (19)
- # joyride (6)
- # lsp (20)
- # music (1)
- # nbb (12)
- # pathom (2)
- # pedestal (10)
- # re-frame (3)
- # reitit (3)
- # ring (5)
- # shadow-cljs (26)
- # yamlscript (17)
Maybe offtopic here. I want to move focus to a tab matching a name. I can done the finding the tab part, e.g.,
for (const tabGroup of vscode.window.tabGroups.all) {
for (const tab of tabGroup.tabs) {find the right tab}
But after locating the tab, how can I activate that tab?It looks like this info is on the tab’s input
property, at least according to the docs: https://code.visualstudio.com/api/references/vscode-api#Tab
Hi @U01EB0V3H39, after that, how shall I open the tab?
I don’t know what type that property is, it’s marked as unknown
in the docs and looks like it varies based on the tab contents (not all tabs have editors, like webviews for example). If I were you I would probably try out and see what’s in there, I’ll bet there’s an editor
you can focus in there somewhere
1