lean4monaco 1.0.46 → 1.1.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/README.md +75 -0
- package/dist/JuliaMono-Regular.ttf +0 -0
- package/dist/css/custom.css +7 -1
- package/dist/infowebview.d.ts +3 -4
- package/dist/infowebview.js +4 -4
- package/dist/lean4-infoview/codicon.ttf +0 -0
- package/dist/lean4-infoview/esm-shims/react-dom.d.ts +5 -0
- package/dist/lean4-infoview/esm-shims/react-jsx-runtime.d.ts +5 -0
- package/dist/lean4-infoview/esm-shims/react.d.ts +5 -0
- package/dist/lean4-infoview/index.css +4161 -0
- package/dist/lean4-infoview/index.d.ts +16 -0
- package/dist/lean4-infoview/index.development.js +37312 -0
- package/dist/lean4-infoview/index.production.min.js +1528 -0
- package/dist/lean4-infoview/infoview/collapsing.d.ts +12 -0
- package/dist/lean4-infoview/infoview/contexts.d.ts +10 -0
- package/dist/lean4-infoview/infoview/editorConnection.d.ts +22 -0
- package/dist/lean4-infoview/infoview/errors.d.ts +14 -0
- package/dist/lean4-infoview/infoview/event.d.ts +33 -0
- package/dist/lean4-infoview/infoview/goalLocation.d.ts +61 -0
- package/dist/lean4-infoview/infoview/goals.d.ts +46 -0
- package/dist/lean4-infoview/infoview/info.d.ts +18 -0
- package/dist/lean4-infoview/infoview/infos.d.ts +2 -0
- package/dist/lean4-infoview/infoview/interactiveCode.d.ts +19 -0
- package/dist/lean4-infoview/infoview/main.d.ts +13 -0
- package/dist/lean4-infoview/infoview/messages.d.ts +19 -0
- package/dist/lean4-infoview/infoview/rpcSessions.d.ts +11 -0
- package/dist/lean4-infoview/infoview/serverVersion.d.ts +10 -0
- package/dist/lean4-infoview/infoview/tooltips.d.ts +32 -0
- package/dist/lean4-infoview/infoview/traceExplorer.d.ts +11 -0
- package/dist/lean4-infoview/infoview/userWidget.d.ts +39 -0
- package/dist/lean4-infoview/infoview/util.d.ts +144 -0
- package/dist/lean4-infoview/loader.d.ts +20 -0
- package/dist/lean4-infoview/loader.development.js +1006 -0
- package/dist/lean4-infoview/loader.production.min.js +1 -0
- package/dist/lean4-infoview/react-dom.development.js +30537 -0
- package/dist/lean4-infoview/react-dom.production.min.js +21 -0
- package/dist/lean4-infoview/react-jsx-runtime.development.js +1362 -0
- package/dist/lean4-infoview/react-jsx-runtime.production.min.js +1 -0
- package/dist/lean4-infoview/react.development.js +2823 -0
- package/dist/lean4-infoview/react.production.min.js +1 -0
- package/dist/leanmonaco.js +5 -4
- package/dist/monaco-lean4/vscode-lean4/package.json +944 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.d.ts +9 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.js +20 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationHoverProvider.d.ts +12 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationHoverProvider.js +40 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.d.ts +20 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.js +79 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationConfig.d.ts +13 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationConfig.js +29 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.d.ts +28 -0
- package/dist/monaco-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.js +124 -0
- package/dist/monaco-lean4/vscode-lean4/src/config.d.ts +33 -0
- package/dist/monaco-lean4/vscode-lean4/src/config.js +119 -0
- package/dist/monaco-lean4/vscode-lean4/src/diagnostics/setupNotifs.d.ts +27 -0
- package/dist/monaco-lean4/vscode-lean4/src/diagnostics/setupNotifs.js +133 -0
- package/dist/monaco-lean4/vscode-lean4/src/infoview.d.ts +69 -0
- package/dist/monaco-lean4/vscode-lean4/src/infoview.js +711 -0
- package/dist/monaco-lean4/vscode-lean4/src/leanclient.d.ts +67 -0
- package/dist/monaco-lean4/vscode-lean4/src/leanclient.js +443 -0
- package/dist/monaco-lean4/vscode-lean4/src/rpc.d.ts +16 -0
- package/dist/monaco-lean4/vscode-lean4/src/rpc.js +102 -0
- package/dist/monaco-lean4/vscode-lean4/src/taskgutter.d.ts +11 -0
- package/dist/monaco-lean4/vscode-lean4/src/taskgutter.js +130 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/batch.d.ts +37 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/batch.js +203 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/clientProvider.d.ts +41 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/clientProvider.js +205 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/converters.d.ts +16 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/converters.js +129 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/elan.d.ts +3 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/elan.js +4 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/envPath.d.ts +21 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/envPath.js +53 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/exturi.d.ts +35 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/exturi.js +136 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/fsHelper.d.ts +17 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/fsHelper.js +36 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/leanInstaller.d.ts +37 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/leanInstaller.js +210 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/logger.d.ts +7 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/logger.js +20 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/notifs.d.ts +24 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/notifs.js +110 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/projectInfo.d.ts +9 -0
- package/dist/monaco-lean4/vscode-lean4/src/utils/projectInfo.js +125 -0
- package/dist/monacoleanclient.d.ts +1 -2
- package/dist/monacoleanclient.js +3 -3
- package/dist/vscode-lean4/lean4-infoview/package.json +25 -23
- package/dist/vscode-lean4/lean4-infoview/src/infoview/highlightjs.css +210 -0
- package/dist/vscode-lean4/lean4-infoview/tsconfig.json +6 -2
- package/dist/vscode-lean4/lean4-infoview-api/package.json +1 -1
- package/dist/vscode-lean4/lean4-unicode-input/package.json +1 -1
- package/dist/vscode-lean4/lean4-unicode-input/src/abbreviations.json +12 -12
- package/dist/vscode-lean4/lean4-unicode-input-component/package.json +2 -2
- package/dist/vscode-lean4/package-lock.json +6129 -3245
- package/dist/vscode-lean4/vscode-lean4/language-configuration.json +1 -1
- package/dist/vscode-lean4/vscode-lean4/loogleview/static/index.css +19 -16
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-dark.svg +91 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-dark.svg +114 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-light.svg +114 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-passthrough-dark.svg +109 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-i-passthrough-light.svg +109 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-init-dark.svg +100 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-init-light.svg +100 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-dark.svg +123 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-light.svg +123 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-passthrough-dark.svg +109 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-l-passthrough-light.svg +109 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-light.svg +91 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-dark.svg +123 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-light.svg +123 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-passthrough-dark.svg +118 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/error-t-passthrough-light.svg +118 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-dark.svg +138 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-i-passthrough-dark.svg +160 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-i-passthrough-light.svg +160 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-l-passthrough-dark.svg +158 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-l-passthrough-light.svg +158 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-light.svg +138 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-t-passthrough-dark.svg +169 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-checkmark-t-passthrough-light.svg +169 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-dark.svg +147 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-i-passthrough-dark.svg +170 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-i-passthrough-light.svg +170 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-l-passthrough-dark.svg +167 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-l-passthrough-light.svg +167 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-light.svg +147 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-t-passthrough-dark.svg +179 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-circled-checkmark-t-passthrough-light.svg +179 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-dark.svg +165 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-i-passthrough-dark.svg +187 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-i-passthrough-light.svg +187 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-l-passthrough-dark.svg +185 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-l-passthrough-light.svg +185 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-light.svg +165 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-t-passthrough-dark.svg +196 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-octopus-t-passthrough-light.svg +196 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-dark.svg +184 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-i-passthrough-dark.svg +206 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-i-passthrough-light.svg +206 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-l-passthrough-dark.svg +204 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-l-passthrough-light.svg +204 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-light.svg +184 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-t-passthrough-dark.svg +215 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/goals-accomplished-tada-t-passthrough-light.svg +215 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-dark.svg +132 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-i-passthrough-dark.svg +154 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-i-passthrough-light.svg +154 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-l-passthrough-dark.svg +152 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-l-passthrough-light.svg +152 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-light.svg +132 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-t-passthrough-dark.svg +163 -0
- package/dist/vscode-lean4/vscode-lean4/media/diagnostic-gutter-icons/warning-t-passthrough-light.svg +163 -0
- package/dist/vscode-lean4/vscode-lean4/moogleview/static/index.css +198 -0
- package/dist/vscode-lean4/vscode-lean4/moogleview/tsconfig.json +10 -0
- package/dist/vscode-lean4/vscode-lean4/package.json +638 -18
- package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.d.ts +2 -2
- package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationFeature.js +2 -2
- package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.d.ts +2 -3
- package/dist/vscode-lean4/vscode-lean4/src/abbreviation/AbbreviationRewriterFeature.js +3 -5
- package/dist/vscode-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.d.ts +1 -2
- package/dist/vscode-lean4/vscode-lean4/src/abbreviation/VSCodeAbbreviationRewriter.js +4 -8
- package/dist/vscode-lean4/vscode-lean4/src/config.d.ts +14 -1
- package/dist/vscode-lean4/vscode-lean4/src/config.js +56 -5
- package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnoser.d.ts +36 -5
- package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnoser.js +59 -23
- package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnostics.d.ts +22 -17
- package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupDiagnostics.js +182 -119
- package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupNotifs.d.ts +33 -20
- package/dist/vscode-lean4/vscode-lean4/src/diagnostics/setupNotifs.js +235 -89
- package/dist/vscode-lean4/vscode-lean4/src/infoview.d.ts +7 -18
- package/dist/vscode-lean4/vscode-lean4/src/infoview.js +217 -102
- package/dist/vscode-lean4/vscode-lean4/src/leanclient.d.ts +12 -7
- package/dist/vscode-lean4/vscode-lean4/src/leanclient.js +187 -64
- package/dist/vscode-lean4/vscode-lean4/src/taskgutter.d.ts +35 -3
- package/dist/vscode-lean4/vscode-lean4/src/taskgutter.js +533 -93
- package/dist/vscode-lean4/vscode-lean4/src/utils/batch.d.ts +12 -4
- package/dist/vscode-lean4/vscode-lean4/src/utils/batch.js +78 -72
- package/dist/vscode-lean4/vscode-lean4/src/utils/clientProvider.d.ts +9 -9
- package/dist/vscode-lean4/vscode-lean4/src/utils/clientProvider.js +121 -77
- package/dist/vscode-lean4/vscode-lean4/src/utils/converters.d.ts +15 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/converters.js +9 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/elan.d.ts +179 -1
- package/dist/vscode-lean4/vscode-lean4/src/utils/elan.js +422 -3
- package/dist/vscode-lean4/vscode-lean4/src/utils/exturi.d.ts +3 -1
- package/dist/vscode-lean4/vscode-lean4/src/utils/exturi.js +11 -11
- package/dist/vscode-lean4/vscode-lean4/src/utils/groupBy.d.ts +2 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/groupBy.js +17 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/internalErrors.d.ts +2 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/internalErrors.js +35 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/leanCmdRunner.d.ts +34 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/leanCmdRunner.js +249 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/leanEditorProvider.d.ts +83 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/leanEditorProvider.js +323 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/leanInstaller.d.ts +41 -12
- package/dist/vscode-lean4/vscode-lean4/src/utils/leanInstaller.js +245 -128
- package/dist/vscode-lean4/vscode-lean4/src/utils/notifs.d.ts +27 -22
- package/dist/vscode-lean4/vscode-lean4/src/utils/notifs.js +177 -82
- package/dist/vscode-lean4/vscode-lean4/src/utils/projectInfo.d.ts +11 -4
- package/dist/vscode-lean4/vscode-lean4/src/utils/projectInfo.js +18 -16
- package/dist/vscode-lean4/vscode-lean4/src/utils/semverRegex.d.ts +1 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/semverRegex.js +2 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/viewColumn.d.ts +3 -0
- package/dist/vscode-lean4/vscode-lean4/src/utils/viewColumn.js +22 -0
- package/dist/vscode-lean4/vscode-lean4/tsconfig.json +2 -1
- package/dist/vscode-lean4/vscode-lean4/webview/tsconfig.json +3 -1
- package/dist/vscode.css +7 -0
- package/package.json +7 -5
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
/*
|
|
2
|
+
This file contains syntax highlighting themes for highlight.js,
|
|
3
|
+
taken from https://unpkg.com/browse/@highlightjs/cdn-assets@11.10.0/styles/github.css (light)
|
|
4
|
+
and https://unpkg.com/browse/@highlightjs/cdn-assets@11.10.0/styles/github-dark.css (dark)
|
|
5
|
+
|
|
6
|
+
Unfortunately there is no way to retrieve theme colors from VSCode:
|
|
7
|
+
https://github.com/Microsoft/vscode/issues/32813
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
pre code.hljs {
|
|
11
|
+
display: block;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/*!
|
|
15
|
+
Theme: GitHub
|
|
16
|
+
Description: Light theme as seen on github.com
|
|
17
|
+
Author: github.com
|
|
18
|
+
Maintainer: @Hirse
|
|
19
|
+
Updated: 2021-05-15
|
|
20
|
+
|
|
21
|
+
Outdated base version: https://github.com/primer/github-syntax-light
|
|
22
|
+
Current colors taken from GitHub's CSS
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
.hljs-doctag,
|
|
26
|
+
.hljs-keyword,
|
|
27
|
+
.hljs-meta .hljs-keyword,
|
|
28
|
+
.hljs-template-tag,
|
|
29
|
+
.hljs-template-variable,
|
|
30
|
+
.hljs-type,
|
|
31
|
+
.hljs-variable.language_ {
|
|
32
|
+
/* prettylights-syntax-keyword */
|
|
33
|
+
color: #d73a49;
|
|
34
|
+
}
|
|
35
|
+
.hljs-title,
|
|
36
|
+
.hljs-title.class_,
|
|
37
|
+
.hljs-title.class_.inherited__,
|
|
38
|
+
.hljs-title.function_ {
|
|
39
|
+
/* prettylights-syntax-entity */
|
|
40
|
+
color: #6f42c1;
|
|
41
|
+
}
|
|
42
|
+
.hljs-attr,
|
|
43
|
+
.hljs-attribute,
|
|
44
|
+
.hljs-literal,
|
|
45
|
+
.hljs-meta,
|
|
46
|
+
.hljs-number,
|
|
47
|
+
.hljs-operator,
|
|
48
|
+
.hljs-variable,
|
|
49
|
+
.hljs-selector-attr,
|
|
50
|
+
.hljs-selector-class,
|
|
51
|
+
.hljs-selector-id {
|
|
52
|
+
/* prettylights-syntax-constant */
|
|
53
|
+
color: #005cc5;
|
|
54
|
+
}
|
|
55
|
+
.hljs-regexp,
|
|
56
|
+
.hljs-string,
|
|
57
|
+
.hljs-meta .hljs-string {
|
|
58
|
+
/* prettylights-syntax-string */
|
|
59
|
+
color: #032f62;
|
|
60
|
+
}
|
|
61
|
+
.hljs-built_in,
|
|
62
|
+
.hljs-symbol {
|
|
63
|
+
/* prettylights-syntax-variable */
|
|
64
|
+
color: #e36209;
|
|
65
|
+
}
|
|
66
|
+
.hljs-comment,
|
|
67
|
+
.hljs-code,
|
|
68
|
+
.hljs-formula {
|
|
69
|
+
/* prettylights-syntax-comment */
|
|
70
|
+
color: #6a737d;
|
|
71
|
+
}
|
|
72
|
+
.hljs-name,
|
|
73
|
+
.hljs-quote,
|
|
74
|
+
.hljs-selector-tag,
|
|
75
|
+
.hljs-selector-pseudo {
|
|
76
|
+
/* prettylights-syntax-entity-tag */
|
|
77
|
+
color: #22863a;
|
|
78
|
+
}
|
|
79
|
+
.hljs-subst {
|
|
80
|
+
/* prettylights-syntax-storage-modifier-import */
|
|
81
|
+
color: #24292e;
|
|
82
|
+
}
|
|
83
|
+
.hljs-section {
|
|
84
|
+
/* prettylights-syntax-markup-heading */
|
|
85
|
+
color: #005cc5;
|
|
86
|
+
font-weight: bold;
|
|
87
|
+
}
|
|
88
|
+
.hljs-bullet {
|
|
89
|
+
/* prettylights-syntax-markup-list */
|
|
90
|
+
color: #735c0f;
|
|
91
|
+
}
|
|
92
|
+
.hljs-emphasis {
|
|
93
|
+
/* prettylights-syntax-markup-italic */
|
|
94
|
+
color: #24292e;
|
|
95
|
+
font-style: italic;
|
|
96
|
+
}
|
|
97
|
+
.hljs-strong {
|
|
98
|
+
/* prettylights-syntax-markup-bold */
|
|
99
|
+
color: #24292e;
|
|
100
|
+
font-weight: bold;
|
|
101
|
+
}
|
|
102
|
+
.hljs-addition {
|
|
103
|
+
/* prettylights-syntax-markup-inserted */
|
|
104
|
+
color: #22863a;
|
|
105
|
+
background-color: #f0fff4;
|
|
106
|
+
}
|
|
107
|
+
.hljs-deletion {
|
|
108
|
+
/* prettylights-syntax-markup-deleted */
|
|
109
|
+
color: #b31d28;
|
|
110
|
+
background-color: #ffeef0;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/*!
|
|
114
|
+
Theme: GitHub Dark
|
|
115
|
+
Description: Dark theme as seen on github.com
|
|
116
|
+
Author: github.com
|
|
117
|
+
Maintainer: @Hirse
|
|
118
|
+
Updated: 2021-05-15
|
|
119
|
+
|
|
120
|
+
Outdated base version: https://github.com/primer/github-syntax-dark
|
|
121
|
+
Current colors taken from GitHub's CSS
|
|
122
|
+
*/
|
|
123
|
+
|
|
124
|
+
.vscode-dark .hljs-doctag,
|
|
125
|
+
.vscode-dark .hljs-keyword,
|
|
126
|
+
.vscode-dark .hljs-meta .hljs-keyword,
|
|
127
|
+
.vscode-dark .hljs-template-tag,
|
|
128
|
+
.vscode-dark .hljs-template-variable,
|
|
129
|
+
.vscode-dark .hljs-type,
|
|
130
|
+
.vscode-dark .hljs-variable.language_ {
|
|
131
|
+
/* prettylights-syntax-keyword */
|
|
132
|
+
color: #ff7b72;
|
|
133
|
+
}
|
|
134
|
+
.vscode-dark .hljs-title,
|
|
135
|
+
.vscode-dark .hljs-title.class_,
|
|
136
|
+
.vscode-dark .hljs-title.class_.inherited__,
|
|
137
|
+
.vscode-dark .hljs-title.function_ {
|
|
138
|
+
/* prettylights-syntax-entity */
|
|
139
|
+
color: #d2a8ff;
|
|
140
|
+
}
|
|
141
|
+
.vscode-dark .hljs-attr,
|
|
142
|
+
.vscode-dark .hljs-attribute,
|
|
143
|
+
.vscode-dark .hljs-literal,
|
|
144
|
+
.vscode-dark .hljs-meta,
|
|
145
|
+
.vscode-dark .hljs-number,
|
|
146
|
+
.vscode-dark .hljs-operator,
|
|
147
|
+
.vscode-dark .hljs-variable,
|
|
148
|
+
.vscode-dark .hljs-selector-attr,
|
|
149
|
+
.vscode-dark .hljs-selector-class,
|
|
150
|
+
.vscode-dark .hljs-selector-id {
|
|
151
|
+
/* prettylights-syntax-constant */
|
|
152
|
+
color: #79c0ff;
|
|
153
|
+
}
|
|
154
|
+
.vscode-dark .hljs-regexp,
|
|
155
|
+
.vscode-dark .hljs-string,
|
|
156
|
+
.vscode-dark .hljs-meta .hljs-string {
|
|
157
|
+
/* prettylights-syntax-string */
|
|
158
|
+
color: #a5d6ff;
|
|
159
|
+
}
|
|
160
|
+
.vscode-dark .hljs-built_in,
|
|
161
|
+
.vscode-dark .hljs-symbol {
|
|
162
|
+
/* prettylights-syntax-variable */
|
|
163
|
+
color: #ffa657;
|
|
164
|
+
}
|
|
165
|
+
.vscode-dark .hljs-comment,
|
|
166
|
+
.vscode-dark .hljs-code,
|
|
167
|
+
.vscode-dark .hljs-formula {
|
|
168
|
+
/* prettylights-syntax-comment */
|
|
169
|
+
color: #8b949e;
|
|
170
|
+
}
|
|
171
|
+
.vscode-dark .hljs-name,
|
|
172
|
+
.vscode-dark .hljs-quote,
|
|
173
|
+
.vscode-dark .hljs-selector-tag,
|
|
174
|
+
.vscode-dark .hljs-selector-pseudo {
|
|
175
|
+
/* prettylights-syntax-entity-tag */
|
|
176
|
+
color: #7ee787;
|
|
177
|
+
}
|
|
178
|
+
.vscode-dark .hljs-subst {
|
|
179
|
+
/* prettylights-syntax-storage-modifier-import */
|
|
180
|
+
color: #c9d1d9;
|
|
181
|
+
}
|
|
182
|
+
.vscode-dark .hljs-section {
|
|
183
|
+
/* prettylights-syntax-markup-heading */
|
|
184
|
+
color: #1f6feb;
|
|
185
|
+
font-weight: bold;
|
|
186
|
+
}
|
|
187
|
+
.vscode-dark .hljs-bullet {
|
|
188
|
+
/* prettylights-syntax-markup-list */
|
|
189
|
+
color: #f2cc60;
|
|
190
|
+
}
|
|
191
|
+
.vscode-dark .hljs-emphasis {
|
|
192
|
+
/* prettylights-syntax-markup-italic */
|
|
193
|
+
color: #c9d1d9;
|
|
194
|
+
font-style: italic;
|
|
195
|
+
}
|
|
196
|
+
.vscode-dark .hljs-strong {
|
|
197
|
+
/* prettylights-syntax-markup-bold */
|
|
198
|
+
color: #c9d1d9;
|
|
199
|
+
font-weight: bold;
|
|
200
|
+
}
|
|
201
|
+
.vscode-dark .hljs-addition {
|
|
202
|
+
/* prettylights-syntax-markup-inserted */
|
|
203
|
+
color: #aff5b4;
|
|
204
|
+
background-color: #033a16;
|
|
205
|
+
}
|
|
206
|
+
.vscode-dark .hljs-deletion {
|
|
207
|
+
/* prettylights-syntax-markup-deleted */
|
|
208
|
+
color: #ffdcd7;
|
|
209
|
+
background-color: #67060c;
|
|
210
|
+
}
|
|
@@ -10,13 +10,17 @@
|
|
|
10
10
|
|
|
11
11
|
/* Modules */
|
|
12
12
|
"module": "esnext",
|
|
13
|
-
"moduleResolution": "
|
|
13
|
+
"moduleResolution": "bundler",
|
|
14
14
|
|
|
15
|
-
/* Emit */
|
|
15
|
+
/* Emit code */
|
|
16
16
|
"sourceMap": true,
|
|
17
17
|
"rootDir": "src",
|
|
18
18
|
"outDir": "dist",
|
|
19
19
|
|
|
20
|
+
/* Emit declarations */
|
|
21
|
+
"declaration": true,
|
|
22
|
+
"declarationDir": "dist",
|
|
23
|
+
|
|
20
24
|
/* Interop Constraints */
|
|
21
25
|
"esModuleInterop": true,
|
|
22
26
|
"forceConsistentCasingInFileNames": true,
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"()": "($CURSOR)",
|
|
10
10
|
"()_": "($CURSOR)_",
|
|
11
11
|
"([])'": "⟮$CURSOR⟯",
|
|
12
|
+
"(())": "⸨$CURSOR⸩",
|
|
12
13
|
"f<>": "‹$CURSOR›",
|
|
13
14
|
"f<<>>": "«$CURSOR»",
|
|
14
15
|
"[--]": "⁅$CURSOR⁆",
|
|
@@ -18,6 +19,8 @@
|
|
|
18
19
|
"ceil": "⌈$CURSOR⌉",
|
|
19
20
|
"nfloor": "⌊$CURSOR⌋₊",
|
|
20
21
|
"nceil": "⌈$CURSOR⌉₊",
|
|
22
|
+
"s[]": "⦋$CURSOR⦌",
|
|
23
|
+
"simplex": "⦋$CURSOR⦌",
|
|
21
24
|
"\\": "\\",
|
|
22
25
|
"a": "α",
|
|
23
26
|
"b": "β",
|
|
@@ -418,7 +421,6 @@
|
|
|
418
421
|
"tau": "τ",
|
|
419
422
|
"top": "⊤",
|
|
420
423
|
"to": "→",
|
|
421
|
-
|
|
422
424
|
"to0": "→₀",
|
|
423
425
|
"r0": "→₀",
|
|
424
426
|
"to_0": "→₀",
|
|
@@ -466,7 +468,6 @@
|
|
|
466
468
|
"heyting": "⇨",
|
|
467
469
|
"himp": "⇨",
|
|
468
470
|
"hnot": "¬",
|
|
469
|
-
|
|
470
471
|
"covers": "⋖",
|
|
471
472
|
"covby": "⋖",
|
|
472
473
|
"wcovby": "⩿",
|
|
@@ -578,7 +579,6 @@
|
|
|
578
579
|
"pitchfork": "⋔",
|
|
579
580
|
"psi": "ψ",
|
|
580
581
|
"phi": "φ",
|
|
581
|
-
"8<": "✂",
|
|
582
582
|
"leqn": "≰",
|
|
583
583
|
"leqq": "≦",
|
|
584
584
|
"leqslant": "≤",
|
|
@@ -709,6 +709,7 @@
|
|
|
709
709
|
">~": "≳",
|
|
710
710
|
">>": "⟫",
|
|
711
711
|
"root": "√",
|
|
712
|
+
"scissor": "✂",
|
|
712
713
|
"ssubn": "⊄",
|
|
713
714
|
"ssub": "⊂",
|
|
714
715
|
"ssupn": "⊅",
|
|
@@ -1119,7 +1120,6 @@
|
|
|
1119
1120
|
"rrbracket": "〛",
|
|
1120
1121
|
"rangle": "⟩",
|
|
1121
1122
|
"rq": "’",
|
|
1122
|
-
"rial": "﷼",
|
|
1123
1123
|
"rightarrowtail": "↣",
|
|
1124
1124
|
"rightarrow": "→",
|
|
1125
1125
|
"rightharpoondown": "⇁",
|
|
@@ -1179,6 +1179,8 @@
|
|
|
1179
1179
|
"]]": "⟧",
|
|
1180
1180
|
"{{": "⦃",
|
|
1181
1181
|
"}}": "⦄",
|
|
1182
|
+
"((": "⸨",
|
|
1183
|
+
"))": "⸩",
|
|
1182
1184
|
"([": "⟮",
|
|
1183
1185
|
"])": "⟯",
|
|
1184
1186
|
"Xi": "Ξ",
|
|
@@ -1381,12 +1383,10 @@
|
|
|
1381
1383
|
"Psi": "Ψ",
|
|
1382
1384
|
"Phi": "Φ",
|
|
1383
1385
|
"Pi": "Π",
|
|
1384
|
-
|
|
1385
1386
|
"Pi0": "Π₀",
|
|
1386
1387
|
"P0": "Π₀",
|
|
1387
1388
|
"Pi_0": "Π₀",
|
|
1388
1389
|
"P_0": "Π₀",
|
|
1389
|
-
|
|
1390
1390
|
"bfA": "𝐀",
|
|
1391
1391
|
"bfB": "𝐁",
|
|
1392
1392
|
"bfC": "𝐂",
|
|
@@ -1413,7 +1413,6 @@
|
|
|
1413
1413
|
"bfX": "𝐗",
|
|
1414
1414
|
"bfY": "𝐘",
|
|
1415
1415
|
"bfZ": "𝐙",
|
|
1416
|
-
|
|
1417
1416
|
"bfa": "𝐚",
|
|
1418
1417
|
"bfb": "𝐛",
|
|
1419
1418
|
"bfc": "𝐜",
|
|
@@ -1440,7 +1439,6 @@
|
|
|
1440
1439
|
"bfx": "𝐱",
|
|
1441
1440
|
"bfy": "𝐲",
|
|
1442
1441
|
"bfz": "𝐳",
|
|
1443
|
-
|
|
1444
1442
|
"MiA": "𝐴",
|
|
1445
1443
|
"MiB": "𝐵",
|
|
1446
1444
|
"MiC": "𝐶",
|
|
@@ -1700,7 +1698,6 @@
|
|
|
1700
1698
|
"Mfx": "𝔵",
|
|
1701
1699
|
"Mfy": "𝔶",
|
|
1702
1700
|
"Mfz": "𝔷",
|
|
1703
|
-
|
|
1704
1701
|
"yen": "¥",
|
|
1705
1702
|
"varrho": "ϱ",
|
|
1706
1703
|
"varkappa": "ϰ",
|
|
@@ -1750,7 +1747,6 @@
|
|
|
1750
1747
|
"Beta": "Β",
|
|
1751
1748
|
"Box": "□",
|
|
1752
1749
|
"Bumpeq": "≎",
|
|
1753
|
-
|
|
1754
1750
|
"bbA": "𝔸",
|
|
1755
1751
|
"bbB": "𝔹",
|
|
1756
1752
|
"bbC": "ℂ",
|
|
@@ -1803,7 +1799,6 @@
|
|
|
1803
1799
|
"bbx": "𝕩",
|
|
1804
1800
|
"bby": "𝕪",
|
|
1805
1801
|
"bbz": "𝕫",
|
|
1806
|
-
|
|
1807
1802
|
"Rge0": "ℝ≥0",
|
|
1808
1803
|
"R>=0": "ℝ≥0",
|
|
1809
1804
|
"nnreal": "ℝ≥0",
|
|
@@ -1816,12 +1811,15 @@
|
|
|
1816
1811
|
"lier": "⁆",
|
|
1817
1812
|
"[-": "⁅",
|
|
1818
1813
|
"-]": "⁆",
|
|
1814
|
+
"lsimplex": "⦋",
|
|
1815
|
+
"rsimplex": "⦌",
|
|
1819
1816
|
"bracketr": "⁆",
|
|
1820
1817
|
"nhds": "𝓝",
|
|
1821
1818
|
"nbhds": "𝓝",
|
|
1822
1819
|
"X": "⨯",
|
|
1823
1820
|
"vectorproduct": "⨯",
|
|
1824
1821
|
"crossproduct": "⨯",
|
|
1822
|
+
"xs": "×ˢ",
|
|
1825
1823
|
"coprod": "⨿",
|
|
1826
1824
|
"sigmaobj": "∐",
|
|
1827
1825
|
"xf": "×ᶠ",
|
|
@@ -1832,5 +1830,7 @@
|
|
|
1832
1830
|
"goal": "⊢",
|
|
1833
1831
|
"Vdash": "⊩",
|
|
1834
1832
|
"Vert": "‖",
|
|
1835
|
-
"Vvdash": "⊪"
|
|
1833
|
+
"Vvdash": "⊪",
|
|
1834
|
+
"tiny": "⧾",
|
|
1835
|
+
"miny": "⧿"
|
|
1836
1836
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leanprover/unicode-input-component",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Typescript support for contenteditable divs with the Unicode input support of the Lean 4 theorem prover",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"watch": "tsc --watch",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
],
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@leanprover/unicode-input": "
|
|
17
|
+
"@leanprover/unicode-input": "^0.1.4"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"typescript": "^5.4.5"
|