由于我不得不使用新的编码风格,我需要在行的开头使用制表符,但在其他地方使用空格来对齐。
有没有办法自定义notepad ++只能用空格替换标签,如果它不在新行的开头?
正如我所说的那样,我将使用这段代码':
function someFunction():
while(true):
veryLongCodeStuff() // Some comment
shortCode() // Aligned comment
我必须这样写(其中\ t = tab和"。"代表空格):
function someFunction():
\twhile(true):
\t\tveryLongCodeStuff()..// Some comment
\t\tshortCode()..........// Aligned comment