fix indent with vim on termux

web interface would have worked, if I had deleted the tabs, first
This vim is adding tabs instead of matching the previous line's
indentation. Looking into fixing that now...
This commit is contained in:
Quasic 2018-06-16 15:44:30 -04:00 committed by Fredrik Fornwall
parent bafd21bb39
commit c5923201a4
1 changed files with 6 additions and 6 deletions

View File

@ -229,12 +229,12 @@ final class TermuxInstaller {
File storageDir = new File(TermuxService.HOME_PATH, "storage");
if (storageDir.exists()) {
try {
deleteFolder(storageDir);
} catch (Exception e) {
Log.e(LOG_TAG, "Could not delete old $HOME/storage, " + e.getMessage());
return;
}
try {
deleteFolder(storageDir);
} catch (Exception e) {
Log.e(LOG_TAG, "Could not delete old $HOME/storage, " + e.getMessage());
return;
}
}
if (!storageDir.mkdirs()) {