I am writing to Rust in Sublime Text 3.
Question: how to remove these temporary files that litter the hierarchy? 
Each time they are more and more. I am new to ST3 and I like this editor, but I don’t like these temporary files.
Open Settings: Preferences → Settings → User
Add a line with the file filter:
"file_exclude_patterns": ["tmp*"] Or, for the src directory:
"file_exclude_patterns": ["src/tmp*"] Source: https://ru.stackoverflow.com/questions/478230/
All Articles