5

我已经使用Textmate version 2 fro MAC了很长一段时间了,但是昨天突然在我的代码文件中看到了一个<CR> tag,不确定是什么问题,在进行了一些谷歌搜索之后,我发现它应该是一个不可见的字符,

但是现在我该如何删除它,任何人都可以提出任何想法,谢谢。

4

2 回答 2

3

使用三个选项之一设置 Textmate 文件。

  • CR(例如回车或\r)行尾。
  • LF(例如换行或\n
  • CRLF(例如回车换行或\r\n

如果文件的行尾不一致,Textmate 将\n作为行尾标记并显示<CR>为文本。


该问题是由损坏的启动服务数据库引起的,可以通过在终端中运行以下命令并重置 Finder 来修复。

sudo /System/Library/Frameworks/CoreServices.framework/Versions/Current/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user && killall Finder

lsregister: [OPTIONS] [-domain { system | local | user | network }]... [path]...
Search the paths for application bundles and add each found item to the Launch
Services database.  For domain specifications, ask CF for the list of application
locations in the given domain(s).

  -kill     Reset the global Launch Services database before doing anything else
  -lint     Print information about plist errors while registering bundles
  -convert  Register apps found in older LS database files
  -load     Load the LaunchServices service plugin if it's not already loaded.
  -lazy n   Sleep for n seconds before registering apps if the local cache
            is aleady populated.
  -r        Recursively register directory contents, do not recurse into
            packages or invisible directories.
  -R        Recursively register directory contents, including the contents
            of packages and invisible directories.
  -f        force-update registration info even if mod date is unchanged
  -v        Display progress information.
  -dump     Display full database contents after registration.
  -h        Display this help.
于 2014-09-12T07:46:07.170 回答
0

用textmate打开文件,选择一个,复制它。打开“查找”对话框并激活“正则表达式”选项。粘贴 , 并将它们全部替换为空字符串。

于 2018-05-16T22:13:17.697 回答