textmate 突然在代码文件中显示 <CR> 标签

ope*_*per 5 textmate textmate2

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

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

dav*_*rey 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
Run Code Online (Sandbox Code Playgroud)
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.
Run Code Online (Sandbox Code Playgroud)