update language configuration for Tcl (#11236)

The primary executable that comes with Tcl is `tclsh`. Not really sure what `tclish` is, as I initially thought it was a typo. However, there seems to be references to it based on a quick search (e.g. [here](https://wiki.tcl-lang.org/page/Tclish) and [here](https://tclish.sourceforge.net/)), so maybe it's a valid executable that I just haven't been aware of. I was hesitant to replace it and instead opted to just add `tclsh`.
pull/11339/merge
Andrew Chou 2 months ago committed by GitHub
parent 22c1a40725
commit a4cfcff284
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -3490,7 +3490,7 @@ name = "tcl"
scope = "source.tcl" scope = "source.tcl"
injection-regex = "tcl" injection-regex = "tcl"
file-types = [ "tcl" ] file-types = [ "tcl" ]
shebangs = [ "tclish", "jimsh", "wish" ] shebangs = [ "tclsh", "tclish", "jimsh", "wish" ]
comment-token = '#' comment-token = '#'
[[grammar]] [[grammar]]

Loading…
Cancel
Save