Skip to content

QS1_VisualStudioCode

maybites edited this page Sep 12, 2022 · 1 revision

How to setup Visual Studio Code

This steps describe how to setup Visual Studio Code to use as a code completion editor for Quescript:

  1. Go to Extensions and install the XML Language Support by Red Hat
  2. Go to Manage (the cog in the lower left corner) > Settings > search for 'xml.fileAssociations'
  3. press 'edit in settings.json'
  4. copy paste into: "xml.fileAssociations": [
"xml.fileAssociations": [
        {
            "pattern": "**/*.que",
            "systemId": "${fileDirname}/quescript.xsd"
        }
]
  1. Copy 'quescript.xsd' from this repository ~/misc/quescript.xsd to your folder with the quescripts.
  2. Open the quescript inside Visual Studio Code.
Clone this wiki locally