reactive-vscode 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +70 -86
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,40 +1,43 @@
|
|
|
1
1
|
import { computed as e, effectScope as t, getCurrentScope as n, isRef as r, onScopeDispose as i, readonly as a, ref as o, shallowReactive as s, shallowRef as c, toRaw as l, toValue as u, unref as d, watch as f, watchEffect as p } from "@reactive-vscode/reactivity";
|
|
2
2
|
import { ColorThemeKind as m, EventEmitter as ee, Uri as te, chat as ne, commands as h, debug as g, env as _, extensions as v, l10n as y, lm as b, tasks as x, window as S, workspace as C } from "vscode";
|
|
3
3
|
export * from "@reactive-vscode/reactivity";
|
|
4
|
-
//#region src/utils/onActivate.ts
|
|
5
|
-
var w = [];
|
|
6
|
-
function T(e) {
|
|
7
|
-
D.value ? e(D.value) : w.push(e);
|
|
8
|
-
}
|
|
9
|
-
//#endregion
|
|
10
4
|
//#region src/utils/onDeactivate.ts
|
|
11
|
-
var
|
|
5
|
+
var w = [];
|
|
12
6
|
function re(e) {
|
|
13
|
-
|
|
7
|
+
w.push(e);
|
|
14
8
|
}
|
|
15
9
|
//#endregion
|
|
16
10
|
//#region src/utils/defineExtension.ts
|
|
17
|
-
var
|
|
11
|
+
var T = c(null), E = t();
|
|
18
12
|
function ie(e) {
|
|
19
13
|
return {
|
|
20
|
-
activate: (t) => (
|
|
14
|
+
activate: (t) => (T.value = t, E.run(() => (D.forEach((e) => e(t)), e(t)))),
|
|
21
15
|
deactivate: async () => {
|
|
22
|
-
await Promise.allSettled(
|
|
16
|
+
await Promise.allSettled(w.map((e) => e())), E.stop();
|
|
23
17
|
}
|
|
24
18
|
};
|
|
25
19
|
}
|
|
26
20
|
//#endregion
|
|
21
|
+
//#region src/utils/onActivate.ts
|
|
22
|
+
var D = [];
|
|
23
|
+
function O(e) {
|
|
24
|
+
T.value ? e(T.value) : D.push(e);
|
|
25
|
+
}
|
|
26
|
+
//#endregion
|
|
27
27
|
//#region src/utils/defineConfig.ts
|
|
28
|
-
function
|
|
28
|
+
function k(e, t) {
|
|
29
29
|
let n = !e, r = c(null);
|
|
30
30
|
function i() {
|
|
31
31
|
return r.value = C.getConfiguration(e ?? void 0, t);
|
|
32
32
|
}
|
|
33
33
|
function a() {
|
|
34
|
-
|
|
35
|
-
return r.value ? r.value : i();
|
|
34
|
+
return r.value || i();
|
|
36
35
|
}
|
|
37
36
|
function o(t) {
|
|
37
|
+
let n = () => {
|
|
38
|
+
let e = a();
|
|
39
|
+
return t === "" ? e : e.get(t.slice(0, -1)) ?? {};
|
|
40
|
+
};
|
|
38
41
|
return new Proxy({}, {
|
|
39
42
|
get(n, r) {
|
|
40
43
|
let i = a();
|
|
@@ -54,49 +57,30 @@ function ae(e, t) {
|
|
|
54
57
|
if (typeof n != "string") throw TypeError("Symbol keys are not supported in defineConfig proxy.");
|
|
55
58
|
return i.update(t + n, r), !0;
|
|
56
59
|
},
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
defineProperty(e, t, n) {
|
|
60
|
-
let r = a();
|
|
61
|
-
return Reflect.defineProperty(r, t, n);
|
|
60
|
+
defineProperty(e, t, r) {
|
|
61
|
+
return Reflect.defineProperty(n(), t, r);
|
|
62
62
|
},
|
|
63
63
|
deleteProperty(e, t) {
|
|
64
|
-
|
|
65
|
-
return Reflect.deleteProperty(n, t);
|
|
66
|
-
},
|
|
67
|
-
getOwnPropertyDescriptor(e, t) {
|
|
68
|
-
let n = a();
|
|
69
|
-
return Reflect.getOwnPropertyDescriptor(n, t);
|
|
70
|
-
},
|
|
71
|
-
getPrototypeOf(e) {
|
|
72
|
-
let t = a();
|
|
73
|
-
return Reflect.getPrototypeOf(t);
|
|
64
|
+
return Reflect.deleteProperty(n(), t);
|
|
74
65
|
},
|
|
75
66
|
has(e, t) {
|
|
76
|
-
|
|
77
|
-
return Reflect.has(n, t);
|
|
78
|
-
},
|
|
79
|
-
isExtensible(e) {
|
|
80
|
-
let t = a();
|
|
81
|
-
return Reflect.isExtensible(t);
|
|
67
|
+
return Reflect.has(n(), t);
|
|
82
68
|
},
|
|
83
69
|
ownKeys(e) {
|
|
84
|
-
|
|
85
|
-
return Reflect.ownKeys(t);
|
|
70
|
+
return Reflect.ownKeys(n());
|
|
86
71
|
},
|
|
87
|
-
|
|
88
|
-
|
|
72
|
+
getOwnPropertyDescriptor(e, t) {
|
|
73
|
+
let r = Reflect.getOwnPropertyDescriptor(n(), t);
|
|
74
|
+
return r && (r.configurable = !0), r;
|
|
75
|
+
}
|
|
89
76
|
});
|
|
90
77
|
}
|
|
91
|
-
return
|
|
78
|
+
return O(() => {
|
|
92
79
|
M(C.onDidChangeConfiguration((r) => {
|
|
93
80
|
(n || r.affectsConfiguration(e, t ?? void 0)) && i();
|
|
94
81
|
}));
|
|
95
82
|
}), o("");
|
|
96
83
|
}
|
|
97
|
-
function k() {
|
|
98
|
-
throw Error("Not supported");
|
|
99
|
-
}
|
|
100
84
|
//#endregion
|
|
101
85
|
//#region src/utils/defineLogger.ts
|
|
102
86
|
var A = [
|
|
@@ -112,9 +96,9 @@ var A = [
|
|
|
112
96
|
"warn",
|
|
113
97
|
"error"
|
|
114
98
|
];
|
|
115
|
-
function
|
|
99
|
+
function ae(t) {
|
|
116
100
|
let n = c(null), r = c(_.logLevel), i = [];
|
|
117
|
-
|
|
101
|
+
O(() => {
|
|
118
102
|
let e = n.value = M(S.createOutputChannel(t, { log: !0 }));
|
|
119
103
|
r.value = e.logLevel, M(e.onDidChangeLogLevel((e) => {
|
|
120
104
|
r.value = e;
|
|
@@ -138,7 +122,7 @@ function j(e) {
|
|
|
138
122
|
if (!n) {
|
|
139
123
|
if (t) throw Error("Cannot call a singleton composable recursively.");
|
|
140
124
|
try {
|
|
141
|
-
t = !0, r =
|
|
125
|
+
t = !0, r = E.run(e);
|
|
142
126
|
} finally {
|
|
143
127
|
t = !1, n = !0;
|
|
144
128
|
}
|
|
@@ -148,13 +132,13 @@ function j(e) {
|
|
|
148
132
|
}
|
|
149
133
|
//#endregion
|
|
150
134
|
//#region src/composables/useAbsoluteUri.ts
|
|
151
|
-
function
|
|
152
|
-
return e(() => te.joinPath(
|
|
135
|
+
function oe(t) {
|
|
136
|
+
return e(() => te.joinPath(T.value.extensionUri, u(t)));
|
|
153
137
|
}
|
|
154
138
|
//#endregion
|
|
155
139
|
//#region src/composables/useDisposable.ts
|
|
156
140
|
function M(e) {
|
|
157
|
-
return (n() ??
|
|
141
|
+
return (n() ?? E).cleanups.push(e.dispose.bind(e)), e;
|
|
158
142
|
}
|
|
159
143
|
//#endregion
|
|
160
144
|
//#region src/composables/useActiveColorTheme.ts
|
|
@@ -163,27 +147,27 @@ var N = j(() => {
|
|
|
163
147
|
return M(S.onDidChangeActiveColorTheme((t) => {
|
|
164
148
|
e.value = t;
|
|
165
149
|
})), e;
|
|
166
|
-
}),
|
|
150
|
+
}), se = j(() => {
|
|
167
151
|
let t = c(g.activeDebugSession);
|
|
168
152
|
return M(g.onDidChangeActiveDebugSession((e) => {
|
|
169
153
|
t.value = e;
|
|
170
154
|
})), e(() => t.value);
|
|
171
|
-
}),
|
|
155
|
+
}), ce = j(() => {
|
|
172
156
|
let e = c(S.activeNotebookEditor);
|
|
173
157
|
return M(S.onDidChangeActiveNotebookEditor((t) => {
|
|
174
158
|
e.value = t;
|
|
175
159
|
})), e;
|
|
176
|
-
}),
|
|
160
|
+
}), le = j(() => {
|
|
177
161
|
let e = c(S.activeTerminal);
|
|
178
162
|
return M(S.onDidChangeActiveTerminal((t) => {
|
|
179
163
|
e.value = t;
|
|
180
164
|
})), e;
|
|
181
|
-
}),
|
|
165
|
+
}), ue = j(() => {
|
|
182
166
|
let t = c(S.activeTextEditor);
|
|
183
167
|
return M(S.onDidChangeActiveTextEditor((e) => {
|
|
184
168
|
t.value = e;
|
|
185
169
|
})), e(() => t.value);
|
|
186
|
-
}),
|
|
170
|
+
}), de = j(() => {
|
|
187
171
|
let t = c(v.all);
|
|
188
172
|
return M(v.onDidChange(() => {
|
|
189
173
|
t.value = v.all;
|
|
@@ -293,8 +277,8 @@ function U(e, t = []) {
|
|
|
293
277
|
}
|
|
294
278
|
//#endregion
|
|
295
279
|
//#region src/composables/useExtensionSecret.ts
|
|
296
|
-
function
|
|
297
|
-
let n =
|
|
280
|
+
function fe(t) {
|
|
281
|
+
let n = T.value.secrets, r = c(null);
|
|
298
282
|
n.get(t).then((e) => {
|
|
299
283
|
r.value = e;
|
|
300
284
|
}), M(n.onDidChange(async (e) => {
|
|
@@ -316,7 +300,7 @@ function pe(t) {
|
|
|
316
300
|
}
|
|
317
301
|
//#endregion
|
|
318
302
|
//#region src/composables/useFileSystemWatcher.ts
|
|
319
|
-
function
|
|
303
|
+
function pe(t, n = {}) {
|
|
320
304
|
let r = s(/* @__PURE__ */ new Map()), o = U(), c = U(), l = U(), d = e(() => {
|
|
321
305
|
let e = u(t);
|
|
322
306
|
return e instanceof Set ? e : new Set(Array.isArray(e) ? e : [e]);
|
|
@@ -357,8 +341,8 @@ function W(t, n, r) {
|
|
|
357
341
|
}
|
|
358
342
|
//#endregion
|
|
359
343
|
//#region src/composables/useGlobalState.ts
|
|
360
|
-
function
|
|
361
|
-
return W(
|
|
344
|
+
function me(e, t) {
|
|
345
|
+
return W(T.value.globalState, e, t);
|
|
362
346
|
}
|
|
363
347
|
//#endregion
|
|
364
348
|
//#region src/composables/useQuickInputOptions.ts
|
|
@@ -376,7 +360,7 @@ function G(e, t) {
|
|
|
376
360
|
}
|
|
377
361
|
//#endregion
|
|
378
362
|
//#region src/composables/useInputBox.ts
|
|
379
|
-
function
|
|
363
|
+
function he(e = {}) {
|
|
380
364
|
let t = M(S.createInputBox());
|
|
381
365
|
G(t, e), F(t, e, [
|
|
382
366
|
"valueSelection",
|
|
@@ -398,10 +382,10 @@ function ge(e = {}) {
|
|
|
398
382
|
}
|
|
399
383
|
//#endregion
|
|
400
384
|
//#region src/composables/useIsDarkTheme.ts
|
|
401
|
-
var
|
|
385
|
+
var ge = j(() => {
|
|
402
386
|
let t = N();
|
|
403
387
|
return e(() => t.value.kind === m.Dark || t.value.kind === m.HighContrast);
|
|
404
|
-
}),
|
|
388
|
+
}), _e = j(() => {
|
|
405
389
|
let t = c(_.isTelemetryEnabled);
|
|
406
390
|
return M(_.onDidChangeTelemetryEnabled((e) => {
|
|
407
391
|
t.value = e;
|
|
@@ -409,7 +393,7 @@ var _e = j(() => {
|
|
|
409
393
|
});
|
|
410
394
|
//#endregion
|
|
411
395
|
//#region src/composables/useL10nText.ts
|
|
412
|
-
function
|
|
396
|
+
function ve(t, ...n) {
|
|
413
397
|
return e(() => {
|
|
414
398
|
let e = u(n[0]);
|
|
415
399
|
return typeof e == "object" ? y.t(u(t), l(e)) : y.t(u(t), ...n.map(u));
|
|
@@ -417,12 +401,12 @@ function ye(t, ...n) {
|
|
|
417
401
|
}
|
|
418
402
|
//#endregion
|
|
419
403
|
//#region src/composables/useLmTools.ts
|
|
420
|
-
var
|
|
404
|
+
var ye = j(() => {
|
|
421
405
|
let t = c(b.tools);
|
|
422
406
|
return M(b.onDidChangeChatModels(() => {
|
|
423
407
|
t.value = b.tools;
|
|
424
408
|
})), e(() => t.value);
|
|
425
|
-
}),
|
|
409
|
+
}), be = j(() => {
|
|
426
410
|
let t = c(_.logLevel);
|
|
427
411
|
return M(_.onDidChangeLogLevel((e) => {
|
|
428
412
|
t.value = e;
|
|
@@ -449,7 +433,7 @@ function K(t) {
|
|
|
449
433
|
}
|
|
450
434
|
//#endregion
|
|
451
435
|
//#region src/composables/useNotebookEditorSelection.ts
|
|
452
|
-
function
|
|
436
|
+
function xe(t) {
|
|
453
437
|
let n = K(t);
|
|
454
438
|
return e({
|
|
455
439
|
get() {
|
|
@@ -462,7 +446,7 @@ function Se(t) {
|
|
|
462
446
|
}
|
|
463
447
|
//#endregion
|
|
464
448
|
//#region src/composables/useNotebookEditorVisibleRanges.ts
|
|
465
|
-
function
|
|
449
|
+
function Se(t) {
|
|
466
450
|
let n = c(u(t)?.visibleRanges ?? []);
|
|
467
451
|
return (r(t) || typeof t == "function") && f(t, (e) => {
|
|
468
452
|
n.value = e?.visibleRanges ?? [];
|
|
@@ -472,7 +456,7 @@ function Ce(t) {
|
|
|
472
456
|
}
|
|
473
457
|
//#endregion
|
|
474
458
|
//#region src/composables/useOpenedTerminals.ts
|
|
475
|
-
var
|
|
459
|
+
var Ce = j(() => {
|
|
476
460
|
let e = c(S.terminals);
|
|
477
461
|
function t() {
|
|
478
462
|
e.value = S.terminals;
|
|
@@ -481,7 +465,7 @@ var we = j(() => {
|
|
|
481
465
|
});
|
|
482
466
|
//#endregion
|
|
483
467
|
//#region src/composables/useQuickPick.ts
|
|
484
|
-
function
|
|
468
|
+
function we(e = {}) {
|
|
485
469
|
let t = M(S.createQuickPick());
|
|
486
470
|
G(t, e), F(t, e, [
|
|
487
471
|
"items",
|
|
@@ -519,7 +503,7 @@ function Te(e = {}) {
|
|
|
519
503
|
}
|
|
520
504
|
//#endregion
|
|
521
505
|
//#region src/composables/useStatusBarItem.ts
|
|
522
|
-
function
|
|
506
|
+
function Te(e) {
|
|
523
507
|
let t = M(e.id ? S.createStatusBarItem(e.id, e.alignment, e.priority) : S.createStatusBarItem(e.alignment, e.priority));
|
|
524
508
|
return F(t, e, [
|
|
525
509
|
"name",
|
|
@@ -535,7 +519,7 @@ function Ee(e) {
|
|
|
535
519
|
}
|
|
536
520
|
//#endregion
|
|
537
521
|
//#region src/composables/useTaskExecutions.ts
|
|
538
|
-
var
|
|
522
|
+
var Ee = j(() => {
|
|
539
523
|
let t = c(x.taskExecutions);
|
|
540
524
|
function n() {
|
|
541
525
|
t.value = x.taskExecutions;
|
|
@@ -564,7 +548,7 @@ function J(t) {
|
|
|
564
548
|
}
|
|
565
549
|
//#endregion
|
|
566
550
|
//#region src/composables/useTerminal.ts
|
|
567
|
-
function
|
|
551
|
+
function De(...e) {
|
|
568
552
|
let t = M(S.createTerminal(...e));
|
|
569
553
|
return {
|
|
570
554
|
terminal: t,
|
|
@@ -588,7 +572,7 @@ function Y(e, t) {
|
|
|
588
572
|
}
|
|
589
573
|
//#endregion
|
|
590
574
|
//#region src/composables/useTextEditorCommands.ts
|
|
591
|
-
function
|
|
575
|
+
function Oe(e) {
|
|
592
576
|
for (let [t, n] of Object.entries(e)) Y(t, n);
|
|
593
577
|
}
|
|
594
578
|
//#endregion
|
|
@@ -615,7 +599,7 @@ function X(t, n) {
|
|
|
615
599
|
}
|
|
616
600
|
//#endregion
|
|
617
601
|
//#region src/composables/useTextEditorSelection.ts
|
|
618
|
-
function
|
|
602
|
+
function ke(t, n) {
|
|
619
603
|
let r = X(t, n);
|
|
620
604
|
return e({
|
|
621
605
|
get() {
|
|
@@ -628,7 +612,7 @@ function Ae(t, n) {
|
|
|
628
612
|
}
|
|
629
613
|
//#endregion
|
|
630
614
|
//#region src/composables/useTextEditorViewColumn.ts
|
|
631
|
-
function
|
|
615
|
+
function Ae(t) {
|
|
632
616
|
let n = c(u(t)?.viewColumn);
|
|
633
617
|
return (r(t) || typeof t == "function") && f(t, (e) => {
|
|
634
618
|
n.value = e?.viewColumn;
|
|
@@ -638,7 +622,7 @@ function je(t) {
|
|
|
638
622
|
}
|
|
639
623
|
//#endregion
|
|
640
624
|
//#region src/composables/useTextEditorVisibleRanges.ts
|
|
641
|
-
function
|
|
625
|
+
function je(t) {
|
|
642
626
|
let n = c(u(t)?.visibleRanges ?? []);
|
|
643
627
|
return (r(t) || typeof t == "function") && f(t, (e) => {
|
|
644
628
|
n.value = e?.visibleRanges ?? [];
|
|
@@ -664,7 +648,7 @@ function Z(t) {
|
|
|
664
648
|
}
|
|
665
649
|
//#endregion
|
|
666
650
|
//#region src/composables/useTreeView.ts
|
|
667
|
-
function
|
|
651
|
+
function Q(e, t, n = {}) {
|
|
668
652
|
let r = U(), i = /* @__PURE__ */ new WeakMap(), a = M(S.createTreeView(e, {
|
|
669
653
|
...n,
|
|
670
654
|
treeDataProvider: {
|
|
@@ -709,12 +693,12 @@ function Ne(e, t, n = {}) {
|
|
|
709
693
|
}
|
|
710
694
|
//#endregion
|
|
711
695
|
//#region src/composables/useVisibleNotebookEditors.ts
|
|
712
|
-
var
|
|
696
|
+
var Me = j(() => {
|
|
713
697
|
let t = c(S.visibleNotebookEditors);
|
|
714
698
|
return M(S.onDidChangeVisibleNotebookEditors((e) => {
|
|
715
699
|
t.value = e;
|
|
716
700
|
})), e(() => t.value);
|
|
717
|
-
}),
|
|
701
|
+
}), Ne = j(() => {
|
|
718
702
|
let t = c(S.visibleTextEditors);
|
|
719
703
|
return M(S.onDidChangeVisibleTextEditors((e) => {
|
|
720
704
|
t.value = e;
|
|
@@ -722,7 +706,7 @@ var Pe = j(() => {
|
|
|
722
706
|
});
|
|
723
707
|
//#endregion
|
|
724
708
|
//#region src/composables/useVscodeContext.ts
|
|
725
|
-
function
|
|
709
|
+
function Pe(t, n) {
|
|
726
710
|
let i = r(n) ? n : typeof n == "function" ? e(n) : o(n);
|
|
727
711
|
return f(i, (e) => {
|
|
728
712
|
h.executeCommand("setContext", t, e);
|
|
@@ -730,7 +714,7 @@ function Ie(t, n) {
|
|
|
730
714
|
}
|
|
731
715
|
//#endregion
|
|
732
716
|
//#region src/composables/useWebviewPanel.ts
|
|
733
|
-
function
|
|
717
|
+
function Fe(t, n, r, i, a = {}) {
|
|
734
718
|
let o = M(S.createWebviewPanel(t, u(n), i, a)), s = o.webview;
|
|
735
719
|
F(o, a, ["title", "iconPath"]), P(o, a, ["onDidChangeViewState", "onDidDispose"]);
|
|
736
720
|
let l = c(0);
|
|
@@ -756,7 +740,7 @@ function Q(t, n, r, i, a = {}) {
|
|
|
756
740
|
}
|
|
757
741
|
//#endregion
|
|
758
742
|
//#region src/composables/useWebviewView.ts
|
|
759
|
-
function
|
|
743
|
+
function Ie(t, n, r = {}) {
|
|
760
744
|
let i = c(), a = e(() => i.value?.webview), o = c();
|
|
761
745
|
M(S.registerWebviewViewProvider(t, { resolveWebviewView(e, t) {
|
|
762
746
|
i.value = e, o.value = t;
|
|
@@ -791,7 +775,7 @@ var $ = j(() => {
|
|
|
791
775
|
focused: e(() => t.value.focused),
|
|
792
776
|
active: e(() => t.value.active)
|
|
793
777
|
};
|
|
794
|
-
}),
|
|
778
|
+
}), Le = j(() => $().active), Re = j(() => $().focused), ze = j(() => {
|
|
795
779
|
let t = c(C.workspaceFolders);
|
|
796
780
|
return M(C.onDidChangeWorkspaceFolders(() => {
|
|
797
781
|
t.value = C.workspaceFolders;
|
|
@@ -799,10 +783,10 @@ var $ = j(() => {
|
|
|
799
783
|
});
|
|
800
784
|
//#endregion
|
|
801
785
|
//#region src/composables/useWorkspaceState.ts
|
|
802
|
-
function
|
|
803
|
-
return W(
|
|
786
|
+
function Be(e, t) {
|
|
787
|
+
return W(T.value.workspaceState, e, t);
|
|
804
788
|
}
|
|
805
789
|
//#endregion
|
|
806
|
-
export {
|
|
790
|
+
export { D as activateCbs, w as deactivateCbs, k as defineConfig, ie as defineExtension, ae as defineLogger, j as defineService, T as extensionContext, E as extensionScope, O as onActivate, re as onDeactivate, oe as useAbsoluteUri, N as useActiveColorTheme, se as useActiveDebugSession, ce as useActiveNotebookEditor, le as useActiveTerminal, ue as useActiveTextEditor, de as useAllExtensions, I as useChatParticipant, L as useCommand, R as useCommands, M as useDisposable, z as useDocumentText, B as useEditorDecorations, V as useEnvShell, H as useEvent, U as useEventEmitter, fe as useExtensionSecret, pe as useFileSystemWatcher, me as useGlobalState, he as useInputBox, ge as useIsDarkTheme, _e as useIsTelemetryEnabled, ve as useL10nText, ye as useLmTools, be as useLogLevel, W as useMementoItem, xe as useNotebookEditorSelection, K as useNotebookEditorSelections, Se as useNotebookEditorVisibleRanges, Ce as useOpenedTerminals, we as useQuickPick, F as useReactiveOptions, Te as useStatusBarItem, Ee as useTaskExecutions, De as useTerminal, q as useTerminalShellIntegration, J as useTerminalState, Y as useTextEditorCommand, Oe as useTextEditorCommands, ke as useTextEditorSelection, X as useTextEditorSelections, Ae as useTextEditorViewColumn, je as useTextEditorVisibleRanges, Q as useTreeView, Z as useViewVisibility, Me as useVisibleNotebookEditors, Ne as useVisibleTextEditors, Pe as useVscodeContext, Fe as useWebviewPanel, Ie as useWebviewView, Le as useWindowActive, Re as useWindowFocused, $ as useWindowState, ze as useWorkspaceFolders, Be as useWorkspaceState };
|
|
807
791
|
|
|
808
792
|
//# sourceMappingURL=index.js.map
|