在set string1 [regsub -all {\W} $string {\\&}]
库中, Tab 在tkinter
小部件中添加了8个空格。
如何更改空格数?
我的Text()
代码:
tkinter
。
答案 0 :(得分:1)
我从更改了您的代码 Python/Tkinter: How to set text widget contents to the value of a variable?
from tkinter import *
win = Tk()
txt = Text()
txt.pack()
def tab(arg):
print("tab pressed")
txt.insert(INSERT, " " * 4) #this number is where you set the amount of spaces to add per tab
return 'break'
txt.bind("<Tab>", tab)
win.mainloop()