Skip to content

Commit

Permalink
Restrict opening 0B files.
Browse files Browse the repository at this point in the history
See #187. The behaviour has always remained so confusing. In my case a 0B file
opens in the GUI editor though I have NNN_USE_EDITOR set. We have a sensible
message in place to help users with what to do next.
  • Loading branch information
jarun committed Jun 4, 2019
1 parent aa60133 commit f269be5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,6 @@ The following indicators are used in the detail view:
| `NNN_USE_EDITOR=1` | open text files in `$EDITOR` (`$VISUAL`, if defined; fallback vi) |
| `NNN_NO_AUTOSELECT=1` | do not auto-select matching dir in _nav-as-you-type_ mode |
| `NNN_RESTRICT_NAV_OPEN=1` | open files on <kbd> ↵</kbd>, not <kbd>→</kbd> or <kbd>l</kbd> |
| `NNN_RESTRICT_0B=1` | disable 0-byte file open; see [#187](https://github.com/jarun/nnn/issues/187), use _edit_ or _open with_ |
| `NNN_TRASH=1` | trash files to the desktop Trash [default: delete] |
| `NNN_OPS_PROG=1` | show copy, move progress on Linux |

Expand Down
16 changes: 4 additions & 12 deletions src/nnn.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ typedef struct {
uint copymode : 1; /* Set when copying files */
uint showdetail : 1; /* Clear to show fewer file info */
uint ctxactive : 1; /* Context active or not */
uint reserved : 7;
uint reserved : 8;
/* The following settings are global */
uint curctx : 2; /* Current context number */
uint dircolor : 1; /* Current status of dir color */
Expand All @@ -224,7 +224,6 @@ typedef struct {
uint useeditor : 1; /* Use VISUAL to open text files */
uint runplugin : 1; /* Choose plugin mode */
uint runctx : 2; /* The context in which plugin is to be run */
uint restrict0b : 1; /* Restrict 0-byte file opening */
uint filter_re : 1; /* Use regex filters */
uint wild : 1; /* Do not sort entries on dir load */
uint trash : 1; /* Move removed files to trash */
Expand Down Expand Up @@ -264,7 +263,6 @@ static settings cfg = {
0, /* useeditor */
0, /* runplugin */
0, /* runctx */
0, /* restrict0b */
1, /* filter_re */
0, /* wild */
0, /* trash */
Expand Down Expand Up @@ -396,10 +394,9 @@ static const char * const messages[] = {
#define NNN_USE_EDITOR 8 /* flags begin here */
#define NNN_NO_AUTOSELECT 9
#define NNN_RESTRICT_NAV_OPEN 10
#define NNN_RESTRICT_0B 11
#define NNN_TRASH 12
#define NNN_TRASH 11
#ifdef __linux__
#define NNN_OPS_PROG 13
#define NNN_OPS_PROG 12
#endif

static const char * const env_cfg[] = {
Expand All @@ -414,7 +411,6 @@ static const char * const env_cfg[] = {
"NNN_USE_EDITOR",
"NNN_NO_AUTOSELECT",
"NNN_RESTRICT_NAV_OPEN",
"NNN_RESTRICT_0B",
"NNN_TRASH",
#ifdef __linux__
"NNN_OPS_PROG",
Expand Down Expand Up @@ -3356,7 +3352,7 @@ static void browse(char *ipath)
continue;
}

if (!sb.st_size && cfg.restrict0b) {
if (!sb.st_size) {
printwait("empty: use edit or open with", &presel);
goto nochange;
}
Expand Down Expand Up @@ -4594,10 +4590,6 @@ int main(int argc, char *argv[])
if (xgetenv_set(env_cfg[NNN_RESTRICT_NAV_OPEN]))
cfg.nonavopen = 1;

/* Restrict opening of 0-byte files */
if (xgetenv_set(env_cfg[NNN_RESTRICT_0B]))
cfg.restrict0b = 1;

#ifdef __linux__
if (!xgetenv_set(env_cfg[NNN_OPS_PROG])) {
cp[5] = cp[4];
Expand Down

0 comments on commit f269be5

Please sign in to comment.