Skip to content
Snippets Groups Projects
Commit 6cb4e3fb authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Merge branch 'cursor-style' into 'master'

feature: changing cursor style

See merge request !164
parents 24e51d01 cb164643
No related branches found
No related tags found
1 merge request!164feature: changing cursor style
Pipeline #6865 passed
...@@ -14,6 +14,13 @@ derive_csi_sequence!("Show the cursor.", Show, "?25h"); ...@@ -14,6 +14,13 @@ derive_csi_sequence!("Show the cursor.", Show, "?25h");
derive_csi_sequence!("Restore the cursor.", Restore, "u"); derive_csi_sequence!("Restore the cursor.", Restore, "u");
derive_csi_sequence!("Save the cursor.", Save, "s"); derive_csi_sequence!("Save the cursor.", Save, "s");
derive_csi_sequence!("Change the cursor style to blinking block", BlinkingBlock, "\x31 q");
derive_csi_sequence!("Change the cursor style to steady block", SteadyBlock, "\x32 q");
derive_csi_sequence!("Change the cursor style to blinking underline", BlinkingUnderline, "\x33 q");
derive_csi_sequence!("Change the cursor style to steady underline", SteadyUnderline, "\x34 q");
derive_csi_sequence!("Change the cursor style to blinking bar", BlinkingBar, "\x35 q");
derive_csi_sequence!("Change the cursor style to steady bar", SteadyBar, "\x36 q");
/// Goto some position ((1,1)-based). /// Goto some position ((1,1)-based).
/// ///
/// # Why one-based? /// # Why one-based?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment