Skip to content

Commit 590a827

Browse files
authored
Add ANSI codes to turn off conceal and crossed_out (#14545)
1 parent 13f0eef commit 590a827

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/elixir/lib/io/ansi.ex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,12 @@ defmodule IO.ANSI do
180180
@doc "Image: positive. Normal foreground and background."
181181
defsequence.(:reverse_off, 27, "m")
182182

183+
@doc "Reveal: Not concealed."
184+
defsequence.(:reveal, 28, "m")
185+
186+
@doc "Not crossed-out."
187+
defsequence.(:not_crossed_out, 29, "m")
188+
183189
colors = [:black, :red, :green, :yellow, :blue, :magenta, :cyan, :white]
184190

185191
for {color, code} <- Enum.with_index(colors) do

0 commit comments

Comments
 (0)