Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用electron-vue自动重新加载页面,每次关闭文件,textmate都会自动更新文件的mtime。以前不是这种情况,我不知道为什么。
通过邮件列表;
原因是 TextMate 使用扩展属性来存储诸如插入点位置、选择等内容。 您可以通过禁用此功能.tm_properties。在项目的根目录中创建一个.tm_properties文件,并让它包含这一行: disableExtendedAttributes = true您还可以在其中创建文件~以全局禁用该行为,或者您可以将其限制为某些文件类型,例如通过使用: [ *.vue ] disableExtendedAttributes = true
原因是 TextMate 使用扩展属性来存储诸如插入点位置、选择等内容。
您可以通过禁用此功能.tm_properties。在项目的根目录中创建一个.tm_properties文件,并让它包含这一行:
.tm_properties
disableExtendedAttributes = true您还可以在其中创建文件~以全局禁用该行为,或者您可以将其限制为某些文件类型,例如通过使用:
disableExtendedAttributes = true
~
[ *.vue ] disableExtendedAttributes = true
——艾伦·奥德加德