Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
aeeb6ccf
Commit
aeeb6ccf
authored
Feb 25, 2022
by
Matan Ziv-Av
Committed by
Tomaz Canabrava
Mar 03, 2022
Browse files
Exchange meaning of `CSI?80h` and `CSI?80l`
`h` disables sixel scrolling and `l` enables it.
parent
346e50ca
Pipeline
#144395
passed with stage
in 3 minutes and 21 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
src/Vt102Emulation.cpp
View file @
aeeb6ccf
...
...
@@ -1165,8 +1165,8 @@ void Vt102Emulation::processToken(int token, int p, int q)
case
token_csi_pr
(
's'
,
67
)
:
/* IGNORED: DECBKM */
break
;
//XTERM
case
token_csi_pr
(
'r'
,
67
)
:
/* IGNORED: DECBKM */
break
;
//XTERM
case
token_csi_pr
(
'h'
,
80
)
:
m_SixelScrolling
=
tru
e
;
break
;
//XTERM
case
token_csi_pr
(
'l'
,
80
)
:
m_SixelScrolling
=
fals
e
;
break
;
//XTERM
case
token_csi_pr
(
'h'
,
80
)
:
m_SixelScrolling
=
fals
e
;
break
;
case
token_csi_pr
(
'l'
,
80
)
:
m_SixelScrolling
=
tru
e
;
break
;
// XTerm defines the following modes:
// SET_VT200_MOUSE 1000
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment