是否可以在 Visual Studio 代码中将文本切换为删除线文本?

Is it possible to toggle text to strikethrough text in Visual Studio Code?

我想跟踪 Visual Studio 代码中的待办事项列表。

是否可以 display/toggle 删除线文本:

(以上使用 https://www.piliapp.com/cool-text/strikethrough-text/)。

正在寻找本机或扩展的解决方案。删除线文本需要显示在文本文件中(如 emacs 中 org 模式的功能)而不是在某些输出 window 中(如 HTML/Latex/MD 文档的呈现)。

Visual Studio 代码中的任何专家知道这是否可以完成以及如何完成?

TODO Highlight 扩展的帮助下,您可以在 vscode 中添加 删除线

"todohighlight.keywordsPattern": "(~~.+?~~)|(✔.+?\n)|(\[x\].+\n)",
"todohighlight.defaultStyle": {
    "color": "none",
    "backgroundColor": "none",
    "textDecoration": "line-through"
},

使用您通常用于 完成 待办事项的模式。以上适用于:

[x] done
✔ done
~~done~~

之后你可以使用简单的打字或者找一些切换扩展或者自己写一个。

尝试扩展 "Strike for VSCode",看起来非常轻量级的扩展。

突出显示要添加删除线的文本,然后按 CTRL K + 退格键。 CTRL K + backspace 再次切换。