瀏覽代碼

vim plugin: Enter clears selection and picks cuntry

master
Arun Prakash Jana 5 年之前
父節點
當前提交
04b0a38f68
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: A75979F35C080412
共有 1 個檔案被更改,包括 12 行新增6 行删除
  1. +12
    -6
      src/nnn.c

+ 12
- 6
src/nnn.c 查看文件

@@ -2650,6 +2650,18 @@ nochange:
goto begin;
case S_IFREG:
{
/* If opened as vim plugin and Enter/^M pressed, pick */
if (cfg.picker && sel == SEL_GOIN) {
r = mkpath(path, dents[cur].name, newpath, PATH_MAX);
/* NOTE: This overrides any previous selection */
copybufpos = 0;
appendfpath(newpath, r);
writecp(newpath, r - 1);

dentfree(dents);
return;
}

/* If open file is disabled on right arrow or `l`, return */
if (cfg.nonavopen && sel == SEL_NAV_IN)
continue;
@@ -3426,12 +3438,6 @@ nochange:
}
}

if (cfg.picker && copybufpos == 0 && ndents) {
r = mkpath(path, dents[cur].name, newpath, PATH_MAX);
appendfpath(newpath, r);
writecp(newpath, r - 1);
}

dentfree(dents);
return;
} /* switch (sel) */


Loading…
取消
儲存