タブ切り替え用の^PgUp/^PGDownが機能しない

タブ切り替え用の^PgUp/^PGDownが機能しない

Vim にはタブナビゲーション用のデフォルトのキーバインディングがあります -- Ctrl+ PgUp/ Ctrl+PgDown

しかし、stそれらが機能しない場合は、原因はにあると思います~/.inputrcが、編集方法がわかりません。

現在の入力rc:

"\e[1;5C": forward-word
"\e[1;5D": backward-word


"\e[1~": beginning-of-line
"\e[4~": end-of-line
"\e[7~": beginning-of-line
"\e[8~": end-of-line
"\eOH": beginning-of-line
"\eOF": end-of-line
"\e[H": beginning-of-line
"\e[F": end-of-line
"\e[5~": beginning-of-history  # PageUp key
"\e[6~": end-of-history        # PageDown key
user$ echo $TERM
screen-256color

vimの場合:

:set term
# output
term=screen-256color

st の config.h を変更していませんでした:

# will produce nothing
diff ./my_st-0.8.2/config.def.h ./original_st-0.8.2/config.def.h

関連情報