This commit is contained in:
Arun Prakash Jana 2017-05-13 10:27:49 +05:30
parent 549fa4ba05
commit cbbe03247e
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 2 deletions

4
nnn.c
View File

@ -1592,13 +1592,13 @@ nochange:
/* If nlay doesn't handle it, open plain text
files with vi, then try NNN_FALLBACK_OPENER */
strcpy(cmd, "file -b \"");
strcpy(cmd, "file -bi \"");
xstrlcpy(cmd + strlen(cmd), newpath, strlen(newpath) + 1);
strcat(cmd, "\"");
if (get_output(cmd, MAX_CMD_LEN) == NULL)
continue;
if (strstr(cmd, "ASCII text") != NULL) {
if (strstr(cmd, "text/") == cmd) {
exitcurses();
run = xgetenv("EDITOR", "vi");
spawn(run, newpath, NULL, 0);