mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-28 03:01:57 +02:00
terminfo: Fix "cnorm" the property for setting the cursor to normal using a solid block rather than a blinking block cursor
cnorm should match the default cursor in kitty, which is a blinking block. Fixes #3906
This commit is contained in:
@@ -113,7 +113,7 @@ string_capabilities = {
|
||||
# Clear screen
|
||||
'clear': r'\E[H\E[2J',
|
||||
# Make cursor appear normal
|
||||
'cnorm': r'\E[?12l\E[?25h',
|
||||
'cnorm': r'\E[1 q\E[?25h',
|
||||
# Carriage return
|
||||
'cr': r'^M', # CR (carriage return \r)
|
||||
# Change scroll region
|
||||
|
||||
Reference in New Issue
Block a user