From b7d3dd3ae5476b14b014f32f628e3fe0492329d9 Mon Sep 17 00:00:00 2001 From: CrashM Date: Wed, 30 Mar 2016 21:42:08 -0400 Subject: [PATCH 1/4] Update VBScript.sublime-build Add Variant to invoke the debugging option of CScript --- VBScript.sublime-build | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/VBScript.sublime-build b/VBScript.sublime-build index cee7241..f80d0c2 100644 --- a/VBScript.sublime-build +++ b/VBScript.sublime-build @@ -16,6 +16,13 @@ { "cmd": ["wscript.exe", "$file"] } + }, + { + "name": "Debug with CScript", + "windows": + { + "cmd": ["cscript.exe", "//x", "//d", "$file"] + } } ] -} \ No newline at end of file +} From 73670fc7180aa308f51abc8a7e98a0e7b2b306cf Mon Sep 17 00:00:00 2001 From: Jeffrey Sadeli Date: Fri, 1 Apr 2016 18:11:52 +0700 Subject: [PATCH 2/4] Update readme.md fixed screenshots path --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 70685ec..dfd96df 100644 --- a/readme.md +++ b/readme.md @@ -10,8 +10,8 @@ Original author: [Thomas Aylott](http://svn.textmate.org/trunk/Bundles/ASP_vb_NE ## Screenshots -![Espresso](http://github.com/SublimeText/VBScript/raw/master/screenshots/espresso.png) -![Monokai](http://github.com/SublimeText/VBScript/raw/master/screenshots/monokai.png) +![Espresso](https://raw.githubusercontent.com/SublimeText/VBScript/master/screenshots/espresso.png) +![Monokai](https://raw.githubusercontent.com/SublimeText/VBScript/master/screenshots/monokai.png) ## Installation @@ -36,4 +36,4 @@ Go to your Sublime Text `Packages` directory and clone the repository using the * Download the files using the GitHub .zip download option * Unzip the files and rename the folder to `VBScript` -* Copy the folder to your Sublime Text `Packages` directory \ No newline at end of file +* Copy the folder to your Sublime Text `Packages` directory From 37b44e9f400bd4102fa83f237e779755a5b26e10 Mon Sep 17 00:00:00 2001 From: seanchase Date: Mon, 13 Jun 2016 15:33:24 +0900 Subject: [PATCH 3/4] Added .vba and .bas Even though everything in VBA is not fully supported in this highlighter, it is still very useful. .BAS is another common VBS, VBA file extension. --- VBScript.tmLanguage | 2 ++ 1 file changed, 2 insertions(+) diff --git a/VBScript.tmLanguage b/VBScript.tmLanguage index 936c83e..edce482 100644 --- a/VBScript.tmLanguage +++ b/VBScript.tmLanguage @@ -7,6 +7,8 @@ fileTypes vbs + vba + bas vbe wsf wsc From aac3a4c00c8ca65d4fa00b043228dd07a87f38ef Mon Sep 17 00:00:00 2001 From: Jacob Bundgaard Date: Sun, 19 May 2019 16:49:42 +0200 Subject: [PATCH 4/4] Add .cls and .frm file extensions for VBA Now that the .vba and .bas extensions have been added, why not also the .cls (VBA class) and .frm (VBA form) extensions? These can be imported and exported from the Microsoft Office VBA editor. --- VBScript.tmLanguage | 2 ++ 1 file changed, 2 insertions(+) diff --git a/VBScript.tmLanguage b/VBScript.tmLanguage index edce482..6ae2028 100644 --- a/VBScript.tmLanguage +++ b/VBScript.tmLanguage @@ -9,6 +9,8 @@ vbs vba bas + cls + frm vbe wsf wsc