Scroll to navigation

SETMETAMODE(1) Linux 用户手册 SETMETAMODE(1)

NAME

setmetamode - define the keyboard meta key handling

总览

setmetamode [ meta|bit|metabit | esc|prefix|escprefix ]

描述

没有参数时, setmetamode 将打印当前 Meta 键模式; 有参数时, 设置所指出的 Meta 键模式.

The Meta key mode is specific for each VT (and the VT corresponding to stdin is used).

选项

The Meta key sends an Escape prefix.
The Meta key sets the high order bit of the character.

范例

可以用 setmetamode/etc/rc 脚本中定义 Meta 键模式的初始状态. 例如, 可以如下设置:

INITTY=/dev/tty[1-8]
for tty in $INITTY; do
setmetamode escprefix < $tty
done

另见

loadkeys(1).

本页面中文版由中文 man 手册页计划提供。
中文 man 手册页计划:https://github.com/man-pages-zh/manpages-zh

09 Oct 1997 控制台工具