ソースを参照

Fix picker mode

master
Arun Prakash Jana 5年前
コミット
7d70a655e6
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: A75979F35C080412
1個のファイルの変更5行の追加3行の削除
  1. +5
    -3
      src/nnn.c

+ 5
- 3
src/nnn.c ファイルの表示

@@ -4705,7 +4705,7 @@ nochange:
} }


/* move cursor to the next entry if this is not the last entry */ /* move cursor to the next entry if this is not the last entry */
if (cur != ndents - 1)
if (!cfg.picker && cur != ndents - 1)
move_cursor((cur + 1) % ndents, 0); move_cursor((cur + 1) % ndents, 0);
break; break;
case SEL_SELMUL: case SEL_SELMUL:
@@ -5206,8 +5206,7 @@ nochange:
/* In vim picker mode, clear selection and exit */ /* In vim picker mode, clear selection and exit */
if (cfg.picker) { if (cfg.picker) {
/* Picker mode: reset buffer or clear file */ /* Picker mode: reset buffer or clear file */
if (selbufpos)
cfg.pickraw ? selbufpos = 0 : writesel(NULL, 0);
selbufpos = 0;
} else if (!write_lastdir(path)) { } else if (!write_lastdir(path)) {
presel = MSGWAIT; presel = MSGWAIT;
goto nochange; goto nochange;
@@ -5715,6 +5714,9 @@ int main(int argc, char *argv[])
if (opt != (int)(selbufpos)) if (opt != (int)(selbufpos))
xerror(); xerror();
} }
} else if (cfg.picker) {
if (selbufpos)
writesel(pselbuf, selbufpos - 1);
} else if (!cfg.picker && g_selpath) } else if (!cfg.picker && g_selpath)
unlink(g_selpath); unlink(g_selpath);




読み込み中…
キャンセル
保存