From e8da71498da04780729505846d39ba2389925988 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 11 May 2009 21:22:06 -0400 Subject: [PATCH] Documentation Update - Corrected precedence list on editors. --- src/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.cpp b/src/command.cpp index cd4fa07ae..acec89a08 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -910,7 +910,7 @@ std::string handleEdit (TDB& tdb, T& task, Config& conf) // Write to file. spit (file, before.str ()); - // Determine correct editor: $TASK_EDITOR > $VISUAL > $EDITOR > vi + // Determine correct editor: .taskrc:editor > $VISUAL > $EDITOR > vi const char* editor = getenv ("TASK_EDITOR"); if (!editor) editor = getenv ("VISUAL"); if (!editor) editor = getenv ("EDITOR");