ソースを参照

Fix #147: arg should be at the end as it can be NULL

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

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

@@ -2641,7 +2641,7 @@ nochange:
/* If NNN_USE_EDITOR is set, open text in EDITOR */
if (editor) {
if (getmime(dents[cur].name)) {
spawn(editor, editor_arg, newpath, path, F_NORMAL);
spawn(editor, newpath, editor_arg, path, F_NORMAL);
continue;
}

@@ -2652,7 +2652,7 @@ nochange:
continue;

if (strstr(g_buf, "text/") == g_buf) {
spawn(editor, editor_arg, newpath, path, F_NORMAL);
spawn(editor, newpath, editor_arg, path, F_NORMAL);
continue;
}
}


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