在 VScode 代码段中添加美元符号 ($)

Adding Dollar Sign($) in a VScode Code snippet

我正在为 VScode 中的 verilog 文件编写自定义 代码片段; VSCode 使用 JSON 个文件。
我观察到 $ before finish 和 dumpvars 语句在我使用该代码段时不会被打印出来,因为它是一个内置关键字,用于在 json 文件格式的字符串中包含变量, 我试过在 $ 之前添加 \,但是 没有 起作用。
有什么方法可以在我的代码片段中插入 $ 吗?

这是我正在使用的相关代码块:

"dump statements": {
        "prefix": "dump",
        "body": [
            "initial begin", 
            "   dumpfile(\"${1:filename}\");",
            "   $dumpvars();",
            "end"
        ],
        "description": "Prints the dump file and variables statements."
    },

使用双反斜杠进行转义,像这样\$

"dump statements": {
    "prefix": "dump",
    "body": [
        "initial begin", 
        "   dumpfile(\"${1:filename}\");",
        "   \$dumpvars();",
        "end"
    ],
    "description": "Prints the dump file and variables statements."
},