Skip to content

Commit efbce12

Browse files
committed
feat: Add support for tcl
1 parent 391f013 commit efbce12

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ they are used to convert sections to ROT-13, which most folks don't use.
248248
| Ruby | :+1: | :+1: | :x: | :+1: | :x: | :x: |
249249
| Rust | :+1: | :+1: | :+1: | :x: | :+1: | :x: |
250250
| Swift | :+1: | :x: | :x: | :x: | :x: | :x: |
251+
| tcl | :+1: | :x: | :x: | :x: | :x: | :x: |
251252
| VimL (vimscript) | :+1: | :x: | :+1: | :x: | :+1: | :x: |
252253
| Zig | :+1: | :x: | :x: | :x: | :x: | :x: |
253254
| zsh | :+1: | :x: | :+1: | :x: | :+1: | :x: |

lua/debugprint/filetypes.lua

+6
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,12 @@ return {
245245
mid_var = "\\(",
246246
right_var = ')")',
247247
},
248+
["tcl"] = {
249+
left = 'puts "',
250+
right = '"',
251+
mid_var = "$",
252+
right_var = '"',
253+
},
248254
["typescript"] = js,
249255
["typescriptreact"] = js,
250256
["vim"] = {

0 commit comments

Comments
 (0)