Skip to content

Commit

Permalink
Fix keybind with +[cmd] not triggering view refreshing
Browse files Browse the repository at this point in the history
Fixes #1323
  • Loading branch information
koutcher committed Apr 2, 2024
1 parent d4a13ff commit 44aa8fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
11 changes: 4 additions & 7 deletions src/display.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,13 @@ open_external_viewer(const char *argv[], const char *dir, bool silent, bool conf
bool ok;

if (echo) {
struct io io;
char buf[SIZEOF_STR] = "";

io_run_buf(argv, buf, sizeof(buf), dir, false);
if (*buf) {
ok = io_exec(&io, IO_RD, dir, NULL, argv, IO_RD_WITH_STDERR) && io_read_buf(&io, buf, sizeof(buf), true);
if (*buf)
report("%s", buf);
return true;
} else {
report("No output");
return false;
}

} else if (silent || is_script_executing()) {
ok = io_run_bg(argv, dir);

Expand Down
1 change: 0 additions & 1 deletion src/view.c
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,6 @@ load_view(struct view *view, struct view *prev, enum open_flags flags)
/* Do not clear the position if it is the first view. */
if (view->prev && !(flags & (OPEN_RELOAD | OPEN_REFRESH)))
clear_position(&view->prev_pos);
report_clear();
} else if (view_is_displayed(view)) {
redraw_view(view);
report_clear();
Expand Down

0 comments on commit 44aa8fe

Please sign in to comment.