你知道当你标记了一堆文字并按TAB时,文字向右移动(我不记得这是什么叫......)。如何让文本反其道而行?
答案 0 :(得分:26)
这和其他编辑一样。只需尝试 Shift + TAB 。 ;)
答案 1 :(得分:20)
您所谈论的命令称为“缩进”和“取消”。
缩进: cmd + ]
Unindent: cmd + [
缩进: ctrl + ]
Unindent: ctrl + [
答案 2 :(得分:1)
您可以尝试 Shift + TAB 来取消缩进多个选定的行。如果要取消缩进光标所在的单行,则需要设置
"shift_tab_unindent": true,
在您的用户设置中。
答案 3 :(得分:0)
Shift + 标签对于我来说不适用于Sublime Text 3中的Makefile。所以我添加了这个键绑定:
[
{ "keys": ["shift+tab"], "command": "unindent", "args": {"single_line":true} }
]