Fix home/end

This commit is contained in:
Jeremy Soller 2024-02-08 16:15:14 -07:00
parent e321f16c70
commit 4d16f1ded4
No known key found for this signature in database
GPG key ID: D02FD439211AF56F

View file

@ -618,16 +618,16 @@ where
}
Named::End => {
if is_app_cursor {
ss3("H", mod_no)
ss3("F", mod_no)
} else {
csi("H", "", mod_no)
csi("F", "", mod_no)
}
}
Named::Home => {
if is_app_cursor {
ss3("F", mod_no)
ss3("H", mod_no)
} else {
csi("F", "", mod_no)
csi("H", "", mod_no)
}
}
Named::F1 => ss3("P", mod_no),