1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

TeratermでAIXのsmitを便利に使う+おまけ

Posted at

smitでESC+XXって面倒だよね?

ファンクションキーの代わりにShift+数字を押せばいいんですが、teratermのKEYBOARD.CNFを書き換えて便利に使おう。

KEYBOARD.CNF をコメントにするところ抜粋
[VT editor keypad]
;PageUp key
;Prev=329
;PageDown key
;Next=337

[VT numeric keypad]
; F3 key
;PF3=61
; F4 key
;PF4=62

[VT function keys]
;F6 key
;F6=64
;F8 key
;F8=66
;F10 key
;F10=68
KEYBOARD.CNF の最後尾に追加するところ
[User keys]
;PgUp for smit
User1=329,0,$1b$76
;PgDn for smit
User2=337,0,$16
;F3 for smit
User3=61,0,$1b$33
;F4 for smit
User4=62,0,$1b$34
;F6 for smit
User5=64,0,$1b$36
;F8 for smit
User6=66,0,$1b$38
;F10 for smit
User7=68,0,$1b$30
;Send Esc+\
User8=XXX,0,$1b$5c

これで上下スクロールと頻出ファンクションキーが使えるようになります。

おまけで書いた最下段のUser8はXXXに好みのキーの組み合わせをkeycord.exeから拾ってやると、viモードでの補完機能がショートカットで使えるようになります。
このXXXもファイルの何処かにあったらコメントにしてください。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?