Reputation: 27974
JetBrains' doc claims that
Strikethrough | ~~Never mind~~ |
Never mind
is supported.
However, it doesn't work.
What am I missing?
EDIT:
It appears I read the wrong docs, for markdown files.
I am still looking for strikethrough in comments.
Upvotes: 2
Views: 1712
Reputation: 45760
You can kind-of achieve what you want. Go into the settings and search for TODO
. You'll find a "TODO" menu. You can click the +
to add another pattern rule:
Now, any line that begins with strike
will be stricken-out in red:
I believe this is as good as you'll be able to get.
Notes:
\b
and .*
are for. Skip whitespace when pattern matching? That may be regex, and I'm awful with regex.Upvotes: 3