Creating a ctrl+tab keybinding in PuTTY

本秂侑毒 提交于 2019-12-02 22:39:48

PuTTY doesn't send anything when you press Ctrl+Tab.

You can patch PuTTY as it is described here: Using Ctrl+Tab in GNU Screen over PuTTY

Elliot Nelson

I believe that at this time, using Ctrl+Tab is not possible with PuTTY, because PuTTY does not allow you to configure specific translations for keys. Here is a decent article that shows how you would set this up if PuTTY did support this feature:

http://www.staldal.nu/tech/2009/01/10/how-to-use-ctrl-tab-in-gnu-screen/

If you use (or would consider using) a hotkey/macro program like Autohotkey, you could emulate this behavior yourself. For example, this Autohotkey config script would do exactly what you want:

#IfWinActive PuTTY
^Tab::Send :tabnext
^+Tab::Send :tabprev
#IfWinActive

(Note that this example is just looking for any window title starting with PuTTY, so you'd have to adjust based on your title configuration.)

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!