瀏覽代碼

Redraw in non-filter mode after hovered file deletion

master
Arun Prakash Jana 4 年之前
父節點
當前提交
37bf6b1010
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: A75979F35C080412
共有 2 個文件被更改,包括 2 次插入4 次删除
  1. +1
    -1
      README.md
  2. +1
    -3
      src/nnn.c

+ 1
- 1
README.md 查看文件

@@ -69,7 +69,7 @@ Add to that an awesome [Wiki](https://github.com/jarun/nnn/wiki)!

1. Install the [utilities you may need](https://github.com/jarun/nnn#utility-dependencies) based on your regular workflows.
2. Configure [cd on quit](https://github.com/jarun/nnn/wiki/Basic-use-cases#configure-cd-on-quit).
3. Optionally open all text files in `$EDITOR` (fallback vi): `export NNN_USE_EDITOR=1`
3. Optionally open all text files in `$EDITOR` (fallback vi): `export NNN_USE_EDITOR=1`.
4. For additional functionality [install plugins](https://github.com/jarun/nnn/tree/master/plugins#installing-plugins) and the GUI app launcher [`nlaunch`](https://github.com/jarun/nnn/tree/master/misc/nlaunch).

Notes:


+ 1
- 3
src/nnn.c 查看文件

@@ -4741,14 +4741,12 @@ nochange:
xrm(newpath);

/* Don't optimize cur if filtering is on */
if (!cfg.filtermode && cur && access(newpath, F_OK) == -1)
if (cur && access(newpath, F_OK) == -1)
move_cursor(cur - 1, 0);

/* We reduce cur only if it is > 0, so it's at least 0 */
copycurname();

if (cfg.filtermode)
presel = FILTER;
goto begin;
}
case SEL_ARCHIVE: // fallthrough


Loading…
取消
儲存