Added FileSystem::fileHide in order to hide files in OSes that do not support files starting with "." as hidden indicator.

Minor fix in premake files.
This commit is contained in:
Martín Lucas Golini
2023-10-29 21:29:57 -03:00
parent 620c3ba98c
commit f23f56a6c7
7 changed files with 19 additions and 2 deletions

View File

@@ -372,6 +372,7 @@ void FormatterPlugin::formatDoc( UICodeEditor* editor ) {
doc->save( fileString, true );
FileSystem::fileWrite( tmpPath, (Uint8*)fileString.getStreamPointer(),
fileString.getSize() );
FileSystem::fileHide( tmpPath );
runFormatter( editor, formatter, tmpPath );
if ( formatter.type == FormatterType::Inplace ) {