doc: ctlseq: add missing ‘[‘ to a couple of CSI sequences

This commit is contained in:
Daniel Eklöf 2022-01-01 14:22:48 +01:00
parent 8ffcd425e7
commit b83daaac46
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -552,24 +552,24 @@ manipulation sequences. The generic format is:
: XTSMGRAPHICS : XTSMGRAPHICS
: xterm : xterm
: Set or request sixel attributes. : Set or request sixel attributes.
| \\E > _Ps_ q | \\E[ > _Ps_ q
: XTVERSION : XTVERSION
: xterm : xterm
: _Ps_=0 -> report terminal name and version, in the form : _Ps_=0 -> report terminal name and version, in the form
*\\EP>|foot(version)\\E\\*. *\\EP>|foot(version)\\E\\*.
| \\E ? u | \\E[ ? u
: <unnamed> : <unnamed>
: kitty : kitty
: Query current values of the Kitty keyboard flags. : Query current values of the Kitty keyboard flags.
| \\E > _flags_ u | \\E[ > _flags_ u
: <unnamed> : <unnamed>
: kitty : kitty
: Push a new entry, _flags_, to the Kitty keyboard stack. : Push a new entry, _flags_, to the Kitty keyboard stack.
| \\E < _number_ u | \\E[ < _number_ u
: <unnamed> : <unnamed>
: kitty : kitty
: Pop _number_ of entries from the Kitty keyboard stack. : Pop _number_ of entries from the Kitty keyboard stack.
| \\E = _flags_ ; _mode_ u | \\E[ = _flags_ ; _mode_ u
: <unnamed> : <unnamed>
: kitty : kitty
: Update current Kitty keyboard flags, according to _mode_. : Update current Kitty keyboard flags, according to _mode_.