I use electron-vue to automatically reload the page, and every time I close the file, textmate automatically update mtime of the file. This was not the case before, and I don't know why.
Asked
Active
Viewed 52 times
0
-
Have you tried older versions of TextMate? If you could narrow it down to a release, it could probably get fixed. If I were you, I'd ask this question again on the mailing list https://lists.macromates.com/listinfo/textmate – Graham P Heath Mar 25 '20 at 15:24
-
@Graham P Heath Thank you! – plusor Mar 26 '20 at 00:35
1 Answers
0
Via the mailing list;
The reason is that TextMate uses extended attributes to store things such as position of insertion point, selection etc.
You can disable this via
.tm_properties
. Create a.tm_properties
file in the root of your project and let it contain this line:
disableExtendedAttributes = true
You can also create the file in~
to disable the behavior globally, or you can limit it to certain file types, e.g. by using:
[ *.vue ] disableExtendedAttributes = true
-- Allan Odgaard

Graham P Heath
- 7,009
- 3
- 31
- 45