如何在Xcode 10中区分不同的空白字符?

时间:2018-11-16 05:01:41

标签: xcode whitespace

我可以在Xcode 10中显示空格(“不可见”),并且某些占位符字形很容易弄清楚,但我无法弄清楚所有的占位符。

例如,这应该代表哪一行结尾:¤

是否有所有这些字符的列表,或者是否有约定用我错过的其他字形来表示空白字符?

1 个答案:

答案 0 :(得分:2)

¤字符代表CR(回车)行的结尾。 Windows文件通常使用CRLF(回车和换行)行尾,用¤┐表示。旧版本的macOS仅将CR用作行结尾。

完整列表:

╔════════╦══════════════════════════════════════════════════╗
║ Symbol ║                     Meaning                      ║
╠════════╬══════════════════════════════════════════════════╣
║ ·      ║ space                                            ║
║ ···•   ║ tabulator (when Indent Using is set to "Spaces") ║
║ »      ║ tabulator (when Indent Using is set to "Tabs")   ║
║ ¤      ║ CR line ending                                   ║
║ ┐      ║ LF line ending                                   ║
║ ¤┐     ║ CRLF line ending                                 ║
╚════════╩══════════════════════════════════════════════════╝