Revision tags: release/14.0.0 |
|
#
031beb4e |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
sys: Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0 |
|
#
c6879c6c |
| 23-Oct-2018 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r339015 through r339669.
|
#
3eb27bf0 |
| 21-Oct-2018 |
Poul-Henning Kamp <phk@FreeBSD.org> |
Implement ECMA-48 "REP", some Linuxen have started emitting them recently.
Approved by: ed
|
Revision tags: release/11.2.0 |
|
#
01e6e6c0 |
| 29-May-2018 |
Jean-Sébastien Pédron <dumbbell@FreeBSD.org> |
teken: Fix `sequences` header which was crossing the 80-col boundary
Also, the commented line's columns for `DECID` were not re-aligned in r334302.
Reported by: bde
|
#
7b0a9efa |
| 29-May-2018 |
Jean-Sébastien Pédron <dumbbell@FreeBSD.org> |
teken: Sort DECSCUSR alphabetically
While here, align columns again.
Reported by: bde
|
#
b554075d |
| 21-May-2018 |
Jean-Sébastien Pédron <dumbbell@FreeBSD.org> |
teken: Rename the "Set Cursor Style" sequence to match vt100.net docs
This fixes inconsistencies with the rest of the `sequences` file.
No functional changes.
Requested by: ed
|
#
8dcd2ed3 |
| 20-May-2018 |
Jean-Sébastien Pédron <dumbbell@FreeBSD.org> |
teken, vt(4): Parse the "Cursor style" escape sequence
The escape sequence (e.g. `^[[2 q`) was unsupported before and the letter `q` was displayed as a typed character. The sequence is used by Neovi
teken, vt(4): Parse the "Cursor style" escape sequence
The escape sequence (e.g. `^[[2 q`) was unsupported before and the letter `q` was displayed as a typed character. The sequence is used by Neovim for instance.
Now, it is properly parsed. However, it is ignored, so it won't change the cursor style.
Because the escape sequence contains a space character, the `gensequences` script had to be modified to support that. In the `sequences` file, a space is represented as the string `SP`.
show more ...
|
Revision tags: release/10.4.0 |
|
#
1409e715 |
| 21-Aug-2017 |
Hans Petter Selasky <hselasky@FreeBSD.org> |
Merge ^/head r322398 through r322746.
|
#
a451e711 |
| 18-Aug-2017 |
Enji Cooper <ngie@FreeBSD.org> |
MFhead@r322675
|
#
15e0c651 |
| 18-Aug-2017 |
Bruce Evans <bde@FreeBSD.org> |
Fix syscons escape sequence for setting the local cursor type. This sequence was aliased to a vt sequence, causing and fixing various bugs.
For syscons, this restores support for arg 2 which sets b
Fix syscons escape sequence for setting the local cursor type. This sequence was aliased to a vt sequence, causing and fixing various bugs.
For syscons, this restores support for arg 2 which sets blinking block too forcefully, and restores bugs for arg 0 and 1. Arg 2 is used for vs in the cons25 entry in termcap, but I've never noticed an application that uses this. The bugs involve replacing local settings by global ones and need better handling of defaults to fix.
For vt, this requires moving the aliasing code from teken to vt where it belongs. This sequences is very important for cons25 compatibility in vt since it is used by the cons25 termcap entries for ve, vi and vs. vt can't properly support vs for either cons25 or xterm since it doesn't support blinking. For xterm, the termcap entry for vs asks for something different using 12;25h instead of 25h.
Rename C25CURS for this to C25LCT and change its description to be closer to echoing the old comment about it. CURS is too generic.
Fix missing syscons escape sequence for setting the global cursor shape (and type). Only support this in syscons since vt can't emulate anything in it.
show more ...
|
#
97933a41 |
| 18-Aug-2017 |
Bruce Evans <bde@FreeBSD.org> |
Improve names for cons25 sequences.
In a recent commit, I forgot to expand an X to an abbreviation of "BORDER". Fix this and some nearby bad names.
The descriptions were copied from comments in sct
Improve names for cons25 sequences.
In a recent commit, I forgot to expand an X to an abbreviation of "BORDER". Fix this and some nearby bad names.
The descriptions were copied from comments in scterm-sc.c, but some of these are bad. The border [color] was inconsistently described as a property of the "display", but I had changed this to "adapter" to match the descriptions for other color settings. All colors supported by the cons25 sequences are actually properties of the current vty and that should not be described. But the other colors are defaults. Change "adapter" to "default" for them and remove "adapter" for the border. Reduce the verbosity of the abbreviation from AD to D.
show more ...
|
#
dd833891 |
| 18-Aug-2017 |
Bruce Evans <bde@FreeBSD.org> |
Fix missing syscons escape sequence for setting the border color.
|
Revision tags: release/11.1.0, release/11.0.1, release/11.0.0, release/10.3.0, release/10.2.0, release/10.1.0, release/9.3.0, release/10.0.0, release/9.2.0, release/8.4.0, release/9.1.0, release/8.3.0_cvs, release/8.3.0, release/9.0.0, release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0 |
|
#
0c21a60c |
| 05-Dec-2010 |
Marcel Moolenaar <marcel@FreeBSD.org> |
svn+ssh://svn.freebsd.org/base/head@216199
|
#
eef8b03c |
| 06-Nov-2010 |
Dimitry Andric <dim@FreeBSD.org> |
Sync: merge r214649 through r214894 from ^/head.
|
#
68fdfe29 |
| 05-Nov-2010 |
Ed Schouten <ed@FreeBSD.org> |
Partially implement the mysterious cons25 \e[x escape sequence.
It seems the terminfo library on some systems (OS X, Linux) may emit the sequence \e[x to reset to default attributes. Apart from usin
Partially implement the mysterious cons25 \e[x escape sequence.
It seems the terminfo library on some systems (OS X, Linux) may emit the sequence \e[x to reset to default attributes. Apart from using the zero-command, this escape sequence allows many more operations, such as setting ANSI colors. I don't see this used anywhere, so this should be sufficient for now.
This deficiency was spotted by the Debian GNU/kFreeBSD. They have their own patch, which is slightly flawed in my opinion. I don't know why they never reported this issue to us.
MFC after: 1 week
show more ...
|
Revision tags: release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0 |
|
#
1a0fda2b |
| 04-Mar-2010 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
IFH@204581
|
Revision tags: release/8.0.0_cvs, release/8.0.0 |
|
#
874108ae |
| 12-Nov-2009 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
MFC @199204
|
#
4a11e7f1 |
| 08-Oct-2009 |
Ed Schouten <ed@FreeBSD.org> |
Discard Device Control Strings and Operating System Commands.
These strings often contain things like:
- Window titles. - Extended key map functionality. - Color palette switching.
We could look a
Discard Device Control Strings and Operating System Commands.
These strings often contain things like:
- Window titles. - Extended key map functionality. - Color palette switching.
We could look at these features in the future (if people consider them to be important enough), but we'd better discard them now. This fixes some artifacts people reported when using TERM=xterm.
Reported by: des@, Paul B. Mahol
show more ...
|
#
0fbc5fbe |
| 26-Sep-2009 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
Sync with head
|
#
2c549cc4 |
| 25-Sep-2009 |
Ed Schouten <ed@FreeBSD.org> |
Add a new escape sequence to switch between cons25 and xterm.
Just run this to switch to xterm:
printf '\e[=T'
If you get bored and want to switch back to cons25, run this:
printf '\e[=1T'
I c
Add a new escape sequence to switch between cons25 and xterm.
Just run this to switch to xterm:
printf '\e[=T'
If you get bored and want to switch back to cons25, run this:
printf '\e[=1T'
I can now send an email to the lists, asking whether people are interested in trying the xterm emulator.
show more ...
|
#
10b3b545 |
| 17-Sep-2009 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
Merge from head
|
#
cbd59a4f |
| 08-Sep-2009 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
- MFC from head@196987
|
#
9b934d09 |
| 03-Sep-2009 |
Ed Schouten <ed@FreeBSD.org> |
Move libteken out of the syscons directory.
I initially committed libteken to sys/dev/syscons/teken, but now that I'm working on a console driver myself, I noticed this was not a good decision. Move
Move libteken out of the syscons directory.
I initially committed libteken to sys/dev/syscons/teken, but now that I'm working on a console driver myself, I noticed this was not a good decision. Move it to sys/teken to make it easier for other drivers to use a terminal emulator.
Also list teken.c in sys/conf/files, instead of listing it in all the files.arch files separately.
show more ...
|
Revision tags: release/8.0.0_cvs, release/8.0.0 |
|
#
874108ae |
| 12-Nov-2009 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
MFC @199204
|
#
4a11e7f1 |
| 08-Oct-2009 |
Ed Schouten <ed@FreeBSD.org> |
Discard Device Control Strings and Operating System Commands.
These strings often contain things like:
- Window titles. - Extended key map functionality. - Color palette switching.
We could look a
Discard Device Control Strings and Operating System Commands.
These strings often contain things like:
- Window titles. - Extended key map functionality. - Color palette switching.
We could look at these features in the future (if people consider them to be important enough), but we'd better discard them now. This fixes some artifacts people reported when using TERM=xterm.
Reported by: des@, Paul B. Mahol
show more ...
|