在Xcode 8中更改默认缩进宽度

时间:2016-11-24 10:29:04

标签: xcode xcode8

我知道如何在单个项目中更改代码缩进,并找到了在Xcode 4.5中更改默认缩进的解决方案。

但在Xcode 8中,“首选项”中没有“缩进宽度”这样的项目。

那么如何让我的Xcode创建所有新项目,并且缩进2个空格为4?

3 个答案:

答案 0 :(得分:4)

Xcode 菜单中,转到偏好设置(或命令⌘ + ),然后文字修改> 缩进

Text Editing Indentation

答案 1 :(得分:4)

要获得偏好,请按CMD +,

然后转到文本编辑器,然后缩进,选项就在那里。 enter image description here

答案 2 :(得分:1)

如果要从命令行更改。

defaults write com.apple.dt.Xcode DVTTextIndentWidth -int 3
defaults write com.apple.dt.Xcode DVTTextIndentTabWidth -int 3

注意:您可能需要重新打开项目。