├── .gitignore ├── .package.json ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── .wsc ├── Fleck.dll ├── Microsoft.WindowsAPICodePack.Shell.dll ├── Microsoft.WindowsAPICodePack.Shell.pdb ├── Microsoft.WindowsAPICodePack.dll ├── Microsoft.WindowsAPICodePack.pdb ├── Newtonsoft.Json.dll ├── Newtonsoft.Json.pdb ├── Newtonsoft.Json.xml ├── WildcardMatch.dll ├── wsc.exe ├── wsc.exe.config └── wsc.pdb ├── README.md ├── docs ├── features │ ├── comparescript.gif │ ├── cookmod.gif │ ├── highlight.png │ ├── importcontent.gif │ ├── importscript.gif │ ├── launchgame.gif │ └── snippets.gif └── wiki │ └── images │ ├── configure1.png │ ├── createmod1.png │ ├── createmod2.png │ ├── createmod3.png │ ├── importmod1.png │ └── launchgame.png ├── gulpfile.js ├── icon.png ├── package.json ├── src ├── commands │ ├── Command.ts │ ├── CompareScriptCommand.ts │ ├── CookCommand.ts │ ├── ImportContentCommand.ts │ ├── ImportScriptCommand.ts │ ├── LaunchGameCommand.ts │ ├── NewPackageCommand.ts │ ├── SettingsPageCommand.ts │ ├── UncookCommand.ts │ └── WelcomePageCommand.ts ├── components │ ├── Configuration.ts │ ├── ContentPreview.ts │ └── WitcherScriptWrapper.ts ├── constants.ts ├── extension.ts └── features │ └── debug │ ├── DebugConfigurationProvider.ts │ └── DebugSession.ts ├── tsconfig.json ├── tslint.json ├── ui ├── jquery-ui.min.js ├── jquery.min.js ├── settings.html ├── styles.css ├── styles.scss └── welcome.html └── witcherscript ├── grammar.json ├── language.json ├── snippets.json └── witcher3.schema.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.gitignore -------------------------------------------------------------------------------- /.package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.package.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.vscodeignore -------------------------------------------------------------------------------- /.wsc/Fleck.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.wsc/Fleck.dll -------------------------------------------------------------------------------- /.wsc/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.wsc/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /.wsc/Microsoft.WindowsAPICodePack.Shell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.wsc/Microsoft.WindowsAPICodePack.Shell.pdb -------------------------------------------------------------------------------- /.wsc/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.wsc/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /.wsc/Microsoft.WindowsAPICodePack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.wsc/Microsoft.WindowsAPICodePack.pdb -------------------------------------------------------------------------------- /.wsc/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.wsc/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /.wsc/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.wsc/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /.wsc/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.wsc/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /.wsc/WildcardMatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.wsc/WildcardMatch.dll -------------------------------------------------------------------------------- /.wsc/wsc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.wsc/wsc.exe -------------------------------------------------------------------------------- /.wsc/wsc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.wsc/wsc.exe.config -------------------------------------------------------------------------------- /.wsc/wsc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/.wsc/wsc.pdb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/README.md -------------------------------------------------------------------------------- /docs/features/comparescript.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/features/comparescript.gif -------------------------------------------------------------------------------- /docs/features/cookmod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/features/cookmod.gif -------------------------------------------------------------------------------- /docs/features/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/features/highlight.png -------------------------------------------------------------------------------- /docs/features/importcontent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/features/importcontent.gif -------------------------------------------------------------------------------- /docs/features/importscript.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/features/importscript.gif -------------------------------------------------------------------------------- /docs/features/launchgame.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/features/launchgame.gif -------------------------------------------------------------------------------- /docs/features/snippets.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/features/snippets.gif -------------------------------------------------------------------------------- /docs/wiki/images/configure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/wiki/images/configure1.png -------------------------------------------------------------------------------- /docs/wiki/images/createmod1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/wiki/images/createmod1.png -------------------------------------------------------------------------------- /docs/wiki/images/createmod2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/wiki/images/createmod2.png -------------------------------------------------------------------------------- /docs/wiki/images/createmod3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/wiki/images/createmod3.png -------------------------------------------------------------------------------- /docs/wiki/images/importmod1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/wiki/images/importmod1.png -------------------------------------------------------------------------------- /docs/wiki/images/launchgame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/docs/wiki/images/launchgame.png -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/gulpfile.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/commands/Command.ts -------------------------------------------------------------------------------- /src/commands/CompareScriptCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/commands/CompareScriptCommand.ts -------------------------------------------------------------------------------- /src/commands/CookCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/commands/CookCommand.ts -------------------------------------------------------------------------------- /src/commands/ImportContentCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/commands/ImportContentCommand.ts -------------------------------------------------------------------------------- /src/commands/ImportScriptCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/commands/ImportScriptCommand.ts -------------------------------------------------------------------------------- /src/commands/LaunchGameCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/commands/LaunchGameCommand.ts -------------------------------------------------------------------------------- /src/commands/NewPackageCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/commands/NewPackageCommand.ts -------------------------------------------------------------------------------- /src/commands/SettingsPageCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/commands/SettingsPageCommand.ts -------------------------------------------------------------------------------- /src/commands/UncookCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/commands/UncookCommand.ts -------------------------------------------------------------------------------- /src/commands/WelcomePageCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/commands/WelcomePageCommand.ts -------------------------------------------------------------------------------- /src/components/Configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/components/Configuration.ts -------------------------------------------------------------------------------- /src/components/ContentPreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/components/ContentPreview.ts -------------------------------------------------------------------------------- /src/components/WitcherScriptWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/components/WitcherScriptWrapper.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/features/debug/DebugConfigurationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/features/debug/DebugConfigurationProvider.ts -------------------------------------------------------------------------------- /src/features/debug/DebugSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/src/features/debug/DebugSession.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/tslint.json -------------------------------------------------------------------------------- /ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/ui/jquery-ui.min.js -------------------------------------------------------------------------------- /ui/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/ui/jquery.min.js -------------------------------------------------------------------------------- /ui/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/ui/settings.html -------------------------------------------------------------------------------- /ui/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/ui/styles.css -------------------------------------------------------------------------------- /ui/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/ui/styles.scss -------------------------------------------------------------------------------- /ui/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/ui/welcome.html -------------------------------------------------------------------------------- /witcherscript/grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/witcherscript/grammar.json -------------------------------------------------------------------------------- /witcherscript/language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/witcherscript/language.json -------------------------------------------------------------------------------- /witcherscript/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/witcherscript/snippets.json -------------------------------------------------------------------------------- /witcherscript/witcher3.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicollasricas/vscode-witcherscript/HEAD/witcherscript/witcher3.schema.json --------------------------------------------------------------------------------