English 中文(简体)
在Windows的Python控制台中,如何让Tab键等同于四个空格?
原标题:
  • 时间:2009-02-14 16:38:44
  •  标签:

Hello I would like that when I am in the python console tabbing will give me four spaces. Any ideas?

最佳回答
  1. Download and install AutoHotkey
  2. 请写这个剧本:

    SetTitleMatchMode 2
    #IfWinActive python
    tab::
    Send, {SPACE}
    Send, {SPACE}
    Send, {SPACE}
    Send, {SPACE}
    

将它保存为tab-to-space.ahk,并双击该文件。

注意:你可能需要大写“Python”来符合你窗口的标题。或者你可以使用“yhton”,它也将匹配Jython。

问题回答

暂无回答




相关问题
热门标签