Compare commits

..
Author SHA1 Message Date
Christoph 88f834ae79 Merge pull request 'Fix Bug for Formatting' (#30) from bug_fixing into main
/ build_and_publish (release) Successful in 37s
Reviewed-on: #30
2026-06-22 06:32:26 +00:00
Christoph Brandau 3b233389c8 Fix Tcl formatting bug by adjusting formatter options 2026-06-22 08:29:48 +02:00
Christoph 67bd9de18a Update version to 2026.6.100 2026-06-18 19:03:03 +00:00
3 changed files with 9 additions and 1 deletions
+4
View File
@@ -17,3 +17,7 @@
## [2026.6.100]
- Fix several bugs
## [2026.6.200]
- Fix foramtting bug
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "nx-post-support",
"displayName": "NX Postprocessor Support",
"description": "VS Code extension for NX CAM postprocessor development with syntax highlighting, formatting, linting, and auto-completion for CDL, TCL, and DEF files",
"version": "2026.6.0",
"version": "2026.6.100",
"publisher": "Christoph",
"icon": "images/nx-1.png",
"extensionDependencies": [
+4
View File
@@ -98,8 +98,12 @@ class TclLanguageServer(server.LanguageServer):
FormatterOpts(
indent=indent,
spaces_in_braces=False,
balanced_spaces_in_braces=False,
max_blank_lines=500,
indent_namespace_eval=True,
indent_mixed_tab_size=0,
emacs=False,
debug_whitespace=False,
),
)