ide-assi 0.409.0 → 0.411.0
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/bundle.cjs.js
CHANGED
|
@@ -223536,13 +223536,6 @@ const defaultKeymap = /*@__PURE__*/[
|
|
|
223536
223536
|
{ key: "Alt-A", run: toggleBlockComment },
|
|
223537
223537
|
{ key: "Ctrl-m", mac: "Shift-Alt-m", run: toggleTabFocusMode },
|
|
223538
223538
|
].concat(standardKeymap);
|
|
223539
|
-
/**
|
|
223540
|
-
A binding that binds Tab to [`indentMore`](https://codemirror.net/6/docs/ref/#commands.indentMore) and
|
|
223541
|
-
Shift-Tab to [`indentLess`](https://codemirror.net/6/docs/ref/#commands.indentLess).
|
|
223542
|
-
Please see the [Tab example](../../examples/tab/) before using
|
|
223543
|
-
this.
|
|
223544
|
-
*/
|
|
223545
|
-
const indentWithTab = { key: "Tab", run: indentMore, shift: indentLess };
|
|
223546
223539
|
|
|
223547
223540
|
const basicNormalize = typeof String.prototype.normalize == "function"
|
|
223548
223541
|
? x => x.normalize("NFKD") : x => x;
|
|
@@ -234922,7 +234915,7 @@ class IdeDiff extends HTMLElement {
|
|
|
234922
234915
|
...historyKeymap,
|
|
234923
234916
|
...lintKeymap,
|
|
234924
234917
|
...completionKeymap,
|
|
234925
|
-
indentWithTab(), // ⭐️ 함수 호출
|
|
234918
|
+
//indentWithTab(), // ⭐️ 함수 호출
|
|
234926
234919
|
selectAll() // ⭐️ 함수 호출
|
|
234927
234920
|
]),
|
|
234928
234921
|
syntaxHighlighting(defaultHighlightStyle), // { fallback: true } 제거 확인
|
package/dist/bundle.esm.js
CHANGED
|
@@ -223532,13 +223532,6 @@ const defaultKeymap = /*@__PURE__*/[
|
|
|
223532
223532
|
{ key: "Alt-A", run: toggleBlockComment },
|
|
223533
223533
|
{ key: "Ctrl-m", mac: "Shift-Alt-m", run: toggleTabFocusMode },
|
|
223534
223534
|
].concat(standardKeymap);
|
|
223535
|
-
/**
|
|
223536
|
-
A binding that binds Tab to [`indentMore`](https://codemirror.net/6/docs/ref/#commands.indentMore) and
|
|
223537
|
-
Shift-Tab to [`indentLess`](https://codemirror.net/6/docs/ref/#commands.indentLess).
|
|
223538
|
-
Please see the [Tab example](../../examples/tab/) before using
|
|
223539
|
-
this.
|
|
223540
|
-
*/
|
|
223541
|
-
const indentWithTab = { key: "Tab", run: indentMore, shift: indentLess };
|
|
223542
223535
|
|
|
223543
223536
|
const basicNormalize = typeof String.prototype.normalize == "function"
|
|
223544
223537
|
? x => x.normalize("NFKD") : x => x;
|
|
@@ -234918,7 +234911,7 @@ class IdeDiff extends HTMLElement {
|
|
|
234918
234911
|
...historyKeymap,
|
|
234919
234912
|
...lintKeymap,
|
|
234920
234913
|
...completionKeymap,
|
|
234921
|
-
indentWithTab(), // ⭐️ 함수 호출
|
|
234914
|
+
//indentWithTab(), // ⭐️ 함수 호출
|
|
234922
234915
|
selectAll() // ⭐️ 함수 호출
|
|
234923
234916
|
]),
|
|
234924
234917
|
syntaxHighlighting(defaultHighlightStyle), // { fallback: true } 제거 확인
|
|
@@ -148,7 +148,7 @@ export class IdeDiff extends HTMLElement {
|
|
|
148
148
|
...historyKeymap,
|
|
149
149
|
...lintKeymap,
|
|
150
150
|
...completionKeymap,
|
|
151
|
-
indentWithTab(), // ⭐️ 함수 호출
|
|
151
|
+
//indentWithTab(), // ⭐️ 함수 호출
|
|
152
152
|
selectAll() // ⭐️ 함수 호출
|
|
153
153
|
]),
|
|
154
154
|
syntaxHighlighting(defaultHighlightStyle), // { fallback: true } 제거 확인
|
package/package.json
CHANGED
|
@@ -148,7 +148,7 @@ export class IdeDiff extends HTMLElement {
|
|
|
148
148
|
...historyKeymap,
|
|
149
149
|
...lintKeymap,
|
|
150
150
|
...completionKeymap,
|
|
151
|
-
indentWithTab(), // ⭐️ 함수 호출
|
|
151
|
+
//indentWithTab(), // ⭐️ 함수 호출
|
|
152
152
|
selectAll() // ⭐️ 함수 호출
|
|
153
153
|
]),
|
|
154
154
|
syntaxHighlighting(defaultHighlightStyle), // { fallback: true } 제거 확인
|