@theia/editor 1.67.0-next.56 → 1.67.0-next.59
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/lib/browser/decorations/editor-decoration-style.d.ts +9 -0
- package/lib/browser/decorations/editor-decoration-style.d.ts.map +1 -0
- package/lib/browser/decorations/editor-decoration-style.js +37 -0
- package/lib/browser/decorations/editor-decoration-style.js.map +1 -0
- package/lib/browser/decorations/editor-decoration.d.ts +119 -0
- package/lib/browser/decorations/editor-decoration.d.ts.map +1 -0
- package/lib/browser/decorations/editor-decoration.js +38 -0
- package/lib/browser/decorations/editor-decoration.js.map +1 -0
- package/lib/browser/decorations/editor-decorator.d.ts +7 -0
- package/lib/browser/decorations/editor-decorator.d.ts.map +1 -0
- package/lib/browser/decorations/editor-decorator.js +39 -0
- package/lib/browser/decorations/editor-decorator.js.map +1 -0
- package/lib/browser/decorations/index.d.ts +4 -0
- package/lib/browser/decorations/index.d.ts.map +1 -0
- package/lib/browser/decorations/index.js +22 -0
- package/lib/browser/decorations/index.js.map +1 -0
- package/lib/browser/diff-navigator.d.ts +10 -0
- package/lib/browser/diff-navigator.d.ts.map +1 -0
- package/lib/browser/diff-navigator.js +20 -0
- package/lib/browser/diff-navigator.js.map +1 -0
- package/lib/browser/editor-command.d.ts +102 -0
- package/lib/browser/editor-command.d.ts.map +1 -0
- package/lib/browser/editor-command.js +402 -0
- package/lib/browser/editor-command.js.map +1 -0
- package/lib/browser/editor-contribution.d.ts +33 -0
- package/lib/browser/editor-contribution.d.ts.map +1 -0
- package/lib/browser/editor-contribution.js +222 -0
- package/lib/browser/editor-contribution.js.map +1 -0
- package/lib/browser/editor-frontend-module.d.ts +6 -0
- package/lib/browser/editor-frontend-module.d.ts.map +1 -0
- package/lib/browser/editor-frontend-module.js +88 -0
- package/lib/browser/editor-frontend-module.js.map +1 -0
- package/lib/browser/editor-keybinding.d.ts +6 -0
- package/lib/browser/editor-keybinding.d.ts.map +1 -0
- package/lib/browser/editor-keybinding.js +51 -0
- package/lib/browser/editor-keybinding.js.map +1 -0
- package/lib/browser/editor-language-quick-pick-service.d.ts +12 -0
- package/lib/browser/editor-language-quick-pick-service.d.ts.map +1 -0
- package/lib/browser/editor-language-quick-pick-service.js +77 -0
- package/lib/browser/editor-language-quick-pick-service.js.map +1 -0
- package/lib/browser/editor-linenumber-contribution.d.ts +16 -0
- package/lib/browser/editor-linenumber-contribution.d.ts.map +1 -0
- package/lib/browser/editor-linenumber-contribution.js +89 -0
- package/lib/browser/editor-linenumber-contribution.js.map +1 -0
- package/lib/browser/editor-manager.d.ts +135 -0
- package/lib/browser/editor-manager.d.ts.map +1 -0
- package/lib/browser/editor-manager.js +472 -0
- package/lib/browser/editor-manager.js.map +1 -0
- package/lib/browser/editor-menu.d.ts +51 -0
- package/lib/browser/editor-menu.d.ts.map +1 -0
- package/lib/browser/editor-menu.js +208 -0
- package/lib/browser/editor-menu.js.map +1 -0
- package/lib/browser/editor-navigation-contribution.d.ts +68 -0
- package/lib/browser/editor-navigation-contribution.d.ts.map +1 -0
- package/lib/browser/editor-navigation-contribution.js +324 -0
- package/lib/browser/editor-navigation-contribution.js.map +1 -0
- package/lib/browser/editor-variable-contribution.d.ts +9 -0
- package/lib/browser/editor-variable-contribution.d.ts.map +1 -0
- package/lib/browser/editor-variable-contribution.js +65 -0
- package/lib/browser/editor-variable-contribution.js.map +1 -0
- package/lib/browser/editor-widget-factory.d.ts +18 -0
- package/lib/browser/editor-widget-factory.d.ts.map +1 -0
- package/lib/browser/editor-widget-factory.js +84 -0
- package/lib/browser/editor-widget-factory.js.map +1 -0
- package/lib/browser/editor-widget.d.ts +28 -0
- package/lib/browser/editor-widget.d.ts.map +1 -0
- package/lib/browser/editor-widget.js +130 -0
- package/lib/browser/editor-widget.js.map +1 -0
- package/lib/browser/editor.d.ts +311 -0
- package/lib/browser/editor.d.ts.map +1 -0
- package/lib/browser/editor.js +104 -0
- package/lib/browser/editor.js.map +1 -0
- package/lib/browser/index.d.ts +12 -0
- package/lib/browser/index.d.ts.map +1 -0
- package/lib/browser/index.js +30 -0
- package/lib/browser/index.js.map +1 -0
- package/lib/browser/language-status/editor-language-status-service.d.ts +78 -0
- package/lib/browser/language-status/editor-language-status-service.d.ts.map +1 -0
- package/lib/browser/language-status/editor-language-status-service.js +244 -0
- package/lib/browser/language-status/editor-language-status-service.js.map +1 -0
- package/lib/browser/navigation/navigation-location-service.d.ts +132 -0
- package/lib/browser/navigation/navigation-location-service.d.ts.map +1 -0
- package/lib/browser/navigation/navigation-location-service.js +352 -0
- package/lib/browser/navigation/navigation-location-service.js.map +1 -0
- package/lib/browser/navigation/navigation-location-service.spec.d.ts +2 -0
- package/lib/browser/navigation/navigation-location-service.spec.d.ts.map +1 -0
- package/lib/browser/navigation/navigation-location-service.spec.js +185 -0
- package/lib/browser/navigation/navigation-location-service.spec.js.map +1 -0
- package/lib/browser/navigation/navigation-location-similarity.d.ts +16 -0
- package/lib/browser/navigation/navigation-location-similarity.d.ts.map +1 -0
- package/lib/browser/navigation/navigation-location-similarity.js +58 -0
- package/lib/browser/navigation/navigation-location-similarity.js.map +1 -0
- package/lib/browser/navigation/navigation-location-similarity.spec.d.ts +2 -0
- package/lib/browser/navigation/navigation-location-similarity.spec.d.ts.map +1 -0
- package/lib/browser/navigation/navigation-location-similarity.spec.js +33 -0
- package/lib/browser/navigation/navigation-location-similarity.spec.js.map +1 -0
- package/lib/browser/navigation/navigation-location-updater.d.ts +36 -0
- package/lib/browser/navigation/navigation-location-updater.d.ts.map +1 -0
- package/lib/browser/navigation/navigation-location-updater.js +206 -0
- package/lib/browser/navigation/navigation-location-updater.js.map +1 -0
- package/lib/browser/navigation/navigation-location-updater.spec.d.ts +2 -0
- package/lib/browser/navigation/navigation-location-updater.spec.d.ts.map +1 -0
- package/lib/browser/navigation/navigation-location-updater.spec.js +178 -0
- package/lib/browser/navigation/navigation-location-updater.spec.js.map +1 -0
- package/lib/browser/navigation/navigation-location.d.ts +192 -0
- package/lib/browser/navigation/navigation-location.d.ts.map +1 -0
- package/lib/browser/navigation/navigation-location.js +301 -0
- package/lib/browser/navigation/navigation-location.js.map +1 -0
- package/lib/browser/navigation/test/mock-navigation-location-updater.d.ts +16 -0
- package/lib/browser/navigation/test/mock-navigation-location-updater.d.ts.map +1 -0
- package/lib/browser/navigation/test/mock-navigation-location-updater.js +39 -0
- package/lib/browser/navigation/test/mock-navigation-location-updater.js.map +1 -0
- package/lib/browser/quick-editor-service.d.ts +17 -0
- package/lib/browser/quick-editor-service.d.ts.map +1 -0
- package/lib/browser/quick-editor-service.js +102 -0
- package/lib/browser/quick-editor-service.js.map +1 -0
- package/lib/browser/split-editor-contribution.d.ts +27 -0
- package/lib/browser/split-editor-contribution.d.ts.map +1 -0
- package/lib/browser/split-editor-contribution.js +23 -0
- package/lib/browser/split-editor-contribution.js.map +1 -0
- package/lib/browser/text-editor-split-contribution.d.ts +13 -0
- package/lib/browser/text-editor-split-contribution.d.ts.map +1 -0
- package/lib/browser/text-editor-split-contribution.js +50 -0
- package/lib/browser/text-editor-split-contribution.js.map +1 -0
- package/lib/browser/undo-redo-service.d.ts +24 -0
- package/lib/browser/undo-redo-service.d.ts.map +1 -0
- package/lib/browser/undo-redo-service.js +106 -0
- package/lib/browser/undo-redo-service.js.map +1 -0
- package/lib/common/editor-generated-preference-schema.d.ts +303 -0
- package/lib/common/editor-generated-preference-schema.d.ts.map +1 -0
- package/lib/common/editor-generated-preference-schema.js +2666 -0
- package/lib/common/editor-generated-preference-schema.js.map +1 -0
- package/lib/common/editor-preferences.d.ts +42 -0
- package/lib/common/editor-preferences.d.ts.map +1 -0
- package/lib/common/editor-preferences.js +179 -0
- package/lib/common/editor-preferences.js.map +1 -0
- package/lib/common/language-selector.d.ts +14 -0
- package/lib/common/language-selector.d.ts.map +1 -0
- package/lib/common/language-selector.js +91 -0
- package/lib/common/language-selector.js.map +1 -0
- package/lib/node/editor-backend-module.d.ts +4 -0
- package/lib/node/editor-backend-module.d.ts.map +1 -0
- package/lib/node/editor-backend-module.js +23 -0
- package/lib/node/editor-backend-module.js.map +1 -0
- package/lib/package.spec.d.ts +1 -0
- package/lib/package.spec.d.ts.map +1 -0
- package/lib/package.spec.js +26 -0
- package/lib/package.spec.js.map +1 -0
- package/package.json +4 -4
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Disposable } from '@theia/core';
|
|
2
|
+
export declare class EditorDecorationStyle implements Disposable {
|
|
3
|
+
readonly selector: string;
|
|
4
|
+
protected decorationsStyleSheet: CSSStyleSheet;
|
|
5
|
+
constructor(selector: string, styleProvider: (style: CSSStyleDeclaration) => void, decorationsStyleSheet: CSSStyleSheet);
|
|
6
|
+
get className(): string;
|
|
7
|
+
dispose(): void;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=editor-decoration-style.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"editor-decoration-style.d.ts","sourceRoot":"","sources":["../../../src/browser/decorations/editor-decoration-style.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAGzC,qBAAa,qBAAsB,YAAW,UAAU;IAGhD,QAAQ,CAAC,QAAQ,EAAE,MAAM;IAEzB,SAAS,CAAC,qBAAqB,EAAE,aAAa;gBAFrC,QAAQ,EAAE,MAAM,EACzB,aAAa,EAAE,CAAC,KAAK,EAAE,mBAAmB,KAAK,IAAI,EACzC,qBAAqB,EAAE,aAAa;IAQlD,IAAI,SAAS,IAAI,MAAM,CAEtB;IAED,OAAO,IAAI,IAAI;CAIlB"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2018 TypeFox and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.EditorDecorationStyle = void 0;
|
|
19
|
+
const browser_1 = require("@theia/core/lib/browser");
|
|
20
|
+
class EditorDecorationStyle {
|
|
21
|
+
constructor(selector, styleProvider, decorationsStyleSheet) {
|
|
22
|
+
this.selector = selector;
|
|
23
|
+
this.decorationsStyleSheet = decorationsStyleSheet;
|
|
24
|
+
const styleRule = browser_1.DecorationStyle.getOrCreateStyleRule(selector, decorationsStyleSheet);
|
|
25
|
+
if (styleRule) {
|
|
26
|
+
styleProvider(styleRule.style);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
get className() {
|
|
30
|
+
return this.selector.split('::')[0];
|
|
31
|
+
}
|
|
32
|
+
dispose() {
|
|
33
|
+
browser_1.DecorationStyle.deleteStyleRule(this.selector, this.decorationsStyleSheet);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.EditorDecorationStyle = EditorDecorationStyle;
|
|
37
|
+
//# sourceMappingURL=editor-decoration-style.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"editor-decoration-style.js","sourceRoot":"","sources":["../../../src/browser/decorations/editor-decoration-style.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;AAGhF,qDAA0D;AAE1D,MAAa,qBAAqB;IAE9B,YACa,QAAgB,EACzB,aAAmD,EACzC,qBAAoC;QAFrC,aAAQ,GAAR,QAAQ,CAAQ;QAEf,0BAAqB,GAArB,qBAAqB,CAAe;QAE9C,MAAM,SAAS,GAAG,yBAAe,CAAC,oBAAoB,CAAC,QAAQ,EAAE,qBAAqB,CAAC,CAAC;QACxF,IAAI,SAAS,EAAE,CAAC;YACZ,aAAa,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;QACnC,CAAC;IACL,CAAC;IAED,IAAI,SAAS;QACT,OAAO,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;IACxC,CAAC;IAED,OAAO;QACH,yBAAe,CAAC,eAAe,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,qBAAqB,CAAC,CAAC;IAC/E,CAAC;CAEJ;AArBD,sDAqBC"}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { Range } from '@theia/core/shared/vscode-languageserver-protocol';
|
|
2
|
+
export interface EditorDecoration {
|
|
3
|
+
/**
|
|
4
|
+
* range to which this decoration instance is applied.
|
|
5
|
+
*/
|
|
6
|
+
range: Range;
|
|
7
|
+
/**
|
|
8
|
+
* options to be applied with this decoration.
|
|
9
|
+
*/
|
|
10
|
+
options: EditorDecorationOptions;
|
|
11
|
+
}
|
|
12
|
+
export interface EditorDecorationOptions {
|
|
13
|
+
/**
|
|
14
|
+
* behavior of decorations when typing/editing near their edges.
|
|
15
|
+
*/
|
|
16
|
+
stickiness?: TrackedRangeStickiness;
|
|
17
|
+
/**
|
|
18
|
+
* CSS class name of this decoration.
|
|
19
|
+
*/
|
|
20
|
+
className?: string;
|
|
21
|
+
/**
|
|
22
|
+
* hover message for this decoration.
|
|
23
|
+
*/
|
|
24
|
+
hoverMessage?: string;
|
|
25
|
+
/**
|
|
26
|
+
* the decoration will be rendered in the glyph margin with this class name.
|
|
27
|
+
*/
|
|
28
|
+
glyphMarginClassName?: string;
|
|
29
|
+
/**
|
|
30
|
+
* hover message for the glyph margin of this decoration.
|
|
31
|
+
*/
|
|
32
|
+
glyphMarginHoverMessage?: string;
|
|
33
|
+
/**
|
|
34
|
+
* should the decoration be rendered for the whole line.
|
|
35
|
+
*/
|
|
36
|
+
isWholeLine?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* the decoration will be rendered in the lines decorations with this class name.
|
|
39
|
+
*/
|
|
40
|
+
linesDecorationsClassName?: string;
|
|
41
|
+
/**
|
|
42
|
+
* the decoration will be rendered in the margin in full width with this class name.
|
|
43
|
+
*/
|
|
44
|
+
marginClassName?: string;
|
|
45
|
+
/**
|
|
46
|
+
* the decoration will be rendered inline with this class name.
|
|
47
|
+
* to be used only to change text, otherwise use `className`.
|
|
48
|
+
*/
|
|
49
|
+
inlineClassName?: string;
|
|
50
|
+
/**
|
|
51
|
+
* the decoration will be rendered before the text with this class name.
|
|
52
|
+
*/
|
|
53
|
+
beforeContentClassName?: string;
|
|
54
|
+
/**
|
|
55
|
+
* the decoration will be rendered after the text with this class name.
|
|
56
|
+
*/
|
|
57
|
+
afterContentClassName?: string;
|
|
58
|
+
/**
|
|
59
|
+
* render this decoration in the overview ruler.
|
|
60
|
+
*/
|
|
61
|
+
overviewRuler?: DecorationOverviewRulerOptions;
|
|
62
|
+
/**
|
|
63
|
+
* If set, render this decoration in the minimap.
|
|
64
|
+
*/
|
|
65
|
+
minimap?: DecorationMinimapOptions;
|
|
66
|
+
blockClassName?: string;
|
|
67
|
+
blockPadding?: [top: number, right: number, bottom: number, left: number];
|
|
68
|
+
blockDoesNotCollapse?: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* Indicates if this block should be rendered after the last line.
|
|
71
|
+
* In this case, the range must be empty and set to the last line.
|
|
72
|
+
*/
|
|
73
|
+
blockIsAfterEnd?: boolean;
|
|
74
|
+
/**
|
|
75
|
+
* Always render the decoration (even when the range it encompasses is collapsed).
|
|
76
|
+
*/
|
|
77
|
+
showIfCollapsed?: boolean;
|
|
78
|
+
}
|
|
79
|
+
export interface DecorationOptions {
|
|
80
|
+
/**
|
|
81
|
+
* color of the decoration in the overview ruler.
|
|
82
|
+
* use `rgba` values to play well with other decorations.
|
|
83
|
+
*/
|
|
84
|
+
color: string | {
|
|
85
|
+
id: string;
|
|
86
|
+
} | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* The color to use in dark themes. Will be favored over `color` except in light themes.
|
|
89
|
+
*/
|
|
90
|
+
darkColor?: string | {
|
|
91
|
+
id: string;
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
export declare enum MinimapPosition {
|
|
95
|
+
Inline = 1,
|
|
96
|
+
Gutter = 2
|
|
97
|
+
}
|
|
98
|
+
export interface DecorationMinimapOptions extends DecorationOptions {
|
|
99
|
+
position: MinimapPosition;
|
|
100
|
+
}
|
|
101
|
+
export interface DecorationOverviewRulerOptions extends DecorationOptions {
|
|
102
|
+
/**
|
|
103
|
+
* position in the overview ruler.
|
|
104
|
+
*/
|
|
105
|
+
position: OverviewRulerLane;
|
|
106
|
+
}
|
|
107
|
+
export declare enum OverviewRulerLane {
|
|
108
|
+
Left = 1,
|
|
109
|
+
Center = 2,
|
|
110
|
+
Right = 4,
|
|
111
|
+
Full = 7
|
|
112
|
+
}
|
|
113
|
+
export declare enum TrackedRangeStickiness {
|
|
114
|
+
AlwaysGrowsWhenTypingAtEdges = 0,
|
|
115
|
+
NeverGrowsWhenTypingAtEdges = 1,
|
|
116
|
+
GrowsOnlyWhenTypingBefore = 2,
|
|
117
|
+
GrowsOnlyWhenTypingAfter = 3
|
|
118
|
+
}
|
|
119
|
+
//# sourceMappingURL=editor-decoration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"editor-decoration.d.ts","sourceRoot":"","sources":["../../../src/browser/decorations/editor-decoration.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAE,KAAK,EAAE,MAAM,mDAAmD,CAAC;AAE1E,MAAM,WAAW,gBAAgB;IAC7B;;OAEG;IACH,KAAK,EAAE,KAAK,CAAC;IACb;;OAEG;IACH,OAAO,EAAE,uBAAuB,CAAA;CACnC;AAED,MAAM,WAAW,uBAAuB;IACpC;;OAEG;IACH,UAAU,CAAC,EAAE,sBAAsB,CAAC;IACpC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;OAEG;IACH,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B;;OAEG;IACH,aAAa,CAAC,EAAE,8BAA8B,CAAC;IAC/C;;OAEG;IACH,OAAO,CAAC,EAAE,wBAAwB,CAAC;IAEnC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,YAAY,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;IAC1E,oBAAoB,CAAC,EAAE,OAAO,CAAA;IAC9B;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;CAC7B;AAED,MAAM,WAAW,iBAAiB;IAC9B;;;OAGG;IACH,KAAK,EAAE,MAAM,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,GAAG,SAAS,CAAC;IAE3C;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,CAAC;CACvC;AAED,oBAAY,eAAe;IACvB,MAAM,IAAI;IACV,MAAM,IAAI;CACb;AAED,MAAM,WAAW,wBAAyB,SAAQ,iBAAiB;IAC/D,QAAQ,EAAE,eAAe,CAAC;CAC7B;AAED,MAAM,WAAW,8BAA+B,SAAQ,iBAAiB;IACrE;;OAEG;IACH,QAAQ,EAAE,iBAAiB,CAAC;CAC/B;AAED,oBAAY,iBAAiB;IACzB,IAAI,IAAI;IACR,MAAM,IAAI;IACV,KAAK,IAAI;IACT,IAAI,IAAI;CACX;AAED,oBAAY,sBAAsB;IAC9B,4BAA4B,IAAI;IAChC,2BAA2B,IAAI;IAC/B,yBAAyB,IAAI;IAC7B,wBAAwB,IAAI;CAC/B"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2018 TypeFox and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.TrackedRangeStickiness = exports.OverviewRulerLane = exports.MinimapPosition = void 0;
|
|
19
|
+
var MinimapPosition;
|
|
20
|
+
(function (MinimapPosition) {
|
|
21
|
+
MinimapPosition[MinimapPosition["Inline"] = 1] = "Inline";
|
|
22
|
+
MinimapPosition[MinimapPosition["Gutter"] = 2] = "Gutter";
|
|
23
|
+
})(MinimapPosition || (exports.MinimapPosition = MinimapPosition = {}));
|
|
24
|
+
var OverviewRulerLane;
|
|
25
|
+
(function (OverviewRulerLane) {
|
|
26
|
+
OverviewRulerLane[OverviewRulerLane["Left"] = 1] = "Left";
|
|
27
|
+
OverviewRulerLane[OverviewRulerLane["Center"] = 2] = "Center";
|
|
28
|
+
OverviewRulerLane[OverviewRulerLane["Right"] = 4] = "Right";
|
|
29
|
+
OverviewRulerLane[OverviewRulerLane["Full"] = 7] = "Full";
|
|
30
|
+
})(OverviewRulerLane || (exports.OverviewRulerLane = OverviewRulerLane = {}));
|
|
31
|
+
var TrackedRangeStickiness;
|
|
32
|
+
(function (TrackedRangeStickiness) {
|
|
33
|
+
TrackedRangeStickiness[TrackedRangeStickiness["AlwaysGrowsWhenTypingAtEdges"] = 0] = "AlwaysGrowsWhenTypingAtEdges";
|
|
34
|
+
TrackedRangeStickiness[TrackedRangeStickiness["NeverGrowsWhenTypingAtEdges"] = 1] = "NeverGrowsWhenTypingAtEdges";
|
|
35
|
+
TrackedRangeStickiness[TrackedRangeStickiness["GrowsOnlyWhenTypingBefore"] = 2] = "GrowsOnlyWhenTypingBefore";
|
|
36
|
+
TrackedRangeStickiness[TrackedRangeStickiness["GrowsOnlyWhenTypingAfter"] = 3] = "GrowsOnlyWhenTypingAfter";
|
|
37
|
+
})(TrackedRangeStickiness || (exports.TrackedRangeStickiness = TrackedRangeStickiness = {}));
|
|
38
|
+
//# sourceMappingURL=editor-decoration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"editor-decoration.js","sourceRoot":"","sources":["../../../src/browser/decorations/editor-decoration.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;AAiGhF,IAAY,eAGX;AAHD,WAAY,eAAe;IACvB,yDAAU,CAAA;IACV,yDAAU,CAAA;AACd,CAAC,EAHW,eAAe,+BAAf,eAAe,QAG1B;AAaD,IAAY,iBAKX;AALD,WAAY,iBAAiB;IACzB,yDAAQ,CAAA;IACR,6DAAU,CAAA;IACV,2DAAS,CAAA;IACT,yDAAQ,CAAA;AACZ,CAAC,EALW,iBAAiB,iCAAjB,iBAAiB,QAK5B;AAED,IAAY,sBAKX;AALD,WAAY,sBAAsB;IAC9B,mHAAgC,CAAA;IAChC,iHAA+B,CAAA;IAC/B,6GAA6B,CAAA;IAC7B,2GAA4B,CAAA;AAChC,CAAC,EALW,sBAAsB,sCAAtB,sBAAsB,QAKjC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TextEditor } from '../editor';
|
|
2
|
+
import { EditorDecoration } from './editor-decoration';
|
|
3
|
+
export declare abstract class EditorDecorator {
|
|
4
|
+
protected readonly appliedDecorations: Map<string, string[]>;
|
|
5
|
+
protected setDecorations(editor: TextEditor, newDecorations: EditorDecoration[]): void;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=editor-decorator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"editor-decorator.d.ts","sourceRoot":"","sources":["../../../src/browser/decorations/editor-decorator.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACvC,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAEvD,8BACsB,eAAe;IAEjC,SAAS,CAAC,QAAQ,CAAC,kBAAkB,wBAA+B;IAEpE,SAAS,CAAC,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,cAAc,EAAE,gBAAgB,EAAE,GAAG,IAAI;CAUzF"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2018 TypeFox and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.EditorDecorator = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
20
|
+
const inversify_1 = require("@theia/core/shared/inversify");
|
|
21
|
+
let EditorDecorator = class EditorDecorator {
|
|
22
|
+
constructor() {
|
|
23
|
+
this.appliedDecorations = new Map();
|
|
24
|
+
}
|
|
25
|
+
setDecorations(editor, newDecorations) {
|
|
26
|
+
const uri = editor.uri.toString();
|
|
27
|
+
const oldDecorations = this.appliedDecorations.get(uri) || [];
|
|
28
|
+
if (oldDecorations.length === 0 && newDecorations.length === 0) {
|
|
29
|
+
return;
|
|
30
|
+
}
|
|
31
|
+
const decorationIds = editor.deltaDecorations({ oldDecorations, newDecorations });
|
|
32
|
+
this.appliedDecorations.set(uri, decorationIds);
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
exports.EditorDecorator = EditorDecorator;
|
|
36
|
+
exports.EditorDecorator = EditorDecorator = tslib_1.__decorate([
|
|
37
|
+
(0, inversify_1.injectable)()
|
|
38
|
+
], EditorDecorator);
|
|
39
|
+
//# sourceMappingURL=editor-decorator.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"editor-decorator.js","sourceRoot":"","sources":["../../../src/browser/decorations/editor-decorator.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,4DAA0D;AAKnD,IAAe,eAAe,GAA9B,MAAe,eAAe;IAA9B;QAEgB,uBAAkB,GAAG,IAAI,GAAG,EAAoB,CAAC;IAYxE,CAAC;IAVa,cAAc,CAAC,MAAkB,EAAE,cAAkC;QAC3E,MAAM,GAAG,GAAG,MAAM,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAClC,MAAM,cAAc,GAAG,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;QAC9D,IAAI,cAAc,CAAC,MAAM,KAAK,CAAC,IAAI,cAAc,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC7D,OAAO;QACX,CAAC;QACD,MAAM,aAAa,GAAG,MAAM,CAAC,gBAAgB,CAAC,EAAE,cAAc,EAAE,cAAc,EAAE,CAAC,CAAC;QAClF,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC,GAAG,EAAE,aAAa,CAAC,CAAC;IACpD,CAAC;CAEJ,CAAA;AAdqB,0CAAe;0BAAf,eAAe;IADpC,IAAA,sBAAU,GAAE;GACS,eAAe,CAcpC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/browser/decorations/index.ts"],"names":[],"mappings":"AAgBA,cAAc,qBAAqB,CAAC;AACpC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2018 TypeFox and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
const tslib_1 = require("tslib");
|
|
19
|
+
tslib_1.__exportStar(require("./editor-decoration"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./editor-decoration-style"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./editor-decorator"), exports);
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/browser/decorations/index.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;AAEhF,8DAAoC;AACpC,oEAA0C;AAC1C,6DAAmC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TextEditor } from './editor';
|
|
2
|
+
export interface DiffNavigator {
|
|
3
|
+
hasNext(): boolean;
|
|
4
|
+
hasPrevious(): boolean;
|
|
5
|
+
next(): void;
|
|
6
|
+
previous(): void;
|
|
7
|
+
}
|
|
8
|
+
export declare const DiffNavigatorProvider: unique symbol;
|
|
9
|
+
export type DiffNavigatorProvider = (editor: TextEditor) => DiffNavigator;
|
|
10
|
+
//# sourceMappingURL=diff-navigator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"diff-navigator.d.ts","sourceRoot":"","sources":["../../src/browser/diff-navigator.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAEtC,MAAM,WAAW,aAAa;IAC1B,OAAO,IAAI,OAAO,CAAC;IACnB,WAAW,IAAI,OAAO,CAAC;IACvB,IAAI,IAAI,IAAI,CAAC;IACb,QAAQ,IAAI,IAAI,CAAC;CACpB;AAED,eAAO,MAAM,qBAAqB,eAAkC,CAAC;AACrE,MAAM,MAAM,qBAAqB,GAAG,CAAC,MAAM,EAAE,UAAU,KAAK,aAAa,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2018 TypeFox and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.DiffNavigatorProvider = void 0;
|
|
19
|
+
exports.DiffNavigatorProvider = Symbol('DiffNavigatorProvider');
|
|
20
|
+
//# sourceMappingURL=diff-navigator.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"diff-navigator.js","sourceRoot":"","sources":["../../src/browser/diff-navigator.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;AAWnE,QAAA,qBAAqB,GAAG,MAAM,CAAC,uBAAuB,CAAC,CAAC"}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { LabelProvider, ApplicationShell, QuickInputService, SaveableService } from '@theia/core/lib/browser';
|
|
2
|
+
import { EditorManager } from './editor-manager';
|
|
3
|
+
import { CommandContribution, CommandRegistry, Command, ResourceProvider, MessageService } from '@theia/core';
|
|
4
|
+
import { LanguageService } from '@theia/core/lib/browser/language-service';
|
|
5
|
+
import { EditorLanguageQuickPickService } from './editor-language-quick-pick-service';
|
|
6
|
+
import { PreferenceService } from '@theia/core/lib/common/preferences';
|
|
7
|
+
export declare namespace EditorCommands {
|
|
8
|
+
const GOTO_LINE_COLUMN: Command;
|
|
9
|
+
/**
|
|
10
|
+
* Show editor references
|
|
11
|
+
*/
|
|
12
|
+
const SHOW_REFERENCES: Command;
|
|
13
|
+
/**
|
|
14
|
+
* Change indentation configuration (i.e., indent using tabs / spaces, and how many spaces per tab)
|
|
15
|
+
*/
|
|
16
|
+
const CONFIG_INDENTATION: Command;
|
|
17
|
+
const CONFIG_EOL: Command;
|
|
18
|
+
const INDENT_USING_SPACES: Command;
|
|
19
|
+
const INDENT_USING_TABS: Command;
|
|
20
|
+
const CHANGE_LANGUAGE: Command;
|
|
21
|
+
const CHANGE_ENCODING: Command;
|
|
22
|
+
const REVERT_EDITOR: Command;
|
|
23
|
+
const REVERT_AND_CLOSE: Command;
|
|
24
|
+
/**
|
|
25
|
+
* Command for going back to the last editor navigation location.
|
|
26
|
+
*/
|
|
27
|
+
const GO_BACK: Command;
|
|
28
|
+
/**
|
|
29
|
+
* Command for going to the forthcoming editor navigation location.
|
|
30
|
+
*/
|
|
31
|
+
const GO_FORWARD: Command;
|
|
32
|
+
/**
|
|
33
|
+
* Command that reveals the last text edit location, if any.
|
|
34
|
+
*/
|
|
35
|
+
const GO_LAST_EDIT: Command;
|
|
36
|
+
/**
|
|
37
|
+
* Command that clears the editor navigation history.
|
|
38
|
+
*/
|
|
39
|
+
const CLEAR_EDITOR_HISTORY: Command;
|
|
40
|
+
/**
|
|
41
|
+
* Command that displays all editors that are currently opened.
|
|
42
|
+
*/
|
|
43
|
+
const SHOW_ALL_OPENED_EDITORS: Command;
|
|
44
|
+
/**
|
|
45
|
+
* Command that toggles the minimap.
|
|
46
|
+
*/
|
|
47
|
+
const TOGGLE_MINIMAP: Command;
|
|
48
|
+
/**
|
|
49
|
+
* Command that toggles the rendering of whitespace characters in the editor.
|
|
50
|
+
*/
|
|
51
|
+
const TOGGLE_RENDER_WHITESPACE: Command;
|
|
52
|
+
/**
|
|
53
|
+
* Command that toggles the word wrap.
|
|
54
|
+
*/
|
|
55
|
+
const TOGGLE_WORD_WRAP: Command;
|
|
56
|
+
/**
|
|
57
|
+
* Command that toggles sticky scroll.
|
|
58
|
+
*/
|
|
59
|
+
const TOGGLE_STICKY_SCROLL: Command;
|
|
60
|
+
/**
|
|
61
|
+
* Command that re-opens the last closed editor.
|
|
62
|
+
*/
|
|
63
|
+
const REOPEN_CLOSED_EDITOR: Command;
|
|
64
|
+
/**
|
|
65
|
+
* Opens a second instance of the current editor, splitting the view in the direction specified.
|
|
66
|
+
*/
|
|
67
|
+
const SPLIT_EDITOR_RIGHT: Command;
|
|
68
|
+
const SPLIT_EDITOR_DOWN: Command;
|
|
69
|
+
const SPLIT_EDITOR_UP: Command;
|
|
70
|
+
const SPLIT_EDITOR_LEFT: Command;
|
|
71
|
+
/**
|
|
72
|
+
* Default horizontal split: right.
|
|
73
|
+
*/
|
|
74
|
+
const SPLIT_EDITOR_HORIZONTAL: Command;
|
|
75
|
+
/**
|
|
76
|
+
* Default vertical split: down.
|
|
77
|
+
*/
|
|
78
|
+
const SPLIT_EDITOR_VERTICAL: Command;
|
|
79
|
+
}
|
|
80
|
+
export declare class EditorCommandContribution implements CommandContribution {
|
|
81
|
+
static readonly AUTOSAVE_PREFERENCE: string;
|
|
82
|
+
static readonly AUTOSAVE_DELAY_PREFERENCE: string;
|
|
83
|
+
protected readonly shell: ApplicationShell;
|
|
84
|
+
protected readonly preferencesService: PreferenceService;
|
|
85
|
+
protected readonly saveResourceService: SaveableService;
|
|
86
|
+
protected readonly quickInputService: QuickInputService;
|
|
87
|
+
protected readonly messageService: MessageService;
|
|
88
|
+
protected readonly labelProvider: LabelProvider;
|
|
89
|
+
protected readonly languages: LanguageService;
|
|
90
|
+
protected readonly editorManager: EditorManager;
|
|
91
|
+
protected readonly resourceProvider: ResourceProvider;
|
|
92
|
+
protected readonly codeLanguageQuickPickService: EditorLanguageQuickPickService;
|
|
93
|
+
protected init(): void;
|
|
94
|
+
registerCommands(registry: CommandRegistry): void;
|
|
95
|
+
protected canConfigureLanguage(): boolean;
|
|
96
|
+
protected configureLanguage(): Promise<void>;
|
|
97
|
+
protected canConfigureEncoding(): boolean;
|
|
98
|
+
protected configureEncoding(): Promise<void>;
|
|
99
|
+
protected isAutoSaveOn(): boolean;
|
|
100
|
+
protected toggleAutoSave(): Promise<void>;
|
|
101
|
+
}
|
|
102
|
+
//# sourceMappingURL=editor-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"editor-command.d.ts","sourceRoot":"","sources":["../../src/browser/editor-command.ts"],"names":[],"mappings":"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"}
|