如果我点击这样一行用制表符缩进的行
ꕯlet name; //Indented with three tabs.
let name2; //Indented with four tabs.
Notepad++(v8.7.7 和 v8.7.8)在窗口右下角显示类似这样的内容。
Ln: 155 Col: 13 Pos: 5,772
它将每个制表符视为 4 个字符。
但是,如果我将首选项中的缩进大小从 4 改为 1,制表符就会缩小到与空格相同的大小,这会使代码变得不可读。
ꕯlet name; //Indented with three tabs.
let name2; //Indented with four tabs.
Ln: 155 Col: 4 Pos: 5,772
如何让 Notepad++ 正确执行此操作(任何代码编辑器的极其基本的功能)?