Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  package.json   Sprache: unbekannt

 
Spracherkennung für: .json vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

{
    "name": "isabelle",
    "displayName": "Isabelle/VSCode",
    "description": "Isabelle/VSCode Prover IDE",
    "keywords": [
        "theorem prover",
        "formalized mathematics",
        "mathematical logic",
        "functional programming",
        "document preparation"
    ],
    "icon": "isabelle.png",
    "version": "2.0.0",
    "publisher": "isabelle",
    "license": "MIT",
    "repository": {
        "url": "https://isabelle-dev.sketis.net"
    },
    "engines": {
        "vscode": "^1.104.0"
    },
    "categories": [
        "Programming Languages"
    ],
    "activationEvents": [
        "onStartupFinished"
    ],
    "main": "./out/src/extension",
    "contributes": {
        "viewsContainers": {
            "panel": [
                {
                    "id": "isabelle",
                    "title": "Isabelle Output",
                    "icon": "isabelle.png"
                },
                {
                    "id": "isabelle-symbols",
                    "title": "Isabelle Symbols",
                    "icon": "./media/symbol-panel.svg"
                },
                {
                    "id": "isabelle-sledgehammer",
                    "title": "Sledgehammer",
                    "icon": "./media/sledgehammer-panel.svg"
                }
            ],
            "activitybar": [
                {
                    "id": "isabelle-documentation",
                    "title": "Documentation",
                    "icon":"./media/documentation-panel.svg"
                }
            ]
        },
        "views": {
            "isabelle-symbols": [
                { "id": "isabelle-symbols", "name": "Symbols", "type": "webview", "icon": "./media/symbol-panel.svg" }
            ],
            "isabelle-documentation": [
                { "id": "isabelle-documentation", "name": "Documentation", "type": "webview", "icon": "./media/documentation-panel.svg" }
            ],
            "isabelle-sledgehammer": [
                { "id": "isabelle-sledgehammer", "name": "Sledgehammer", "type": "webview" , "icon": "./media/sledgehammer-panel.svg" }
            ],
            "isabelle": [
                {
                    "type": "webview",
                    "id": "isabelle-output",
                    "name": "Output"
                }
            ]
        },
        "commands": [
            {
                "command": "isabelle.state",
                "title": "Show State",
                "category": "Isabelle"
            },
            {
                "command": "isabelle.preview",
                "title": "Open Preview",
                "category": "Isabelle",
                "icon": {
                    "light": "./media/Preview.svg",
                    "dark": "./media/Preview_inverse.svg"
                }
            },
            {
                "command": "isabelle.preview-split",
                "title": "Open Preview (Split Editor)",
                "category": "Isabelle",
                "icon": {
                    "light": "./media/PreviewOnRightPane_16x.svg",
                    "dark": "./media/PreviewOnRightPane_16x_dark.svg"
                }
            },
            {
                "command": "isabelle.include-word",
                "title": "Include word",
                "category": "Isabelle"
            },
            {
                "command": "isabelle.include-word-permanently",
                "title": "Include word permanently",
                "category": "Isabelle"
            },
            {
                "command": "isabelle.exclude-word",
                "title": "Exclude word",
                "category": "Isabelle"
            },
            {
                "command": "isabelle.exclude-word-permanently",
                "title": "Exclude word permanently",
                "category": "Isabelle"
            },
            {
                "command": "isabelle.reset-words",
                "title": "Reset non-permanent words",
                "category": "Isabelle"
            }
        ],
        "menus": {
            "editor/title": [
                {
                    "when": "editorLangId == isabelle",
                    "command": "isabelle.preview",
                    "group": "navigation"
                },
                {
                    "when": "editorLangId == isabelle-ml",
                    "command": "isabelle.preview",
                    "group": "navigation"
                },
                {
                    "when": "editorLangId == bibtex",
                    "command": "isabelle.preview",
                    "group": "navigation"
                },
                {
                    "when": "editorLangId == isabelle",
                    "command": "isabelle.preview-split",
                    "group": "navigation"
                },
                {
                    "when": "editorLangId == isabelle-ml",
                    "command": "isabelle.preview-split",
                    "group": "navigation"
                },
                {
                    "when": "editorLangId == bibtex",
                    "command": "isabelle.preview-split",
                    "group": "navigation"
                },
                {
                    "when": "editorLangId == isabelle",
                    "command": "isabelle.openSymbolsPanel",
                    "group": "navigation"
                },
                {
                    "when": "editorLangId == isabelle-ml",
                    "command": "isabelle.openSymbolsPanel",
                    "group": "navigation"
                },
                {
                    "when": "editorLangId == isabelle",
                    "command": "isabelle.openDocumentationPanel",
                    "group": "navigation"
                },
                {
                    "when": "editorLangId == isabelle-ml",
                    "command": "isabelle.openDocumentationPanel",
                    "group": "navigation"
                },
                {
                    "when": "editorLangId == isabelle",
                    "command": "isabelle.openSledgehammerPanel",
                    "group": "navigation"
                },
                {
                    "when": "editorLangId == isabelle-ml",
                    "command": "isabelle.openSledgehammerPanel",
                    "group": "navigation"

                }
            ],
            "explorer/context": [
                {
                    "when": "resourceLangId == isabelle",
                    "command": "isabelle.preview",
                    "group": "navigation"
                },
                {
                    "when": "resourceLangId == isabelle-ml",
                    "command": "isabelle.preview",
                    "group": "navigation"
                },
                {
                    "when": "resourceLangId == bibtex",
                    "command": "isabelle.preview",
                    "group": "navigation"
                }
            ]
        },
        "languages": [
            {
                "id": "isabelle",
                "aliases": [
                    "Isabelle"
                ],
                "extensions": [
                    ".thy"
                ],
                "configuration": "./isabelle-language.json"
            },
            {
                "id": "isabelle-ml",
                "aliases": [
                    "Isabelle/ML"
                ],
                "extensions": [
                    ".ML",
                    ".sml",
                    ".sig"
                ],
                "configuration": "./isabelle-ml-language.json"
            }
        ],
        "configurationDefaults": {
            "[isabelle]": {
                "files.encoding": "utf8isabelle"
            },
            "[isabelle-ml]": {
                "files.encoding": "utf8isabelle"
            }
        },
        "grammars": [
            {
                "language": "isabelle",
                "scopeName": "source.isabelle",
                "path": "./isabelle-grammar.json"
            },
            {
                "language": "isabelle-ml",
                "scopeName": "source.isabelle-ml",
                "path": "./isabelle-ml-grammar.json"
            }
        ],
        "configuration": {
            "title": "Isabelle",
            "properties": {
                "ISABELLE_OPTIONS": {},
                "isabelle.replacement": {
                    "type": "string",
                    "default": "non-alphanumeric",
                    "enum": [
                        "none",
                        "non-alphanumeric",
                        "all"
                    ],
                    "enumDescriptions": [
                        "Replacments are deactivated. No replacments are done.",
                        "Replaces all uniqe abbreviations that contain no alphanumeric characters",
                        "Replaces all uniqe abbreviations"
                    ],
                    "description": "Symbol replacement mode."
                },
                "isabelle.text_color": {
                    "type": "object",
                    "additionalProperties": {
                        "type": "string"
                    },
                    "default": {
                        "unprocessed_light": "rgba(2551601601.00)",
                        "unprocessed_dark": "rgba(970971.00)",
                        "unprocessed1_light": "rgba(2551601600.20)",
                        "unprocessed1_dark": "rgba(970970.20)",
                        "running_light": "rgba(970971.00)",
                        "running_dark": "rgba(2551601601.00)",
                        "running1_light": "rgba(970970.40)",
                        "running1_dark": "rgba(2551601600.40)",
                        "canceled_light": "rgba(2551061060.40)",
                        "canceled_dark": "rgba(2551061060.40)",
                        "bad_light": "rgba(2551061060.40)",
                        "bad_dark": "rgba(2551061060.40)",
                        "intensify_light": "rgba(2552041020.40)",
                        "intensify_dark": "rgba(20413600.20)",
                        "markdown_bullet1_light": "rgba(2182542181.00)",
                        "markdown_bullet1_dark": "rgba(519950.20)",
                        "markdown_bullet2_light": "rgba(2552402041.00)",
                        "markdown_bullet2_dark": "rgba(20414300.20)",
                        "markdown_bullet3_light": "rgba(2312312551.00)",
                        "markdown_bullet3_dark": "rgba(002040.20)",
                        "markdown_bullet4_light": "rgba(2552242401.00)",
                        "markdown_bullet4_dark": "rgba(20401050.20)",
                        "quoted_light": "rgba(1391391390.10)",
                        "quoted_dark": "rgba(1501501500.15)",
                        "antiquoted_light": "rgba(255200500.10)",
                        "antiquoted_dark": "rgba(2552141020.15)",
                        "writeln_light": "rgba(1921921921.0)",
                        "writeln_dark": "rgba(1921921921.0)",
                        "information_light": "rgba(1932232381.0)",
                        "information_dark": "rgba(1932232381.0)",
                        "warning_light": "rgba(25514001.0)",
                        "warning_dark": "rgba(25514001.0)",
                        "error_light": "rgba(17834341.00)",
                        "error_dark": "rgba(17834341.00)",
                        "spell_checker_light": "rgba(002551.0)",
                        "spell_checker_dark": "rgba(861562141.00)",
                        "main_light": "rgba(0001.00)",
                        "main_dark": "rgba(2122122121.00)",
                        "keyword1_light": "rgba(17502191.00)",
                        "keyword1_dark": "rgba(1971341921.00)",
                        "keyword2_light": "rgba(9136901.00)",
                        "keyword2_dark": "rgba(1812061681.00)",
                        "keyword3_light": "rgba(381271531.00)",
                        "keyword3_dark": "rgba(78201176), 1.00)",
                        "quasi_keyword_light": "rgba(1531022551.00)",
                        "quasi_keyword_dark": "rgba(1531022551.00)",
                        "improper_light": "rgba(20549491.00)",
                        "improper_dark": "rgba(24471711.00)",
                        "operator_light": "rgba(5050501.00)",
                        "operator_dark": "rgba(2122122121.00)",
                        "tfree_light": "rgba(160322401.00)",
                        "tfree_dark": "rgba(160322401.00)",
                        "tvar_light": "rgba(160322401.00)",
                        "tvar_dark": "rgba(160322401.00)",
                        "free_light": "rgba(002551.00)",
                        "free_dark": "rgba(861562141.00)",
                        "skolem_light": "rgba(210105301.00)",
                        "skolem_dark": "rgba(210105301.00)",
                        "bound_light": "rgba(012801.00)",
                        "bound_dark": "rgba(96139781.00)",
                        "var_light": "rgba(0161281.00)",
                        "var_dark": "rgba(1562202541.00)",
                        "inner_numeral_light": "rgba(9136901.00)",
                        "inner_numeral_dark": "rgba(1812061681.00)",
                        "inner_quoted_light": "rgba(16321211.00)",
                        "inner_quoted_dark": "rgba(2061451201.00)",
                        "inner_cartouche_light": "rgba(12931631.00)",
                        "inner_cartouche_dark": "rgba(2091051051.00)",
                        "inner_comment_light": "rgba(012801.00)",
                        "inner_comment_dark": "rgba(96139781.00)",
                        "comment1_light": "rgba(12931631.00)",
                        "comment1_dark": "rgba(1001021491.00)",
                        "comment2_light": "rgba(2091051051.00)",
                        "comment2_dark": "rgba(2061551201.00)",
                        "comment3_light": "rgba(012801.00)",
                        "comment3_dark": "rgba(96139781.00)",
                        "dynamic_light": "rgba(12194381.00)",
                        "dynamic_dark": "rgba(2202201701.00)",
                        "class_parameter_light": "rgba(210105301.00)",
                        "class_parameter_dark": "rgba(210105301.00)",
                        "antiquote_light": "rgba(10202041.00)",
                        "antiquote_dark": "rgba(1971341921.00)",
                        "raw_text_light": "rgba(10202041.00)",
                        "raw_text_dark": "rgba(1971341921.00)",
                        "plain_text_light": "rgba(10202041.00)",
                        "plain_text_dark": "rgba(1971341921.00)"
                    }
                }
            }
        }
    },
    "scripts": {
        "vscode:prepublish": "yarn run compile",
        "compile": "tsc -p ./",
        "watch": "tsc -watch -p ./"
    },
    "devDependencies": {
        "@types/mocha": "^9.1.0",
        "@types/node": "^17.0.19",
        "@types/vscode": "^1.104.0",
        "mocha": "^9.2.1",
        "typescript": "^4.5.5"
    },
    "dependencies": {
        "vscode-languageclient": "~7.0.0",
        "vscode-languageserver-types": "~3.16.0"
    }
}

[zur Elbe Produktseite wechseln0.20QuellennavigatorsAnalyse erneut starten2026-06-30]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik