some updates to README.md;
authorwenzelm
Tue, 22 Feb 2022 21:34:12 +0100
changeset 75130 122d1d1a16fd
parent 75129 49f9fa8f9601
child 75131 79fab5ff4163
some updates to README.md;
src/Tools/VSCode/extension/README.md
--- a/src/Tools/VSCode/extension/README.md	Tue Feb 22 21:33:24 2022 +0100
+++ b/src/Tools/VSCode/extension/README.md	Tue Feb 22 21:34:12 2022 +0100
@@ -75,72 +75,13 @@
       + *bibtexLanguage* (optional): it gives `.bib` a formal status, thus
         `@{cite}` antiquotations become active for completion and hyperlinks.
 
-  * Open the dialog *Preferences / User settings* and provide the following
-    entries in the second window, where local user additions are stored:
-
-      + On all platforms: `isabelle.home` needs to point to the main Isabelle
-      directory (`$ISABELLE_HOME`).
-
-      + On Windows: use drive-letter and backslashes for `isabelle.home` above.
-      When running from a bare repository clone (not a development snapshot),
-      `isabelle.cygwin_home` needs to point to a suitable Cygwin installation.
-
-    Examples:
-
-      + Linux:
-        ```
-        "isabelle.home": "/home/makarius/Isabelle"
-        ```
-
-      + Mac OS X:
-        ```
-        "isabelle.home": "/Users/makarius/Isabelle.app/Isabelle"
-        ```
-
-      + Windows:
-        ```
-        "isabelle.home": "C:\\Users\\makarius\\Isabelle"
-        ```
-
   * Restart the VSCode application to ensure that all extensions are properly
   initialized and user settings are updated. Afterwards VSCode should know about
   `.thy` files (Isabelle theories) and `.ML` files (Isabelle/ML modules).
 
   The Isabelle extension is initialized when the first Isabelle file is opened.
   It requires a few seconds to start up: a small popup window eventually says
-  *"Welcome to Isabelle ..."*. If that fails, there might be something wrong
-  with `isabelle.home` from above, or the Isabelle distribution does not fit to
-  the version of the VSCode extension from the Marketplace.
-
-
-### Support for Isabelle symbols
-
-Isabelle symbols like `\<forall>` are rendered using the extension *Prettify
-Symbols Mode*, which needs to be installed separately.
-
-In addition, the following user settings should be changed in the *Preferences /
-User settings* dialog of VSCode:
-
-```
-"prettifySymbolsMode.substitutions": [
-  {
-    "language": "isabelle",
-    "revealOn": "none",
-    "adjustCursorMovement": true,
-    "prettyCursor": "none",
-    "substitutions": []
-  },
-  {
-    "language": "isabelle-ml",
-    "revealOn": "none",
-    "adjustCursorMovement": true,
-    "prettyCursor": "none",
-    "substitutions": []
-  }]
-```
-
-Actual symbol replacement tables are provided by the prover process on startup,
-based on the usual `etc/symbols` specifications of the Isabelle installation.
+  *"Welcome to Isabelle ..."*.
 
 
 ### Further Preferences