{"id":48214348,"url":"https://github.com/wurstscript/wurst4vscode","last_synced_at":"2026-04-04T18:55:13.807Z","repository":{"id":47751861,"uuid":"56411342","full_name":"wurstscript/wurst4vscode","owner":"wurstscript","description":"Wurst extension for Visual Studio Code","archived":false,"fork":false,"pushed_at":"2026-03-23T18:28:10.000Z","size":1052,"stargazers_count":26,"open_issues_count":3,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-03-24T16:42:18.637Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=peterzeller.wurst","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wurstscript.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2016-04-17T00:09:57.000Z","updated_at":"2026-03-23T18:28:15.000Z","dependencies_parsed_at":"2022-08-27T21:21:36.428Z","dependency_job_id":"a460a17d-2a9c-4e15-a7eb-4fe57da0e640","html_url":"https://github.com/wurstscript/wurst4vscode","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wurstscript/wurst4vscode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wurstscript%2Fwurst4vscode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wurstscript%2Fwurst4vscode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wurstscript%2Fwurst4vscode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wurstscript%2Fwurst4vscode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wurstscript","download_url":"https://codeload.github.com/wurstscript/wurst4vscode/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wurstscript%2Fwurst4vscode/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31409470,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-04T18:55:13.223Z","updated_at":"2026-04-04T18:55:13.796Z","avatar_url":"https://github.com/wurstscript.png","language":"Java","readme":"# Wurst extension for Visual Studio Code\n\nThis is a plugin for the [Wurst programming language](https://peq.github.io/WurstScript/), a language for maps and mods for the game Warcraft III.\n\nIf you run into problems related directly to the plugin, please create a ticket on [GitHub](https://github.com/wurstscript/wurst4vscode).\n\n## Features\n\nContext-aware auto completions (default shortcut: `Ctrl+space`) help you to find relevant functions quickly.\nYou can also see the documentation of the function and the required arguments.\n\n![Autocomplete](https://i.imgur.com/QPwREHO.gif)\n\nYou can always find the definition of a function (`F12` or `Ctrl+leftclick`, or just peek at the definition with `Ctrl+Shift+F10`). \n\n![Goto declaration](https://i.imgur.com/imIINfH.gif)\n\nIt is even possible to navigate into the other direction and find all the references of a given definition (`Shift+F12`).\nWhen navigating via links, remember that vscode provides shortcuts to get to your old position (`ctrl+alt+-` and `ctrl+shift+-`).\n\n![Find references](https://i.imgur.com/xas74JI.gif)\n\nWhen you are looking for references inside a file you don't even need to use the features above.\nVscode will automatically highlight all other references and definitions related to the element currently under the cursor:\n\n![Highlight references](https://i.imgur.com/Pzh1Zpq.gif)\n\n\n### Feature list:\n\n* Syntax highlighting\n* Shows errors and warnings while you type (press `Ctrl+Shift+M` for an overview over all errors and warnings, `F8` and `Shift+F8` to loop through the errors in the current file)\n* Autocomplete after typing a dot or pressing `Ctrl+space`.\n* Parameter-info (press `Ctrl+shift+space`)\n* Goto declaration (`F12` or `Ctrl+leftclick`)\n* Find references (`Shift+F12`)\n* Mouse hover info (hover the mouse over a function or variable to see types and documentation)\n* Some commands are available via the command palette (press `F1` and type \"Wurst\")\n    * Running units tests\n\t* Building maps independently from warcraft3\n    * Running a map \n\nYou should also be aware of the following vscode features, which are independent from this Wurst plugin:\n\n* Folding based on indentation\n* Quick Open: Open any file by its name via `Ctrl+P`\n* Search across files (`Ctrl+Shift+F`)\n* [Multiple selections](https://code.visualstudio.com/docs/editor/editingevolved#_multiple-selections)\n* Integrated Git support\n\n## Setup and Configuration\n\nFollow the [Wurst Setup Guide](https://wurstscript.github.io/start.html) to install Wurst, the plugin and create your wurst project.\n\n## Getting Started: Your first Wurst project\n\nFollow the [Wurst Beginner Guide](https://wurstscript.github.io/tutorials/wurstbeginner.html).\n\n## Developer information\n\nIf you want to build the extension yourself:\n\n1. First install \n    - Node.js (newer than 4.3.1)\n    - Npm  (newer 2.14.12)\n2. clone the project from [GitHub](https://github.com/peq/wurst4vscode).\n3. Change to the project directory (e.g. `cd wurst4vscode`)\n4. Run `npm i`\n5. Open the project in Visual Studio Code (`code .`)\n6. Press `F5` to debug (it should start a new vscode window with Wurst enabled)\n7. Make a pull request with your changes\n\nContributors can publish the extension to the Extension Marketplace using `vsce publish` as described in the [vsce - Publishing Tool Reference](https://code.visualstudio.com/docs/tools/vscecli).\nTo update the version use `npm version patch`.\n\n\n\n\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwurstscript%2Fwurst4vscode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwurstscript%2Fwurst4vscode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwurstscript%2Fwurst4vscode/lists"}