I don't believe anything has changed in this respect between 2.2.0-3 and 
2.3.0+dfsg-2.
The code for the latter version looks like this:

  // Determine correct editor: .taskrc:editor > $VISUAL > $EDITOR > vi
  std::string editor = context.config.get ("editor");
  char* peditor = getenv ("VISUAL");
  if (editor == "" && peditor) editor = std::string (peditor);
  peditor = getenv ("EDITOR");
  if (editor == "" && peditor) editor = std::string (peditor);
  if (editor == "") editor = "vi";

Perhaps you have editor configured in your taskrc? Or have VISUAL set in
your environment?

(In 2.3.0+dfsg-3, the fallback editor was changed from "vi" to
"editor".)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1348899

Title:
  taskwarrior does not respect EDITOR when using task edit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/task/+bug/1348899/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to