You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add local keyword to local variables (Bash)
* Trigger workflow on any branch
* Add VSCode syntax highlighting workaround description
* Improve strings
* Fix negation handling (#30)
* Add raw string support (#31)
* Add support for single variable in for-range loop (#29)
* Fix len on empty string leads to endless loop (Batch) (#32)
* Implement super inperformant version of strings.Split
* Fix substring newline handling (Bash)
* Replace expr by double parentheses (Bash)
* Implement find example for Windows and Linux
Copy file name to clipboardExpand all lines: README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -287,3 +287,10 @@ print(s[0]) // Prints "Hello".
287
287
print(s[1]) // Prints "".
288
288
print(s[2]) // Prints "World".
289
289
```
290
+
291
+
## Visual Studio Code
292
+
There is no extension for VSCode yet. However, since the code is very Go-like, adding the ".tsh" extension to the settings should serve as a first workaround.
293
+
- Open VSCode.
294
+
- Go to File -> Preferences -> Settings.
295
+
- Seach for "file associations".
296
+
- Add "*.tsh" to the list and associate it with Go.
0 commit comments