diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2019-03-08 12:54:31 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2019-03-08 12:54:31 +0000 |
commit | 3d21f2e5266d6fa9480084cfc93c4a6f82ed1ae8 (patch) | |
tree | ce38cb07a6c2416b75a53dbc55b3e053fd851ac2 /app/xterm | |
parent | 02d346dbe6173831a2733249aa5d5a2fba31fa66 (diff) |
Update the OPENBSD SPECIFICS section to match reality:
* Add the missing locale, modifyFunctionKeys, precompose, and scrollBar.
* Move backarrowKeyIsErase to conform to alphabetical sorting.
* Add a missing full stop.
Diff found in my tree; i obviously forgot to commit it earlier.
Diffstat (limited to 'app/xterm')
-rw-r--r-- | app/xterm/xterm.man | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/app/xterm/xterm.man b/app/xterm/xterm.man index 0caa9269f..6b2eb17c5 100644 --- a/app/xterm/xterm.man +++ b/app/xterm/xterm.man @@ -8229,24 +8229,43 @@ resources have different default values: .B allowWindowOps: false Various, potentially dangerous, extended window control sequences are disabled. .TP 8 +.B backarrowKeyIsErase: true +The back arrow key is set to return the erase character defined in the +tty, generally \fB^?\fP. +.TP 8 .B cursorBlink: never Prevents cursor from blinking. .TP 8 .B deleteIsDEL: true The Delete key generates \fB^?\fP. .TP 8 +.B locale: UTF-8 +Always handle UTF-8 characters correctly, even when running with a +POSIX locale. This is safe on OpenBSD because no other multibyte locale +is supported, and because ASCII is a subset of UTF-8. It is not only +more convenient but also safer because +.B xterm +honours fewer terminal escape codes in UTF-8 mode. +.TP 8 +.B modifyFunctionKeys: 0 +Traditional function keys behaviour. +.TP 8 +.B precompose: false +Do not compose UTF-8 characters into Normalization Form C. +For example, this allows copy and paste to work even for filenames +containing combining accents. +.TP 8 .B ptyInitialErase: true The erase character for the tty is inherited from the parent process setting, generally \fB^?\fP. .TP 8 -.B backarrowKeyIsErase: true -The back arrow key is set to return the erase character defined in the -tty, generally \fB^?\fP. +.B scrollBar: true +Display the scrollbar by default. .PP Moreover, on OpenBSD the .IR termcap(5) entry for xterm defines the .I kb -capability as \fB^?\fP +capability as \fB^?\fP. .PP The u\*n and koi8r\*n shell scripts are not provided by OpenBSD. |